:root {
  --accent: #c8102e;
  --navy: #0f2747;
  --text: #1f2937;
  --muted: #6b7280;
  --border: #d1d5db;
  --sub-bg: #f9fafb;
  --gold: #fbbf24;
  --font-head: 'Google Sans', "Times New Roman", "Be Vietnam Pro", serif;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
}

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 60px 24px 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 60px,
    #fff 60px 61px
  );
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--gold);
  text-transform: uppercase;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.breadcrumb .current {
  color: #fff;
}

/* Layout */
.section {
  margin-bottom: 56px;
}
@media (min-width: 769px) {
  .section.boxed {
    background: var(--sub-bg);
    padding: 36px 32px 40px;
    border: 1px solid var(--border);
  }
}
@media (max-width: 768px) {
  .section.boxed {
    background: var(--sub-bg);
    padding: 24px;
    border: 1px solid var(--border);
    margin-left: -24px;
    margin-right: -24px;
  }
  .tab-bar {
    margin-left: -16px !important;
    margin-right: -16px !important;
  }
  .tab {
    padding: 8px !important;
  }
}

/* Section title */
.section-title {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.section-title h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-left: 5px solid var(--accent);
  padding-left: 12px;
}

/* Image placeholder */
.img-ph {
  width: 100%;
  background: #e5e7eb;
  background-image: repeating-linear-gradient(
    45deg,
    transparent 0 10px,
    #d1d5db 10px 11px
  );
  display: flex;
  align-items: stretch;
  justify-content: center;
  color: #6b7280;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.img-ph span {
  padding: 4px 8px;
}

/* Avatar */
.avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 16px;
}
.avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.avatar span {
  position: relative;
  z-index: 1;
  padding: 4px;
}
.ring-accent {
  box-shadow: 0 0 0 3px var(--accent);
}
.ring-border {
  box-shadow: 0 0 0 3px var(--border);
}

/* News grid (1 big left + 4 list right) */
.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.news-main {
  cursor: pointer;
}
.news-main .cat {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  margin-top: 16px;
  text-transform: uppercase;
}
.news-main h3 {
  margin: 12px 0 10px;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}
.news-main .excerpt {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.news-main .date {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.news-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding-bottom: 14px;
  cursor: pointer;
}
.news-item.has-border {
  border-bottom: 1px solid var(--border);
}
.news-item .cat-text {
  font-size: 10px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.news-item h4 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}
.news-item .date {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

/* Members */
.leader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.leader .role {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.leader .name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
}
.leader .sub {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.members-grid-2 {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 768px) {
  .members-grid-2 {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}
.member.col-start-3 {
  grid-column-start: 3;
}
.member.col-start-2 {
  grid-column-start: 2;
}
.member .role {
  margin-top: 12px;
  font-size: 9px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.member .name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .member .name {
    font-size: 14px;
  }
}

.member .sub {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
  margin-top: 3px;
  line-height: 1.3;
}
.member.see-more .plus {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 28px;
  font-weight: 300;
}
.member.see-more {
  transition: opacity 0.15s;
}
.member.see-more:hover {
  opacity: 0.7;
}

/* 4 blocks 2x2 */
.blocks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.blocks-row:last-child {
  margin-bottom: 0;
}
.block-title-bar {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.block-title-bar h2 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  border-left: 4px solid var(--accent);
  padding-left: 10px;
  letter-spacing: 0.02em;
}

/* Tabs */
.tab-bar {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.tab {
  background: transparent;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* Block list */
.block-feat {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.block-feat h3 {
  margin: 12px 0 8px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}
.block-feat .date {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}
.block-list li {
  padding: 12px 0;
  cursor: pointer;
}
.block-list li.has-border {
  border-bottom: 1px solid var(--border);
}
.block-list .row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  align-items: start;
}
.block-list h4 {
  margin: 0;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}
.block-list .date {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 44px;
    line-height: 1.5;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .member.col-start-3 {
    grid-column-start: auto;
  }
  .blocks-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-left: -24px;
    margin-right: -24px;
    padding: 32px 24px;
  }
  .hero h1 {
    font-size: 24px;
    line-height: 1.5;
  }
}
