:root {
  --brand: #e93314;
  --brand-dark: #c42a10;
  --brand-soft: color-mix(in srgb, var(--brand) 12%, transparent);
  --ink: #1a1a1a;
  --ink-soft: #3d3d3d;
  --muted: #6b6560;
  --line: #e6e2dc;
  --bg: #f7f5f2;
  --paper: #fff;
  --paper-2: #f0ece6;
  --footer: #141414;
  --footer-ink: #d8d4ce;
  --overlay: rgba(10, 8, 6, .55);
  --radius: 2px;
  --radius-sm: 2px;
  --shadow: 0 1px 2px rgba(20, 16, 12, .08);
  --header-h: 112px;
  --container: 1040px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --leading: 1.65;
}

html[data-theme="dark"] {
  --ink: #f4f1ec;
  --ink-soft: #d2cdc4;
  --muted: #9b958c;
  --line: #2c2a28;
  --bg: #111110;
  --paper: #1b1a18;
  --paper-2: #24221f;
  --footer: #0c0c0b;
  --footer-ink: #c9c4bb;
  --overlay: rgba(0, 0, 0, .7);
  --shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --ink: #f4f1ec;
    --ink-soft: #d2cdc4;
    --muted: #9b958c;
    --line: #2c2a28;
    --bg: #111110;
    --paper: #1b1a18;
    --paper-2: #24221f;
    --footer: #0c0c0b;
    --footer-ink: #c9c4bb;
    --overlay: rgba(0, 0, 0, .7);
    --shadow: 0 1px 2px rgba(0, 0, 0, .4);
  }
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: var(--leading);
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { line-height: 1.22; letter-spacing: -.02em; font-weight: 700; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--brand);
  color: #fff;
  padding: .5rem .8rem;
  border-radius: 2px;
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  max-width: 100%;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-top {
  border-bottom: 1px solid var(--line);
}
.header-top-inner,
.header-nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-top-inner { min-height: 64px; }
.header-nav-inner { min-height: 52px; }
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.brand:hover { color: inherit; }
.brand img { width: 168px; height: 34px; object-fit: contain; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.header-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 2px;
  color: var(--ink-soft);
  font-size: .84rem;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}
.header-action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header-action:hover,
.header-action[aria-current="page"] {
  color: var(--brand);
  background: var(--paper-2);
}
.nav-desktop {
  flex: 1;
  min-width: 0;
  display: none;
  border: 0;
}
.nav-desktop > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0;
}
@media (min-width: 900px) {
  .nav-desktop { display: block; }
}
.nav-desktop > ul > li > a,
.nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: .95rem .4rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.nav-desktop > ul > li:first-child > a { padding-left: 0; }
.nav-desktop > ul > li > a:hover,
.nav-desktop > ul > li > a[aria-current="page"],
.nav-drop-toggle:hover,
.nav-drop.is-open .nav-drop-toggle {
  color: var(--brand);
  background: none;
}
.nav-drop { position: relative; }
.nav-drop-toggle svg { width: 12px; height: 12px; }
.nav-drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 188px;
  padding: 8px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: var(--shadow);
  z-index: 5;
}
@media (hover: hover) {
  .nav-drop:hover .nav-drop-menu { display: block; }
}
.nav-drop.is-open .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: .6rem 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
}
.nav-drop-menu a:hover { color: var(--brand); background: var(--paper-2); }
.header-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 8px 2px 8px 14px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}
.header-menu svg { width: 22px; height: 22px; }
.header-menu:hover { color: var(--brand); }
@media (min-width: 900px) {
  .header-menu { display: none; }
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  color: var(--ink);
}
.icon-btn:hover { background: var(--paper-2); color: var(--brand); }
.icon-btn svg { width: 20px; height: 20px; }
@media (max-width: 1100px) {
  .nav-desktop .nav-optional { display: none; }
}
@media (max-width: 899px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .header-top { border-bottom: 0; min-width: 0; }
  .header-nav { display: flex; align-items: center; }
  .header-nav-inner {
    width: auto;
    min-height: 64px;
    margin: 0;
    padding-right: 16px;
    gap: 0;
  }
  .header-action span { display: none; }
  .header-action:not([data-open="search"]):not([data-theme-toggle]) { display: none; }
  .header-menu { border-left: 0; padding-left: 4px; }
  .header-menu span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
}

