@charset "UTF-8";
:root {
  --red: #C20936;
  --red-light: #DE323C;
  --ink: #1A1A1A;
  --paper: #F5F4F2;
  --card: #FFFFFF;
  --line: #E3E1DD;
  --gray: #6B6B6B;
  --orange: #FBAE40;
  --green: #2E7D32;
  --sidebar-w: 270px;
}

/* ---------- Europa ---------- */
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa/europa-light-webfont.woff2") format("woff2"), url("../fonts/europa/europa-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa/europa-regular-webfont.woff2") format("woff2"), url("../fonts/europa/europa-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa/europa-bold-webfont.woff2") format("woff2"), url("../fonts/europa/europa-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa/europa-lightitalic-webfont.woff2") format("woff2"), url("../fonts/europa/europa-lightitalic-webfont.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa/europa-regularitalic-webfont.woff2") format("woff2"), url("../fonts/europa/europa-regularitalic-webfont.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "Europa";
  src: url("../fonts/europa/europa-bolditalic-webfont.woff2") format("woff2"), url("../fonts/europa/europa-bolditalic-webfont.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: block;
}
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Europa", Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 14px;
  z-index: 50;
  font-size: 13px;
}
.topbar .title {
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  font-size: 21px;
  text-transform: uppercase;
}
.topbar .logo img {
  height: 30px;
  width: auto;
  display: block;
}
.topbar .who {
  color: rgba(255, 255, 255, 0.75);
}
.topbar .role-tag {
  background: var(--red-light);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.topbar .status-badge {
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.topbar .status-badge--live {
  background: var(--green);
}
.topbar .status-badge--unlisted {
  background: var(--orange);
}
.topbar .status-badge--draft {
  background: var(--gray);
}
.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar .lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
}
.topbar .lang-switch__item {
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.topbar .lang-switch__item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.topbar .lang-switch__item.active {
  background: var(--red);
  color: #fff;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 13px;
}

.btn-primary {
  background: var(--red);
}
.btn-primary:hover {
  background: var(--red-light);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.center {
  display: flex;
  min-height: calc(100vh - 48px);
}

.content {
  margin-left: var(--sidebar-w);
  margin-top: 70px;
  flex: 1;
  min-width: 0;
  padding: 32px 40px 80px 40px;
  width: 100%;
}

@media (max-width: 900px) {
  .content {
    margin-left: 0;
  }
}
.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: var(--ink);
  color: #fff;
  padding: 24px 0;
  position: fixed;
  top: 70px;
  left: 0;
  bottom: 0;
  overflow-y: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;
}
.brand .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-light);
}
.brand span {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 14px;
  text-transform: uppercase;
}

.nav-group {
  display: flex;
  flex-direction: column;
}

.nav-item {
  display: block;
  text-align: left;
  background: none;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 14px;
  padding: 9px 20px 9px 24px;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-left-color: var(--red-light);
  font-weight: bold;
}

@media (max-width: 900px) {
  .sidebar {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
  }
}
.application-header {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.015em;
  margin-bottom: 40px;
}

.publication-date {
  display: inline-block;
  margin-left: 12px;
  color: var(--gray);
  font-size: 13px;
  font-weight: normal;
  letter-spacing: normal;
  vertical-align: middle;
}

.lead {
  color: var(--gray);
  margin: -8px 0 22px 0;
  font-size: 14px;
}

.empty-note {
  color: var(--gray);
  font-style: italic;
}

.empty-note-small {
  color: #b7b5b0;
  font-size: 12px;
  margin: 0 0 10px 0;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.app-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.app-card:hover {
  border-color: var(--red-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.app-card h3 {
  margin: 0 0 6px 0;
  font-size: 15px;
}
.app-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--gray);
}

.section {
  position: relative;
  padding-left: 34px;
  margin-bottom: 20px;
}
.section::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  cursor: pointer;
  list-style: none;
}
.section-head::-webkit-details-marker {
  display: none;
}
.section-head .dot {
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
}
.section-head .title {
  font-size: 17px;
  font-weight: bold;
  color: var(--ink);
}
.section-head::after {
  content: "▾";
  margin-left: auto;
  font-size: 13px;
  color: var(--gray);
  transition: transform 0.2s ease;
}

.section:not([open]) .section-head::after {
  transform: rotate(-90deg);
}

.status-badge {
  font-size: 11px;
  font-weight: bold;
  color: var(--red);
  background: rgba(194, 9, 54, 0.08);
  border: 1px solid rgba(194, 9, 54, 0.25);
  border-radius: 10px;
  padding: 2px 10px;
}

.section-body {
  background: #EEEDEA;
  border-radius: 8px;
  padding: 20px 20px 8px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prio-col {
  min-width: 0;
}
.prio-col h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: bold;
  color: var(--ink);
}

@media (max-width: 900px) {
  .section-body {
    grid-template-columns: 1fr;
  }
}
.card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px 12px 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.card .program {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
}
.card .title-field {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.35;
}
.card--highlight {
  border-color: var(--orange);
  box-shadow: 0 1px 2px rgba(251, 174, 64, 0.35);
}
.card--linked {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card--linked:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.card-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-icon {
  font-size: 13px;
}
.card-icon--highlight {
  color: var(--orange);
}
.card-icon--jira {
  color: var(--gray);
}

.card--linked:hover .card-icon--jira {
  color: var(--red);
}

/*# sourceMappingURL=style.css.map */
