/* ============================ SECTION HEADERS (also used on archive) ============================ */
section.block{ margin: 40px 0 0; }
@media (max-width: 720px){ section.block{ margin: 32px 0 0; } }
.sec-head{
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.sec-head h2{
  font-family: 'Unbounded'; font-weight: 800; font-size: clamp(26px, 2.8vw, 36px);
  letter-spacing: -.02em; margin: 0;
  display: inline-flex; align-items: baseline; gap: 2px;
  flex-wrap: wrap;
  min-width: 0; max-width: 100%;
  overflow-wrap: anywhere;
}
.sec-head .more{ flex-shrink: 0; }
.sec-head h2 em{ font-style: normal; color: var(--muted); font-weight: 500; font-size: .62em; margin-left: 8px; }
.sec-head h2 .dot-red{ color: var(--red); }
.sec-head .more{
  font-weight: 700; font-size: 13px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
}
.sec-head .more:hover{ text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* yellow highlight helper */
.hl{
  position: relative; display: inline-block; padding: 0 .12em;
  isolation: isolate;
}
.hl::before{
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .44em;
  background: var(--yellow); z-index: -1; border-radius: 4px;
  transform: skewX(-4deg);
}

/* ============================ NEWS GRID ============================ */
.news{ position: relative; min-height: 0; }
.news .list-card{
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 340px;
  overflow: hidden;
  display: flex; flex-direction: column;
  min-height: 0;
}
.news-right{
  margin-left: calc(340px + 22px);
  display: flex; flex-direction: column; gap: 18px;
  min-width: 0;
}
.nr-row1{
  display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px;
  align-items: stretch;
}
.nr-row1 > .nr-hero-col{
  display: flex; flex-direction: column; gap: 18px; min-width: 0;
}
.nr-hero-col .news-hero{ flex: 1; }
.nr-row1 > .nr-stacked{ display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.nr-row1 > .nr-col-sections{ display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.nr-row2{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 1080px){
  .news{ position: static; }
  .news .list-card{
    position: static;
    width: auto; bottom: auto; left: auto; top: auto;
    max-height: 540px;
  }
  .news-right{ margin-left: 0; margin-top: 22px; }
  .nr-row1{ grid-template-columns: 1fr; }
  .nr-row2{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .nr-row2{ grid-template-columns: 1fr; }
}

/* ============================ SIDEBAR SECTIONS ============================ */
.news-sidebar{ display: flex; flex-direction: column; gap: 18px; min-width: 0; }
.news-sidebar--bottom{ display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.news-sidebar--bottom .sb-section{ min-width: 0; }
.sb-section{
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
}
.sb-section:first-child{ border-top: 0; padding-top: 0; }
.news-sidebar--bottom .sb-section{ border-top: 0; padding-top: 0; }
.sb-label{
  font-family: 'Manrope', sans-serif;
  font-size: 10.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}
.sb-section__items{ display: flex; flex-direction: column; gap: 12px; }

.sb-card{
  display: grid; grid-template-columns: 88px 1fr; gap: 12px;
  text-decoration: none; color: inherit;
  align-items: start;
}
.sb-card__thumb{
  position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #d9cfb1, #b8a97f);
}
.sb-card__thumb.k1{ background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%); }
.sb-card__thumb.k2{ background: linear-gradient(160deg, #1b1b1d 0%, #3a3a3f 100%); }
.sb-card__thumb.k3{ background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); }
.sb-card__thumb.k4{ background: linear-gradient(135deg, #c7d7e8 0%, #8aa6c2 100%); }
.sb-card__thumb.k5{ background: linear-gradient(135deg, #e8e0cb 0%, #c4b896 100%); }
.sb-card__thumb img.ph,
.sb-card__thumb svg.illu{ position: absolute; inset: 0; width: 100%; height: 100%; }
.sb-card__thumb img.ph{ object-fit: cover; }
.sb-card__thumb svg.illu{ opacity: .55; }
.sb-card__body{ display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sb-card__cat{
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); align-self: flex-start;
}
.sb-card__cat.red{ color: var(--red); }
.sb-card__cat.ink{ color: var(--ink); }
.sb-card__title{
  font-family: 'Unbounded', sans-serif; font-weight: 600;
  font-size: 13.5px; line-height: 1.22; margin: 0;
  text-wrap: balance;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.sb-card:hover .sb-card__title{ color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 640px){
  .news-sidebar--bottom{ grid-template-columns: 1fr; }
  .sb-card{ grid-template-columns: 96px 1fr; }
}

/* ============================ CARDS ============================ */
.card{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  min-width: 0;
  transition: transform .15s, border-color .15s;
}
.card h3{ overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
.card:hover{ transform: translateY(-2px); border-color: var(--line-strong); }
.card .thumb{
  aspect-ratio: 16/10; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #d9cfb1, #b8a97f);
}
.card .thumb.k1{ background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-deep) 100%); }
.card .thumb.k2{ background: linear-gradient(160deg, #1b1b1d 0%, #3a3a3f 100%); }
.card .thumb.k3{ background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%); }
.card .thumb.k4{ background: linear-gradient(135deg, #c7d7e8 0%, #8aa6c2 100%); }
.card .thumb.k5{ background: linear-gradient(135deg, #e8e0cb 0%, #c4b896 100%); }
.card .thumb .cat{
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 10px; border-radius: 6px;
  background: var(--paper); color: var(--ink);
}
.card .thumb .cat.red{ background: var(--red); color: #fff; }
.card .thumb .cat.ink{ background: var(--ink); color: var(--paper); }
.card .thumb .cat.yellow{ background: var(--yellow); color: var(--ink); }
.card .thumb svg.illu,
.st .th svg.illu{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; z-index: 0; }
.card .thumb img.ph,
.st .th img.ph { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.card .thumb img.ph { opacity: 1; transition: opacity .3s; }
.card .thumb img.ph[src=""],
.card .thumb img.ph:not([src]) { opacity: 0; pointer-events: none; }

.card .body{
  padding: 18px 20px 20px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.card h3{
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 19px; line-height: 1.12; letter-spacing: -.01em; margin: 0;
  text-wrap: balance;
}
.card .meta{
  font-size: 12px; color: var(--muted);
  display: flex; gap: 8px; align-items: center; margin-top: auto;
}
.card .meta .sep{ width: 3px; height: 3px; background: var(--muted-2); border-radius: 50%; }
.card.big h3{ font-size: clamp(26px, 2.6vw, 32px); line-height: 1.06; }
.card.big .thumb{ aspect-ratio: 16/9; }
.card.big .body{ padding: 22px 24px 24px; }
.card.big p.lead{ font-size: 15px; color: var(--ink-3); margin: 0; }

/* list card (left column ticker) */
.list-card{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 18px 12px;
  display: flex; flex-direction: column;
  min-height: 0;
}
.list-card .lc-items{
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 0;
  margin: 0 -18px;
  padding: 0 18px;
}
.list-card .lc-items > .i.is-hidden,
.list-card .lc-items > .day-sep.is-hidden{ display: none; }

.list-card .day-sep{
  font-family: 'Manrope'; font-size: 11.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2);
  padding: 18px 0 8px;
}
.list-card .day-sep:first-of-type{ padding-top: 10px; }
.list-card .i{
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px;
  padding: 14px 18px;
  margin: 0 -18px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  transition: background .15s;
}
.list-card a.i{ color: inherit; text-decoration: none; }
.list-card a.i:hover{ background: var(--paper-2); }
.list-card .i:last-of-type{ border-bottom: 0; }
.list-card .time{
  font-family: 'Manrope'; font-weight: 700; font-size: 13.5px;
  color: var(--muted); letter-spacing: 0;
  padding-top: 2px; text-align: right; white-space: nowrap;
}
.list-card h4{
  font-family: 'Manrope'; font-size: 16px; margin: 0; line-height: 1.3;
  font-weight: 700; color: var(--ink); letter-spacing: -.005em;
  min-width: 0; word-wrap: break-word; overflow-wrap: break-word;
}
.list-card .i:hover h4{ color: var(--red); }
.list-card .lc-foot{
  margin-top: auto; padding: 14px 0 4px; border-top: 1px solid var(--line);
}
.list-card .lc-foot a{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 800; color: var(--ink);
}

.sec-head h2 .live{ align-self: center; margin-left: 10px; }

/* ============================ SERVICES ============================ */
.svc-grid{ display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
@media (max-width: 1080px){ .svc-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .svc-grid{ grid-template-columns: repeat(2, 1fr); } }
.svc{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 144px;
  min-width: 0;
  transition: transform .15s, border-color .15s;
  position: relative;
}
.svc h4{ overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
.svc:hover{ transform: translateY(-2px); border-color: var(--line-strong); }
.svc-ico{
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--paper-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.svc.y .svc-ico{ background: var(--yellow); }
.svc.r .svc-ico{ background: var(--red-soft); color: var(--red-deep); }
.svc.ink .svc-ico{ background: var(--ink); color: var(--yellow); }
.svc h4{ font-family: 'Manrope'; font-weight: 700; font-size: 14.5px; margin: 0; letter-spacing: -.005em; }
.svc p{ font-size: 12px; color: var(--muted); margin: 0; }
.svc .live-dot{
  position: absolute; top: 14px; right: 14px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(42,123,58,.18);
}

/* ============================ AFISHA ============================ */
.events{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px){ .events{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .events{ grid-template-columns: 1fr; } }
.ev{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 180px;
  min-width: 0;
  transition: transform .15s, border-color .15s, background .15s;
}
.ev h4, .ev .venue{ overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
.ev:hover{
  transform: translateY(-2px);
  background: var(--yellow);
  border-color: transparent;
}
.ev:hover .date .day{ background: var(--ink); color: var(--yellow); }
.ev:hover .venue{ color: var(--ink-2); }
.ev:hover .tags{ color: var(--ink-2); }
.ev .date{
  font-family: 'Unbounded'; font-weight: 700; font-size: 13px;
  letter-spacing: .02em; color: var(--ink);
  display: inline-flex; align-items: center; gap: 8px;
}
.ev .date .day{
  background: var(--ink); color: var(--paper);
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 11px; line-height: 1; gap: 2px;
  transition: color .15s;
}
.ev .date .day b{ font-size: 16px; }
.ev h4{ font-family: 'Unbounded'; font-weight: 700; font-size: 17px; line-height: 1.15; margin: 6px 0 0; letter-spacing: -.01em; }
.ev .venue{ font-size: 13px; color: var(--ink-3); transition: color .15s; }
.ev .tags{
  margin-top: auto; display: flex; gap: 6px; flex-wrap: wrap;
  font-size: 11px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em; transition: color .15s;
}

/* ============================ STORIES ============================ */
.stories{
  margin-top: 48px;
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
  border-radius: 28px;
}
@media (max-width: 720px){ .stories{ padding: 36px 0; } }
.stories .wrap{ padding: 0 28px; }
@media (max-width: 720px){ .stories .wrap{ padding: 0 20px; } }
.st-head{
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.st-head h2{
  font-family: 'Unbounded'; font-weight: 800;
  font-size: clamp(34px, 5vw, 60px);
  line-height: .98; letter-spacing: -.025em; margin: 0; max-width: 16ch; text-wrap: balance;
}
.st-head .aside{ max-width: 360px; color: var(--muted); font-size: 14px; }
.st-head .aside b{ color: var(--ink); font-weight: 700; }
.st-head .aside .num{ font-family: 'Unbounded'; color: var(--red); font-weight: 800; }

.st-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 1080px){ .st-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } }
@media (max-width: 560px){ .st-grid{ grid-template-columns: 1fr; grid-auto-rows: 200px; } }

.st{
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-width: 0;
  transition: transform .2s;
}
.st h4{ overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
.st:hover{ transform: translateY(-3px); }
.st .th{
  position: relative; flex: 1; overflow: hidden;
  background: linear-gradient(135deg, #d9cfb1, #b8a97f);
}
.st .th.k1{ background: linear-gradient(135deg, var(--yellow), var(--yellow-deep)); }
.st .th.k2{ background: linear-gradient(160deg, #1b1b1d, #3a3a3f); }
.st .th.k3{ background: linear-gradient(135deg, var(--red), var(--red-deep)); }
.st .th.k4{ background: linear-gradient(135deg, #c7d7e8, #8aa6c2); }
.st .th.k5{ background: linear-gradient(135deg, #e8e0cb, #c4b896); }
.st .th img{ width: 100%; height: 100%; object-fit: cover; }
.st .th svg{ position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; z-index: 0; }
.st .th img.ph{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.st .cat-chip{
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  padding: 5px 10px; border-radius: 6px;
  background: var(--paper); color: var(--ink);
}
.st .cat-chip.red{ background: var(--red); color: #fff; }
.st .cat-chip.ink{ background: var(--ink); color: var(--yellow); }
.st .rd-chip{
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-family: 'Unbounded'; font-size: 10.5px; font-weight: 700;
  padding: 4px 9px; border-radius: 6px;
  background: rgba(14,14,15,.72); color: var(--paper);
  letter-spacing: .02em;
}
.st .bd{
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 6px;
  background: var(--paper);
}
.st h4{
  font-family: 'Unbounded'; font-weight: 700; font-size: 15px;
  line-height: 1.15; letter-spacing: -.01em; margin: 0; text-wrap: balance;
}
.st .m{ font-size: 11.5px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.st .m b{ color: var(--ink-2); font-weight: 700; }

.st.s-big{ grid-row: span 2; grid-column: span 2; }
.st.s-big h4{ font-size: 26px; line-height: 1.05; }
.st.s-big .bd{ padding: 22px 24px 24px; gap: 10px; }
.st.s-big .lead{ font-size: 14px; color: var(--ink-3); margin: 0; }
.st.s-wide{ grid-column: span 4; }
.st.s-wide h4{ font-size: 22px; }
.st-grid .rd-chip{ display: none !important; }
.st-grid .bd .m,
.st-grid .over .m{ display: none !important; }
@media (max-width: 1080px){
  .st.s-big{ grid-column: span 2; grid-row: span 2; }
  .st.s-wide{ grid-column: span 2; }
}
@media (max-width: 560px){
  .st.s-big, .st.s-wide{ grid-column: span 1; }
  .st.s-big{ grid-row: span 2; }
  .st.s-big h4{ font-size: 20px; }
}

.st.s-over .bd{ display: none; }
.st.s-over .th::after{
  content: ""; position: absolute; inset: auto 0 0 0; height: 68%;
  background: linear-gradient(to top, rgba(0,0,0,.78), transparent);
}
.st.s-over .over{
  position: absolute; inset: auto 0 0 0; padding: 18px 20px; color: #fff; z-index: 2;
}
.st.s-over .over h4{ font-family: 'Unbounded'; font-weight: 700; font-size: 18px; line-height: 1.12; margin: 0; color: #fff; text-wrap: balance; }
.st.s-big.s-over .over h4{ font-size: 26px; }
.st.s-over .over .m{ color: rgba(255,255,255,.78); margin-top: 6px; }

.st-stats{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  padding: 22px 24px;
  background: var(--ink); color: var(--paper);
  border-radius: 18px;
  margin-bottom: 40px;
  align-items: center;
}
@media (max-width: 720px){ .st-stats{ grid-template-columns: repeat(2, 1fr); padding: 18px 20px; } }
.st-stats .stat-lead{ grid-column: span 1; }
@media (max-width: 720px){ .st-stats .stat-lead{ grid-column: span 2; } }
.st-stats .stat-lead h4{
  font-family: 'Unbounded'; font-weight: 800; font-size: 20px; margin: 0 0 4px; letter-spacing: -.01em;
}
.st-stats .stat-lead p{ margin: 0; font-size: 12.5px; color: #d4cdba; }
.st-stats .sv{
  display: flex; flex-direction: column; gap: 4px;
  border-left: 1px solid rgba(250,247,240,.14); padding-left: 18px;
}
.st-stats .sv .v{ font-family: 'Unbounded'; font-weight: 800; font-size: 26px; letter-spacing: -.01em; color: var(--yellow); }
.st-stats .sv .l{ font-size: 11.5px; color: #b8b09d; text-transform: uppercase; letter-spacing: .06em; }

.st-rubrics{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.st-tags{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.st-pill{
  padding: 8px 16px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  transition: border-color .15s, background .15s, color .15s;
}
.st-pill:hover{ border-color: var(--line-strong); }
.st-pill.on{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.st-pill .n{ font-size: 11px; color: var(--muted); font-weight: 600; }
.st-pill.on .n{ color: #c8c1af; }
.st-pill.st-cat.red{ background: var(--red); color: #fff; border-color: var(--red); }
.st-pill.st-cat.red .n{ color: rgba(255,255,255,.78); }
.st-pill.st-cat.ink{ background: var(--ink); color: var(--yellow); border-color: var(--ink); }
.st-pill.st-cat.ink .n{ color: rgba(244,193,0,.7); }
.st-pill.st-tag{
  font-size: 12.5px; font-weight: 600; padding: 6px 12px;
  background: transparent; color: var(--muted); border-color: transparent;
}
.st-pill.st-tag .hash{ color: var(--red); font-weight: 800; margin-right: -2px; }
.st-pill.st-tag:hover{ color: var(--ink); border-color: var(--line); background: var(--paper); }
.st-pill.st-tag .n{ font-size: 10.5px; }

.st-cta-wrap{ display: flex; justify-content: center; margin: 36px 0 4px; }
.st-cta{
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 8px 8px 28px; border-radius: 999px;
  background: var(--yellow); color: var(--ink);
  font-family: 'Manrope'; font-weight: 800; font-size: 15px; line-height: 1;
  border: 0; cursor: pointer;
  box-shadow: 0 8px 22px rgba(244,193,0,.28);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.st-cta:hover{
  transform: translateY(-2px);
  background: var(--yellow-deep);
  box-shadow: 0 14px 30px rgba(244,193,0,.34);
}
.st-cta .lbl{ letter-spacing: -.005em; }
.st-cta .go{
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  transition: transform .18s ease;
}
.st-cta:hover .go{ transform: translateX(3px); }
@media (max-width: 560px){
  .st-cta{ padding: 6px 6px 6px 22px; font-size: 14px; gap: 12px; }
  .st-cta .go{ width: 34px; height: 34px; }
}

.st-row{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1080px){ .st-row{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .st-row{ grid-template-columns: 1fr; } }
.st-row .st{ height: auto; }
.st-row .st .th{ aspect-ratio: 4/3; flex: unset; }

/* ============================ CATALOG ============================ */
.catalog{
  margin-top: 56px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 36px 32px;
  position: relative; overflow: hidden;
}
@media (max-width: 720px){ .catalog{ padding: 24px 20px; } }
.catalog::before{
  content: ""; position: absolute; right: -50px; top: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: var(--yellow); opacity: .3;
}
.cat-head{
  display: flex; justify-content: space-between; align-items: flex-end; gap: 20px;
  margin-bottom: 24px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cat-head .lead h2{
  font-family: 'Unbounded'; font-weight: 800;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.02; letter-spacing: -.02em; margin: 0 0 6px;
}
.cat-head .lead p{ margin: 0; color: var(--muted); font-size: 14px; max-width: 44ch; }
.cat-head .add-btn{
  padding: 12px 20px; border-radius: 12px; background: var(--ink); color: var(--paper);
  font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.cat-head .add-btn:hover{ background: var(--ink-2); }

.cat-grid{
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
  position: relative; z-index: 2;
}
@media (max-width: 1080px){ .cat-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px){ .cat-grid{ grid-template-columns: repeat(2, 1fr); } }
.cat-card{
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px;
  display: flex; flex-direction: column; gap: 6px; min-height: 108px;
  min-width: 0;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.cat-card .cat-name{ overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
.cat-card .cat-cnt{ overflow-wrap: anywhere; }
.cat-card:hover{ background: var(--ink); color: var(--paper); border-color: transparent; transform: translateY(-2px); }
.cat-card:hover .cat-ico{ background: var(--yellow); color: var(--ink); }
.cat-card:hover .cat-cnt{ color: #c8c1af; }
.cat-ico{
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--paper); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
  transition: background .15s, color .15s;
}
.cat-card .cat-name{ font-family: 'Unbounded'; font-weight: 700; font-size: 14px; letter-spacing: -.005em; min-height: 2.4em; }
.cat-card .cat-cnt{ font-size: 11.5px; color: var(--muted); margin-top: auto; font-weight: 600; }

.cat-all{
  margin-top: 16px; text-align: center;
  position: relative; z-index: 2;
}
.cat-all a{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 12px;
  background: transparent; border: 1px solid var(--line-strong);
  font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.cat-all a:hover{ background: var(--paper-2); }

/* ============================ DISTRICTS ============================ */
.districts-grid{ display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 1080px){ .districts-grid{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 680px){ .districts-grid{ grid-template-columns: repeat(2, 1fr); } }
.d-card{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px;
  display: flex; flex-direction: column; gap: 6px; min-height: 96px;
  min-width: 0;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.d-card:hover{ background: var(--ink); color: var(--paper); border-color: transparent; transform: translateY(-2px); }
.d-card .d-name{ font-family: 'Unbounded'; font-weight: 700; font-size: 15px; letter-spacing: -.005em; overflow-wrap: break-word; word-break: keep-all; hyphens: auto; }
.d-card .d-stat{ font-size: 11.5px; color: var(--muted); margin-top: auto; display: flex; justify-content: space-between; }
.d-card:hover .d-stat{ color: rgba(250,247,240,.7); }

/* ============================ CTA ============================ */
.cta{
  margin: 56px 0 0;
  background: var(--ink); color: var(--paper);
  border-radius: 26px;
  padding: 44px 40px; position: relative; overflow: hidden;
}
@media (max-width: 720px){ .cta{ padding: 30px 22px; margin-top: 40px; } }
.cta::before{
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: var(--yellow);
}
.cta::after{
  content: ''; position: absolute; right: 100px; bottom: -60px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--red);
}
@media (max-width: 720px){
  .cta::before{ right: -120px; top: -120px; width: 160px; height: 160px; opacity: .55; }
  .cta::after{ right: -40px; bottom: -80px; width: 100px; height: 100px; opacity: .55; }
}
.cta .inner{ position: relative; z-index: 2; max-width: 640px; }
.cta h2{
  font-family: 'Unbounded'; font-weight: 800;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.02; margin: 0 0 10px; letter-spacing: -.02em;
}
.cta p{ color: #d4cdba; font-size: 15px; margin: 0 0 20px; }
.cta .nl-form{
  display: flex; gap: 8px; flex-wrap: wrap; align-items: stretch;
}
.cta .nl-form input{
  flex: 1 1 240px; min-width: 0;
  padding: 14px 18px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08); color: var(--paper);
  font: inherit; font-size: 15px;
  outline: none;
}
.cta .nl-form input::placeholder{ color: rgba(255,255,255,.55); }
.cta .nl-form input:focus{ border-color: var(--yellow); background: rgba(255,255,255,.12); }
.cta .btn-y{
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  padding: 14px 22px; border-radius: 12px; border: 0;
  font-family: 'Manrope'; font-weight: 800; font-size: 15px;
  cursor: pointer; white-space: nowrap;
}
.cta .btn-y:hover{ background: var(--yellow-deep); }
.cta .nl-fineprint{
  margin: 12px 0 0; font-size: 12px; color: rgba(255,255,255,.55);
}
.cta .nl-msg{
  flex: 0 0 100%;
  font-size: 13px; line-height: 1.4;
  margin-top: 4px;
}
.cta .nl-msg:empty{ display: none; }
.cta .nl-msg.is-error{ color: #ffb3b3; }
.cta .nl-msg.is-success{ color: var(--yellow); }

/* ============================ ARCHIVE FALLBACK (used by index.php) ============================ */
.archive-list{ display: grid; gap: 18px; }
.archive-item{
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .15s, border-color .15s;
}
.archive-item:hover{ transform: translateY(-2px); border-color: var(--line-strong); }
.archive-link{
  display: grid; grid-template-columns: 240px 1fr; gap: 18px;
  align-items: center; padding: 14px;
}
@media (max-width: 720px){ .archive-link{ grid-template-columns: 1fr; } }
.archive-thumb img{ border-radius: 12px; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; }
.archive-body h3{ font-family: 'Unbounded'; font-weight: 700; font-size: 22px; margin: 0 0 8px; }
.archive-body .meta{ display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 12px; margin: 0 0 8px; }
.archive-body .meta .sep{ width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