.breaking {
  background: var(--ink);
  color: #fff;
}
html[data-theme="dark"] .breaking { background: #000; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .breaking { background: #000; }
}
.breaking-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  font-size: .9rem;
}
.breaking-label {
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 4px;
}
.breaking-viewport {
  flex: 1;
  min-width: 0;
  height: 1.4em;
  overflow: hidden;
}
.breaking-track {
  display: flex;
  flex-direction: column;
  transition: transform .45s ease;
}
.breaking a {
  flex: 0 0 1.4em;
  display: flex;
  align-items: center;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breaking a:hover { color: #ffd2c8; }
@media (prefers-reduced-motion: reduce) {
  .breaking-track { transition: none; }
}

/* Drawer + search */
.overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.overlay.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(86vw, 340px);
  background: var(--paper);
  z-index: 60;
  transform: translateX(-100%);
  transition: transform .25s ease;
  padding: 20px;
  overflow: auto;
}
.drawer.is-open { transform: none; }
.drawer h2 { font-size: 1rem; margin-bottom: 12px; }
.drawer a {
  display: block;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}
.drawer a[aria-current="page"] { color: var(--brand); }
.drawer-drop {
  border-bottom: 1px solid var(--line);
}
.drawer-drop summary {
  list-style: none;
  cursor: pointer;
  padding: .7rem 0;
  font-weight: 650;
}
.drawer-drop summary::-webkit-details-marker { display: none; }
.drawer-drop summary::after {
  content: "";
  float: right;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}
.drawer-drop[open] summary::after { transform: rotate(-135deg); margin-top: 10px; }
.drawer-drop a {
  padding-left: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}
.search-modal {
  position: fixed;
  left: 50%;
  top: 18vh;
  transform: translateX(-50%) scale(.98);
  width: min(92vw, 560px);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  z-index: 70;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}
.search-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}
.search-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.search-modal-head h2 { font-size: 1.05rem; }
.search-modal form { display: flex; gap: 8px; }
.search-modal input {
  flex: 1;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 2px;
  padding: .85rem 1rem;
}
.search-modal button[type="submit"] {
  background: var(--brand);
  color: #fff;
  border-radius: 2px;
  padding: 0 1.1rem;
  font-weight: 700;
}
body.is-locked { overflow: hidden; }

/* Sections */
.section { padding: 36px 0; }
.section-cv { content-visibility: auto; contain-intrinsic-size: 1px 680px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.section-head a.more { font-size: .88rem; font-weight: 700; color: var(--brand); }
.kicker {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}

/* Cards */
.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
}
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.card-title {
  font-size: 1.12rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-top: .7rem;
  overflow-wrap: break-word;
}
.kicker + .card-title { margin-top: .35rem; }
.card-title a:hover { color: var(--brand); }
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .8rem;
  margin-top: .4rem;
  color: var(--muted);
  font-size: .82rem;
}
.badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .22rem .5rem;
  border-radius: 4px;
}
.badge-ghost {
  background: var(--paper);
  color: var(--brand);
  border: 1px solid color-mix(in srgb, var(--brand) 35%, var(--line));
}

/* Home hero */
.hero { padding: 16px 0 8px; }
.hero-grid {
  display: grid;
  gap: 12px;
}
.hero-grid > * { min-width: 0; }
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 2.05fr 1fr;
    align-items: stretch;
  }
}
.swiper { max-width: 100%; }

.main-slider,
.side-slider {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius);
}
.main-slider { aspect-ratio: 16 / 10; }
.side-slider { aspect-ratio: 2.15 / 1; }
@media (min-width: 700px) {
  .main-slider { aspect-ratio: 16 / 9; }
}
@media (min-width: 900px) {
  .main-slider,
  .side-slider { aspect-ratio: auto; height: min(52vw, 430px); }
}

.main-slider .swiper-slide,
.side-slider .swiper-slide {
  position: relative;
  height: 100%;
}
.main-slider a,
.side-slider a {
  display: block;
  position: relative;
  height: 100%;
  color: #fff;
}
.main-slider a:hover,
.side-slider a:hover { color: #fff; }
.main-slider img,
.side-slider img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.main-slider .swiper-slide a::after {
  content: "";
  position: absolute;
  inset: 0 0 32px;
  background:
    linear-gradient(180deg, transparent 42%, rgba(0,0,0,.58) 78%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, transparent 55%);
  pointer-events: none;
}
.main-slider .swiper-slide.is-designed a::after {
  display: none;
}
.main-slider .swiper-slide.is-designed img {
  height: calc(100% - 32px);
  object-position: left center;
}
.slide-caption {
  position: absolute;
  left: 0;
  right: 8%;
  bottom: 42px;
  z-index: 2;
  padding: 18px 18px 14px;
  background: none;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,.9), 0 4px 16px rgba(0,0,0,.65);
}
.slide-kicker {
  display: inline-block;
  margin: 0 0 8px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .02em;
  background: #e93314;
  padding: .18rem .5rem;
  text-shadow: none;
}
.slide-caption h2 {
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  max-width: 22ch;
  line-height: 1.22;
  letter-spacing: -.02em;
  font-weight: 800;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 699px) {
  .main-slider .swiper-slide a::after {
    background: linear-gradient(180deg, transparent 32%, rgba(0,0,0,.5) 62%, rgba(0,0,0,.86) 100%);
  }
  .slide-caption {
    left: 0;
    right: 0;
    bottom: 32px;
    padding: 20px 14px 14px;
    background: none;
    text-shadow:
      0 1px 1px rgba(0,0,0,1),
      0 2px 8px rgba(0,0,0,.9),
      0 8px 24px rgba(0,0,0,.75);
  }
  .slide-caption h2 {
    font-size: 1.2rem;
    max-width: none;
    line-height: 1.28;
    letter-spacing: -.01em;
  }
  .slide-kicker {
    font-size: .72rem;
    margin-bottom: 10px;
  }
}

.headline-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  background: #1a1a1a;
  height: 32px;
}
.headline-nums {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  position: static;
  width: auto;
  pointer-events: auto;
}
.headline-nums::-webkit-scrollbar { display: none; }
.headline-nums .swiper-pagination-bullet {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 22px;
  height: 32px;
  margin: 0 !important;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  color: #fff !important;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  border: 0;
  border-right: 1px solid #2c2c2c;
  cursor: pointer;
  pointer-events: auto;
}
.headline-nums .swiper-pagination-bullet:hover {
  background: #2a2a2a;
}
.headline-nums .swiper-pagination-bullet-active,
.headline-nums .swiper-pagination-bullet-active:hover {
  background: var(--brand);
  color: #fff;
}
@media (max-width: 899px) {
  .headline-nums {
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    overflow: visible;
  }
  .headline-nums .swiper-pagination-bullet {
    flex: none;
    width: 7px;
    min-width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    color: transparent !important;
    background: #fff;
    opacity: .4;
  }
  .headline-nums .swiper-pagination-bullet:hover {
    background: #fff;
  }
  .headline-nums .swiper-pagination-bullet-active,
  .headline-nums .swiper-pagination-bullet-active:hover {
    background: var(--brand);
    opacity: 1;
  }
}

.side-slider a::after {
  content: "";
  position: absolute;
  inset: 0 0 32px;
  background: linear-gradient(transparent 35%, rgba(0,0,0,.72));
  pointer-events: none;
}
.side-slider .swiper-slide h3 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 44px;
  z-index: 2;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.side-slider .swiper-button-next,
.side-slider .swiper-button-prev { display: none; }
@media (max-width: 899px) {
  .side-slider .swiper-slide h3 {
    left: 10px;
    right: 10px;
    bottom: 40px;
    font-size: .92rem;
  }
}

.side-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  background: #1a1a1a;
}
.side-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  max-width: 100%;
}
.side-slider.swiper-horizontal .side-bar .swiper-pagination,
.side-slider.swiper-horizontal .side-bar .swiper-pagination-bullets {
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 3px;
  width: auto !important;
}
.side-bar .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  margin: 0 !important;
  flex-shrink: 0;
  background: #fff;
  opacity: .45;
}
.side-bar .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #fff;
  opacity: .45;
}
.side-bar .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--brand);
}
.side-prev,
.side-next {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #fff;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4'%3E%3Cpath d='M15 6l-6 6 6 6'/%3E%3C/svg%3E") center/12px no-repeat;
}
.side-next { transform: scaleX(-1); }

.pp-card { display: grid; height: 100%; }
.pp-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.pp-card .pp-info { padding: 14px 16px 18px; }
.pp-card h3 { font-size: 1.05rem; }

/* Grids */
.news-grid {
  display: grid;
  gap: 22px 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.news-grid-2 {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .news-grid-2 { grid-template-columns: 1fr 1fr; }
}
.feat-layout {
  display: grid;
  gap: 28px;
}
@media (min-width: 980px) {
  .feat-layout { grid-template-columns: 300px 1fr; }
}
.feat-list {
  display: grid;
  gap: 14px 18px;
}
@media (min-width: 700px) {
  .feat-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .feat-list { grid-template-columns: 1fr 1fr 1fr; }
  .feat-panel {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .feat-panel .feat-list {
    flex: 1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr) auto;
    gap: 12px 14px;
    min-height: 0;
    align-items: stretch;
  }
  .feat-panel .mini-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: subgrid;
    grid-row: span 2;
    gap: 8px;
    min-height: 0;
  }
  .feat-panel .mini-card .card-media {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }
  .feat-panel .mini-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
  }
  @supports not (grid-template-rows: subgrid) {
    .feat-panel .feat-list {
      grid-auto-rows: unset;
      grid-template-rows: repeat(3, minmax(0, 1fr));
    }
    .feat-panel .mini-card {
      display: flex;
      flex-direction: column;
      grid-row: auto;
      height: 100%;
    }
    .feat-panel .mini-card .card-media {
      flex: 1 1 0;
    }
    .feat-panel .mini-card h3 {
      flex: 0 0 auto;
    }
  }
}
.mini-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.mini-card .card-media {
  width: 112px;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius-sm);
}
.mini-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-top: 0;
  min-width: 0;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.home-split {
  display: grid;
  gap: 28px;
}
.home-split aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 980px) {
  .home-split { grid-template-columns: 300px 1fr; }
}

.author-row {
  display: grid;
  gap: 14px;
}
.author-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}
.author-photo {
  width: 52px;
  height: 52px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper-2);
  flex-shrink: 0;
}
.author-photo img,
.author-item > img {
  width: 52px;
  height: 52px;
  max-width: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
}
.author-photo img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.author-item > div {
  min-width: 0;
  display: grid;
  align-content: center;
  min-height: 52px;
}
.author-item h3 {
  font-size: .95rem;
  line-height: 1.28;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow-wrap: break-word;
  word-break: break-word;
}
.author-item span {
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.35;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vefat-box {
  background: #161616;
  color: #f4f1ec;
  border-radius: var(--radius);
  padding: 18px;
}
.vefat-box a { color: #fff; }
.vefat-box .widget-head { border-bottom-color: #333; }
.vefat-box .widget-head h2 { color: #fff; }
.vefat-box .more { color: #ffb4a6; }
.vefat-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}
.vefat-item img {
  width: 72px;
  height: 52px;
  max-width: none;
  aspect-ratio: 72 / 52;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
  background: #2a2a2a;
}
.vefat-item span {
  min-width: 0;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.home-duo {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .home-duo { grid-template-columns: 1fr 1fr; align-items: start; gap: 32px; }
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -6px 0 18px;
}
.tab-btn {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  padding: .4rem .85rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.tab-btn.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.tab-panel[hidden] { display: none !important; }

.desk-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px 16px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ink);
}
.desk-head h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-right: auto;
  padding-bottom: 10px;
}
.desk-head .more {
  font-size: .88rem;
  font-weight: 700;
  color: var(--brand);
  padding-bottom: 10px;
}
.desk-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.desk-tabs::-webkit-scrollbar { display: none; }
.desk-tabs .tab-btn {
  border: 0;
  background: none;
  border-radius: 0;
  padding: .55rem .9rem .75rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}
.desk-tabs .tab-btn:hover { color: var(--ink); background: none; }
.desk-tabs .tab-btn.is-active {
  background: none;
  color: var(--brand);
  border-color: transparent;
  border-bottom-color: var(--brand);
}

.desk-split {
  display: grid;
  gap: 12px;
}
@media (min-width: 860px) {
  .desk-split {
    grid-template-columns: 1.25fr .75fr;
    gap: 14px;
    align-items: stretch;
  }
}
.desk-lead { min-width: 0; }
.desk-lead a {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
}
.desk-lead a:hover { color: #fff; }
.desk-lead .card-media {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
}
.desk-lead .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.desk-lead-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 56px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
}
.desk-lead .kicker {
  color: #fff;
  background: var(--brand);
  padding: .15rem .45rem;
  border-radius: 3px;
  margin-bottom: 8px;
}
.desk-lead h3 {
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  line-height: 1.22;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.desk-lead a:hover h3 { color: #fff; }

.desk-rail {
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .desk-rail {
    grid-template-rows: 1fr 1fr 1fr;
    min-height: 0;
  }
}
.desk-item { min-height: 0; }
.desk-item a {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  height: 100%;
  padding: 0;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.desk-item a:hover { color: inherit; }
.desk-item img {
  width: 100%;
  height: auto;
  max-width: none;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  align-self: center;
}
.desk-item h3 {
  font-size: .95rem;
  line-height: 1.35;
  margin: 0;
  padding-right: 12px;
  min-width: 0;
  align-self: center;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.desk-item a:hover h3 { color: var(--brand); }
@media (min-width: 860px) {
  .desk-item a { grid-template-columns: 40% minmax(0, 1fr); }
  .desk-item img { width: 100%; height: 100%; min-height: 0; align-self: stretch; }
}
@media (max-width: 859px) {
  .desk-rail { gap: 8px; }
}

.video-band {
  background: #141414;
  color: #f4f1ec;
  padding: 28px 0 32px;
}
.video-band .section-head {
  border-bottom-color: rgba(255, 255, 255, .16);
}
.video-band .section-head h2 { color: #fff; }
.video-band .more { color: var(--brand); }
.video-split {
  display: grid;
  gap: 12px;
}
@media (min-width: 860px) {
  .video-split {
    grid-template-columns: 1.35fr .65fr;
    gap: 14px;
    align-items: stretch;
  }
}
.video-lead a {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
}
.video-lead a:hover { color: #fff; }
.video-lead .card-media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}
.video-lead .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-lead-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 52px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .82));
}
.video-lead .kicker {
  color: #fff;
  background: var(--brand);
  padding: .15rem .45rem;
  border-radius: 3px;
  margin-bottom: 8px;
}
.video-lead h3 {
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.22;
  margin: 0;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .45);
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.video-lead a:hover h3 { color: #fff; }
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") 54% 50%/18px no-repeat;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .4);
  pointer-events: none;
  z-index: 2;
  transition: transform .2s ease;
}
.video-lead .play-btn {
  inset: auto;
  top: 34%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}
.video-lead a:hover .play-btn { transform: translate(-50%, -50%) scale(1.06); }
.video-item a:hover .play-btn { transform: scale(1.06); }
.play-time {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: .16rem .4rem;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}
.video-rail {
  display: grid;
  gap: 10px;
}
@media (min-width: 860px) {
  .video-rail {
    grid-template-rows: 1fr 1fr 1fr;
    min-height: 0;
  }
}
.video-item { min-height: 0; }
.video-item a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  height: 100%;
  color: #fff;
  background: #1c1c1c;
  border: 1px solid #2c2c2c;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.video-item a:hover { color: #fff; }
.video-item .card-media {
  display: block;
  width: 132px;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  align-self: center;
  border-radius: 0;
}
.video-item .card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.video-item .play-btn {
  inset: auto 7px 7px auto;
  margin: 0;
  width: 26px;
  height: 26px;
  background-size: 11px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .45);
}
.video-item h3 {
  font-size: .98rem;
  line-height: 1.35;
  margin: 0;
  padding: 10px 12px 10px 0;
  min-width: 0;
  align-self: center;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-item a:hover h3 { color: var(--brand); }
@media (min-width: 860px) {
  .video-item a { grid-template-columns: 42% minmax(0, 1fr); }
  .video-item .card-media { width: 100%; height: 100%; min-height: 0; align-self: stretch; }
}

.kurdi-block {
  display: grid;
  gap: 10px;
}
@media (min-width: 640px) {
  .kurdi-block {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .kurdi-lead { grid-column: 1 / -1; }
  .kurdi-item img { height: 100%; align-self: stretch; }
}
.kurdi-lead a {
  display: block;
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
}
.kurdi-lead a:hover { color: #fff; }
.kurdi-lead .card-media {
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}
.kurdi-lead .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kurdi-lead-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 14px 14px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .8));
}
.kurdi-lead .kicker {
  color: #fff;
  background: var(--brand);
  padding: .15rem .45rem;
  border-radius: 3px;
  margin-bottom: 8px;
}
.kurdi-lead h3 {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.25;
  margin: 0;
  color: #fff;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.kurdi-lead a:hover h3 { color: #fff; }
.kurdi-item { min-height: 0; }
.kurdi-item a {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  height: 100%;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.kurdi-item a:hover { color: inherit; }
.kurdi-item img {
  width: 100%;
  height: auto;
  max-width: none;
  min-height: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  align-self: center;
}
.kurdi-item h3 {
  font-size: .95rem;
  line-height: 1.35;
  margin: 0;
  padding: 10px 12px 10px 0;
  min-width: 0;
  align-self: center;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kurdi-item a:hover h3 { color: var(--brand); }

@media (max-width: 639px) {
  .video-band { padding: 24px 0 28px; }
  .video-lead-copy { padding: 40px 14px 14px; }
  .play-btn { width: 44px; height: 44px; background-size: 16px; }
  .video-item a { grid-template-columns: 118px minmax(0, 1fr); }
  .video-item .card-media { width: 118px; min-height: 0; }
  .video-item .play-btn { width: 22px; height: 22px; background-size: 9px; inset: auto 6px 6px auto; }
  .kurdi-lead .card-media { aspect-ratio: 16 / 10; }
  .kurdi-item a { grid-template-columns: 96px minmax(0, 1fr); gap: 10px; }
  .kurdi-item img { width: 100%; min-height: 0; }
}

.ilan-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 700px) {
  .ilan-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .ilan-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.ilan-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}
.ilan-card .stamp-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  width: 100%;
  aspect-ratio: 4 / 3;
  align-self: center;
}
.ilan-card .stamp-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.ilan-card > div { min-width: 0; }
.stamp {
  position: absolute;
  left: 6px;
  bottom: 6px;
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .15rem .4rem;
  border-radius: 3px;
}
.ilan-card h3 {
  font-size: .95rem;
  line-height: 1.35;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ilan-card .meta { margin-top: .3rem; }
@media (max-width: 699px) {
  .ilan-grid { gap: 8px; }
  .ilan-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
    padding: 8px;
  }
  .ilan-card h3 {
    font-size: .86rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .ilan-card .meta { font-size: .75rem; margin-top: .15rem; }
  .stamp {
    font-size: .5rem;
    letter-spacing: .02em;
    padding: .08rem .28rem;
    left: 4px;
    bottom: 4px;
  }
}

.ticker-list { display: grid; gap: 8px; }
.ticker-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
  align-items: start;
}
.ticker-item time {
  color: var(--brand);
  font-variant-numeric: tabular-nums;
  font-size: .85rem;
}
.ticker-item span {
  min-width: 0;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

/* Article */
.page-wrap { padding: 28px 0 56px; }
.layout-8-4 {
  display: grid;
  gap: 36px;
}
@media (min-width: 980px) {
  .layout-8-4 { grid-template-columns: minmax(0, 1fr) 320px; }
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}
.article-head h1 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  max-width: 22ch;
  margin-bottom: .7rem;
}
.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin-bottom: 1.1rem;
}
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 12px 0 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}
.byline img {
  width: 44px;
  height: 44px;
  max-width: none;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}
.cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 8px 0 18px;
}
.cover img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.cover figcaption {
  font-size: .82rem;
  color: var(--muted);
  padding: 8px 2px 0;
}
.share {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 22px;
}
.share a {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  padding: .35rem .8rem;
  font-size: .8rem;
  font-weight: 700;
}
.article-body {
  max-width: 68ch;
  font-size: 1.0625rem;
  line-height: 1.75;
}
.article-body p { margin: 0 0 1.1em; }
.article-body h2 { font-size: 1.3rem; margin: 1.4em 0 .5em; }
.article-body figure { margin: 1.4em 0; }
.article-body figcaption { font-size: .82rem; color: var(--muted); margin-top: .4rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.tags a {
  background: var(--paper-2);
  border-radius: 2px;
  padding: .3rem .75rem;
  font-size: .82rem;
  font-weight: 650;
}
.source { margin-top: 18px; color: var(--muted); font-size: .9rem; }

.sidebar { display: grid; gap: 22px; align-content: start; }
.widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
.sidebar .widget {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.widget-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.widget-head h2,
.widget h2 {
  font-size: 1.05rem;
  letter-spacing: -.02em;
  text-transform: none;
  margin: 0;
}
.sidebar .widget > h2 {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.sidebar .widget .ilan-card {
  grid-template-columns: 1fr;
  align-items: start;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  gap: 12px;
}
.sidebar .widget .ilan-card .stamp-wrap {
  aspect-ratio: 16 / 10;
  align-self: auto;
}
.sidebar .widget .ilan-card h3 {
  font-size: 1.02rem;
}
.sidebar .widget .mini-card + .mini-card {
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.widget-head .more {
  font-size: .82rem;
  font-weight: 700;
  color: var(--brand);
}
.ad-slot {
  min-height: 180px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: .8rem;
  background: var(--paper-2);
}

/* Listing */
.page-title {
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  margin: 0 0 14px;
}
.list-stack {
  display: grid;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.list-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.list-card:last-child { border-bottom: 0; }
.list-card .card-media {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-sm);
}
.list-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 0;
  padding: 1px 0;
}
.list-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  min-height: 1.1em;
}
.list-top .kicker,
.list-body > .kicker { margin-bottom: 0; }
.list-top .meta { margin-top: 0; flex-shrink: 0; }
.list-card h2 {
  font-size: .98rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-card h2 a:hover { color: var(--brand); }
.excerpt {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-card .meta { margin-top: 0; }
@media (max-width: 639px) {
  .list-card .excerpt { display: none; }
}
@media (min-width: 640px) {
  .list-card {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 16px;
    padding: 14px 16px;
  }
  .list-card .card-media { aspect-ratio: 3 / 2; }
  .list-card h2 { font-size: 1.08rem; }
}
@media (hover: hover) and (pointer: fine) {
  .list-card:hover { background: color-mix(in srgb, var(--paper-2) 70%, var(--paper)); }
}
@media (min-width: 900px) {
  .container > .list-stack {
    grid-template-columns: 1fr 1fr;
  }
  .container > .list-stack .list-card {
    border-right: 1px solid var(--line);
  }
  .container > .list-stack .list-card:nth-child(even) {
    border-right: none;
  }
}
.pagination {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  font-weight: 700;
}
.pagination [aria-current="page"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.people-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.person-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}
.person-card img {
  width: 88px;
  height: 88px;
  max-width: none;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
  margin: 0 auto 10px;
}
.person-card p { color: var(--muted); font-size: .88rem; margin-top: .4rem; }

.author-hero {
  display: grid;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
@media (min-width: 700px) {
  .author-hero { grid-template-columns: 88px 1fr; align-items: center; }
}
.author-hero img {
  width: 88px;
  height: 88px;
  max-width: none;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}

.page-intro { margin-bottom: 28px; max-width: 40rem; }
.page-intro .page-title { margin: 0 0 8px; }
.page-intro .lede { margin-bottom: 0; }

.contact-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 28px;
  }
}

.contact-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child .contact-item { border-bottom: 0; }
a.contact-item:hover { color: inherit; background: var(--paper-2); }
a.contact-item:hover strong { color: var(--brand); }
.contact-item-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: var(--paper-2);
  color: var(--ink-soft);
}
.contact-item-icon svg { width: 18px; height: 18px; }
.contact-item-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-item strong {
  display: block;
  font-size: .98rem;
  font-weight: 650;
  word-break: break-word;
}
.contact-item address {
  font-style: normal;
  font-size: .98rem;
  line-height: 1.45;
}
.contact-map {
  display: inline-block;
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 650;
  color: var(--brand);
}
.contact-map:hover { color: var(--brand-dark); }

.form {
  display: grid;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-form h2 { font-size: 1.15rem; }
.form-lead {
  color: var(--muted);
  font-size: .9rem;
  margin-top: -6px;
}
.form-row {
  display: grid;
  gap: 14px;
}
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field { display: grid; gap: 6px; }
.form label {
  font-weight: 650;
  font-size: .85rem;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 2px;
  padding: .8rem 1rem;
}
.form textarea {
  min-height: 148px;
  resize: vertical;
}
.form input:hover,
.form textarea:hover,
.form select:hover { border-color: color-mix(in srgb, var(--ink) 18%, var(--line)); }
.form input:focus-visible,
.form textarea:focus-visible,
.form select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
  background: var(--paper);
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}
.form button[type="submit"] {
  justify-self: start;
  background: var(--brand);
  color: #fff;
  border-radius: 2px;
  padding: .75rem 1.35rem;
  font-weight: 700;
}
.form button[type="submit"]:hover { background: var(--brand-dark); color: #fff; }
.form-hint {
  font-size: .8rem;
  color: var(--muted);
  max-width: 34ch;
}
.form-hint a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.form-hint a:hover { color: var(--brand); }
.form-status {
  font-size: .9rem;
  color: var(--ink-soft);
}
.form-status:not([hidden]) {
  padding: 10px 12px;
  background: var(--paper-2);
  border-radius: 2px;
}
.prose {
  max-width: 68ch;
  font-size: 1.05rem;
}
.prose p { margin: 0 0 1em; }
.prose h2 { font-size: 1.25rem; margin: 1.4em 0 .5em; }
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1em; }
.notice {
  max-width: none;
}
.notice .page-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: .35rem 0 .7rem;
}
.notice .lede,
.notice p {
  max-width: none;
}
.notice > .meta {
  margin: 0;
}
.notice .lede {
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.filter-bar input {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 2px;
  padding: .6rem .9rem;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: var(--footer-ink);
  padding: 42px 0 24px;
  margin-top: 24px;
}
.site-footer a { color: var(--footer-ink); }
.site-footer a:hover { color: #fff; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}
.footer-social a {
  border: 1px solid #333;
  border-radius: 2px;
  padding: .35rem .8rem;
  font-size: .82rem;
  font-weight: 650;
}
.footer-cols {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  padding: 8px 0 28px;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}
.footer-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8f8a83;
  margin-bottom: 8px;
}
.footer-cols a { display: block; padding: .22rem 0; font-size: .9rem; }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 22px 0 12px;
}
.legal-links a {
  background: #222;
  border-radius: 2px;
  padding: .35rem .8rem;
  font-size: .8rem;
}
.apps { display: flex; gap: 8px; margin-bottom: 0; }
.apps a {
  background: #fff;
  color: #111;
  border-radius: 2px;
  padding: .5rem .9rem;
  font-weight: 800;
  font-size: .82rem;
}
.apps a:hover { color: var(--brand); }
.copyright { text-align: center; font-size: .82rem; color: #8f8a83; max-width: 70ch; margin: 12px auto 0; }

.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
  z-index: 20;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; }
.to-top svg { width: 18px; height: 18px; }

@media (max-width: 639px) {
  .slide-caption { padding: 32px 14px 16px; }
}
