:root {
  --paper: #f7f5f1;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #6d6b68;
  --line: #dedbd4;
  --red: #d71920;
  --red-dark: #a80f15;
  --soft-red: #fff0f0;
  --charcoal: #222220;
  --radius: 22px;
  --shadow: 0 20px 55px rgba(37, 31, 25, .09);
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.search-open { overflow: hidden; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.prototype-bar { background: var(--charcoal); color: #fff; font-size: 12px; letter-spacing: .03em; }
.prototype-bar__inner { min-height: 30px; display: flex; align-items: center; justify-content: space-between; }
.prototype-bar span { display: inline-flex; align-items: center; gap: 8px; }
.prototype-bar i { width: 7px; height: 7px; border-radius: 50%; background: #59db8a; box-shadow: 0 0 0 4px rgba(89, 219, 138, .13); }
.prototype-bar__hint { color: #bdbdb9; }

.site-header { position: sticky; top: 0; z-index: 30; background: rgba(247, 245, 241, .93); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(222, 219, 212, .75); }
.header-main { height: 86px; display: flex; align-items: center; gap: 20px; }
.brand img { width: 190px; height: auto; }
.header-brief { min-width: 0; flex: 1; height: 48px; display: grid; grid-template-columns: auto minmax(0,1fr) auto; align-items: center; gap: 15px; margin-left: 14px; padding: 0 13px 0 16px; border-left: 1px solid var(--line); }
.header-brief__label { display: inline-flex; align-items: center; gap: 8px; color: var(--red); font-size: 9px; font-weight: 950; letter-spacing: .15em; }
.header-brief__label i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(215,25,32,.1); animation: pulse 1.8s infinite; }
.header-brief__story { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.header-brief__story strong { overflow: hidden; font-family: Georgia, serif; font-size: 15px; font-weight: 500; line-height: 1.16; text-overflow: ellipsis; white-space: nowrap; }
.header-brief__story small { color: var(--muted); font-size: 9px; font-weight: 750; }
.header-brief__story:hover strong { color: var(--red); }
.header-brief__controls { display: flex; gap: 5px; }
.header-brief__controls button { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; }
.header-brief__controls button:hover { border-color: var(--red); color: var(--red); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.weather-pill { border: 0; background: #ebe8e2; border-radius: 999px; height: 48px; padding: 0 17px; display: grid; grid-template-columns: auto auto; column-gap: 9px; align-items: center; color: var(--ink); cursor: pointer; text-align: left; }
.weather-pill span { grid-row: 1 / 3; font-size: 10px; font-weight: 900; letter-spacing: .14em; color: var(--red); }
.weather-pill strong { align-self: end; font-size: 15px; line-height: 1.05; }
.weather-pill small { align-self: start; color: var(--muted); font-size: 10px; }
.icon-btn { width: 48px; height: 48px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); cursor: pointer; }
.icon-btn:hover { border-color: var(--red); }
.icon-btn svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.menu-toggle { display: none; gap: 4px; align-content: center; }
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); transition: .25s; }
.primary-nav { position: relative; border-top: 1px solid rgba(222, 219, 212, .75); }
.nav-inner { height: 50px; display: flex; align-items: stretch; justify-content: space-between; gap: 17px; }
.nav-item { position: static; display: flex; align-items: stretch; }
.nav-trigger, .nav-direct { position: relative; display: inline-flex; align-items: center; flex: 0 0 auto; border: 0; background: transparent; color: var(--ink); padding: 0; font-size: 12px; font-weight: 850; letter-spacing: .01em; cursor: pointer; }
.nav-trigger::after, .nav-direct::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 3px; background: var(--red); transition: right .2s; }
.nav-trigger:hover::after, .nav-trigger.active::after, .nav-item.open > .nav-trigger::after, .nav-direct:hover::after, .nav-direct.active::after { right: 0; }
.chevron { margin-left: 5px; color: #8b8984; font-size: 13px; transition: transform .2s; }
.nav-item.open > .nav-trigger .chevron { transform: rotate(180deg); }
.mega-menu { position: absolute; top: 100%; left: 0; right: 0; z-index: 60; padding: 16px 0 22px; background: rgba(255,255,255,.985); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 24px 45px rgba(24,20,16,.12); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.nav-item.open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
@media (hover:hover) and (min-width:721px) {
  .nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.mega-menu__inner { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 18px; align-items: stretch; }
.mega-feature { min-height: 176px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: end; padding: 22px; border-radius: 17px; background-color: #252522; background-position: center; background-repeat: no-repeat; background-size: contain; color: white; isolation: isolate; }
.mega-feature::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(10,10,10,.82), rgba(10,10,10,.1)); }
.mega-feature--live { background-image: url('../images/story-6.jpg'); }
.mega-feature--riga { background-image: url('../images/story-2.jpg'); }
.mega-feature--retro { background-image: url('../images/story-3.jpg'); }
.mega-feature span, .mega-brief span { margin-bottom: 6px; color: #ff7d81; font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.mega-feature strong { font-family: Georgia, serif; font-size: 27px; font-weight: 500; line-height: 1; }
.mega-feature small, .mega-brief small { margin-top: 8px; color: rgba(255,255,255,.78); font-size: 10px; font-weight: 750; }
.mega-group { padding: 15px 8px 8px; }
.mega-group p { margin: 0 0 9px; color: #9a9791; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.mega-group a { display: flex; align-items: center; justify-content: space-between; min-height: 37px; padding: 4px 0; border-bottom: 1px solid #ece9e3; font-family: Georgia, serif; font-size: 17px; }
.mega-group a::after { content: "→"; color: #b6b2aa; font-family: Inter, sans-serif; font-size: 12px; transition: transform .2s, color .2s; }
.mega-group a:hover { color: var(--red); }
.mega-group a:hover::after { color: var(--red); transform: translateX(3px); }
.mega-menu__inner--compact { grid-template-columns: 1fr 1fr 1.1fr; }
.mega-brief { min-height: 176px; display: flex; flex-direction: column; justify-content: end; padding: 22px; border-radius: 17px; background: linear-gradient(135deg, #232321, #3b3a37); color: white; }
.mega-brief strong { font-family: Georgia, serif; font-size: 25px; line-height: 1.08; font-weight: 500; }
.mega-brief--food { background: linear-gradient(135deg, #8a4018, #d98135); }
.mega-brief--events { background: linear-gradient(135deg, #7d1015, #d71920); }
.mega-brief--latvia { background: linear-gradient(135deg, #5f4b36, #a78058); }

/* WordPress primary-menu dropdowns: preserve the real admin menu tree in Premium UI. */
.mega-menu__inner--wp { grid-template-columns: minmax(230px,.75fr) minmax(0,2.25fr); }
.mega-group--wp { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 0 24px; align-content: start; }
.premium-menu-link { min-width: 0; }
.premium-menu-link > a { width: 100%; }
.premium-menu-link--parent { grid-row: span 2; padding-bottom: 6px; }
.premium-menu-link--parent > a { color: var(--red); font-weight: 700; }
.premium-submenu { padding: 0 0 8px 14px; border-left: 2px solid #ece9e3; }
.premium-submenu .premium-menu-link > a { min-height: 31px; font-family: Inter, sans-serif; font-size: 12px; font-weight: 750; }
.premium-submenu .premium-menu-link > a::after { content: "→"; }
.live-dot { display: inline-block; width: 7px; height: 7px; background: var(--red); border-radius: 50%; margin-right: 8px; box-shadow: 0 0 0 4px rgba(215, 25, 32, .12); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(215, 25, 32, 0); } }

main { min-height: 70vh; }
.page { animation: pageIn .35s ease both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } }
.eyebrow { margin: 0 0 12px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(29px, 4vw, 48px); font-weight: 600; letter-spacing: -.035em; }
.section-heading p { max-width: 500px; margin: 0; color: var(--muted); line-height: 1.55; }
.text-link { color: var(--red); font-size: 13px; font-weight: 800; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }

.home-hero { padding: 26px 0 62px; }
.day-strip { display: grid; grid-template-columns: 1.15fr minmax(245px, 2.15fr) repeat(4, minmax(112px, 1fr)) auto; border: 1px solid var(--line); background: var(--surface); border-radius: 16px; overflow: hidden; margin-bottom: 20px; }
.day-strip__item { min-height: 72px; padding: 13px 18px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.day-strip__item span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.day-strip__item strong { margin-top: 4px; font-size: 14px; }
.day-strip__item--namedays { min-width: 0; }
.day-strip__item--namedays strong { white-space: normal; line-height: 1.25; overflow-wrap: anywhere; }
.day-strip__item--date { background: var(--red); color: white; }
.day-strip__item--date span { color: rgba(255,255,255,.75); }
.day-strip__arrow { border: 0; width: 68px; background: var(--surface); color: var(--red); cursor: pointer; font-size: 20px; }
.day-strip__arrow:hover { background: var(--soft-red); }

.editorial-strip { display: grid; grid-template-columns: 1fr 1.06fr 1.06fr; gap: 14px; margin: 0 0 20px; }
.editorial-card { min-width: 0; min-height: 158px; position: relative; display: flex; align-items: center; gap: 18px; overflow: hidden; padding: 24px; border: 1px solid #e3ded4; border-radius: 20px; background: #fffaf1; color: var(--ink); text-align: left; cursor: pointer; box-shadow: 0 8px 22px rgba(37,31,25,.035); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.editorial-card:hover { transform: translateY(-3px); border-color: #d9c8ad; box-shadow: 0 15px 34px rgba(37,31,25,.08); }
.editorial-card--quote { background: linear-gradient(135deg, #fff, #f8f5fb); }
.editorial-card--food { justify-content: space-between; background: linear-gradient(135deg, #fff, #fff6e9); }
.editorial-card--today { background: linear-gradient(135deg, #fff, #fff8ef); }
.editorial-card--today .editorial-card__copy em { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.editorial-card__icon { width: 72px; height: 72px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid #f0d49b; border-radius: 50%; background: white; font-size: 32px; }
.editorial-card__copy { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.editorial-card__copy small { margin-bottom: 7px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.editorial-card__copy strong { font-family: Georgia, serif; font-size: 24px; font-weight: 600; line-height: 1; }
.editorial-card__copy em { margin-top: 12px; font-family: Georgia, serif; font-size: 16px; line-height: 1.42; font-style: normal; }
.editorial-card__copy > span:not(.card-link) { margin-top: 8px; color: var(--muted); font-family: Georgia, serif; font-size: 14px; font-style: italic; }
.editorial-card__arrow { align-self: end; margin-left: auto; color: var(--red); font-size: 20px; }
.quote-mark { flex: 0 0 auto; align-self: flex-start; height: 56px; color: var(--red); font-family: Georgia, serif; font-size: 72px; line-height: 1; }
.card-link { margin-top: 15px; color: var(--red); font-size: 11px; font-weight: 900; }
.editorial-card--food img { width: 126px; height: 96px; flex: 0 0 auto; border-radius: 18px; background: #f1ede6; object-fit: contain; }

.hero-card { min-height: 570px; position: relative; overflow: hidden; border-radius: 28px; background: #d6d2cb; box-shadow: var(--shadow); isolation: isolate; }
.hero-card.hero-card--banner { min-height: 0; margin: 0; aspect-ratio: 1397 / 581; background: white; }
.hero-card--banner::after { display: none; }
.hero-card--banner .hero-card__image { object-fit: contain; }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.9) 35%, rgba(255,255,255,.3) 62%, rgba(255,255,255,0) 82%); z-index: -1; }
.hero-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; z-index: -2; }
.hero-card__content { width: min(650px, 63%); min-height: 570px; padding: clamp(34px, 6vw, 78px); display: flex; flex-direction: column; justify-content: end; color: var(--ink); }
.hero-label { width: fit-content; margin-bottom: 18px; padding: 8px 12px; background: var(--red); border-radius: 999px; color: white; font-size: 11px; font-weight: 900; letter-spacing: .09em; }
.hero-card h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 6.2vw, 82px); line-height: .98; letter-spacing: -.045em; font-weight: 500; text-wrap: balance; }
.hero-card p { max-width: 540px; margin: 22px 0 28px; color: #5d5b57; font-size: 17px; line-height: 1.55; }
.primary-btn { width: fit-content; border: 0; border-radius: 999px; background: var(--red); color: white; padding: 15px 22px; font-weight: 850; font-size: 13px; cursor: pointer; transition: transform .2s, background .2s; }
.primary-btn:hover { background: var(--red-dark); transform: translateY(-2px); }
.hero-side-note { position: absolute; right: 25px; bottom: 25px; width: 230px; background: rgba(255,255,255,.92); backdrop-filter: blur(18px); border-radius: 18px; padding: 20px; color: var(--ink); }
.hero-side-note span { display: block; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.hero-side-note strong { display: block; margin-top: 7px; font-family: Georgia, serif; font-size: 22px; line-height: 1.15; }

.daily-features { margin: 58px 0 28px; }
.daily-features__head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 22px; }
.daily-features__head h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -.035em; }
.daily-features__head > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.daily-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.daily-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 21px; background: var(--surface); box-shadow: 0 12px 34px rgba(37,31,25,.045); transition: transform .25s ease, box-shadow .25s ease; }
.daily-card:hover { transform: translateY(-4px); box-shadow: 0 20px 46px rgba(37,31,25,.1); }
.daily-card__main { flex: 1; }
.daily-card__media { height: 224px; position: relative; display: block; overflow: hidden; background: #d6d2cb; }
.daily-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.35), transparent 52%); }
.daily-card__media img { width: 100%; height: 100%; object-fit: contain; }
.daily-card__number { position: absolute; z-index: 1; right: 16px; bottom: 12px; color: white; font-family: Georgia, serif; font-size: 31px; font-style: italic; }
.daily-card__body { min-height: 152px; display: flex; flex-direction: column; padding: 21px 22px 18px; }
.daily-card__body small { margin-bottom: 9px; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.daily-card__body strong { font-family: Georgia, serif; font-size: 23px; font-weight: 500; line-height: 1.13; }
.daily-card__body > span { margin-top: auto; padding-top: 15px; color: var(--muted); font-size: 11px; font-weight: 650; }
.daily-card__archive { display: flex; align-items: center; justify-content: space-between; padding: 15px 22px; border-top: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 850; }
.daily-card__archive span { color: var(--red); font-size: 17px; transition: transform .2s ease; }
.daily-card__archive:hover { color: var(--red); background: #fffafa; }
.daily-card__archive:hover span { transform: translateX(4px); }

.live-ribbon { margin-top: 18px; display: grid; grid-template-columns: 190px 1fr; background: var(--charcoal); color: white; border-radius: 18px; overflow: hidden; }
.live-ribbon__title { padding: 20px 24px; display: flex; flex-direction: column; justify-content: center; background: var(--red); }
.live-ribbon__title span { font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.live-ribbon__title strong { font-family: Georgia, serif; font-size: 24px; font-weight: 500; }
.timeline { display: flex; overflow-x: auto; scrollbar-width: none; }
.timeline::-webkit-scrollbar { display: none; }
.timeline button { min-width: 170px; border: 0; border-right: 1px solid rgba(255,255,255,.09); padding: 16px 20px; color: #a9a9a5; background: transparent; text-align: left; cursor: pointer; }
.timeline button:hover, .timeline button.active { color: white; background: rgba(255,255,255,.06); }
.timeline time { display: block; margin-bottom: 5px; color: inherit; font-size: 11px; font-weight: 900; }
.timeline span { display: block; color: inherit; font-size: 12px; line-height: 1.35; }

.latest-news-section { padding: 78px 0 86px; background: #fff; }
.latest-news-heading { align-items: center; margin-bottom: 30px; }
.section-heading__aside { max-width: 490px; display: flex; align-items: center; gap: 24px; }
.section-heading__aside p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.news-image-frame { display: grid; place-items: center; overflow: hidden; background: #f0ede7; }
.news-image-frame img { width: 100%; height: 100%; object-fit: contain; }
.news-feature-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(350px, .8fr); gap: 18px; }
.news-feature { min-height: 614px; overflow: hidden; display: grid; grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr); border: 1px solid var(--line); border-radius: 24px; background: #fbfaf8; box-shadow: 0 18px 50px rgba(37,31,25,.07); transition: transform .22s, box-shadow .22s; }
.news-feature:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(37,31,25,.11); }
.news-feature__image { min-height: 100%; padding: 18px; border-right: 1px solid var(--line); }
.news-feature__body { display: flex; flex-direction: column; justify-content: end; padding: 34px 32px; }
.news-feature__body small { margin-bottom: 16px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.news-feature__body strong { font-family: Georgia, serif; font-size: clamp(30px, 3.5vw, 47px); font-weight: 500; letter-spacing: -.03em; line-height: 1.04; }
.news-feature__body > span { margin-top: 22px; color: var(--muted); font-size: 12px; }
.news-feature__body i { margin-top: 25px; color: var(--red); font-size: 12px; font-style: normal; font-weight: 850; }
.news-feature-list { display: grid; grid-template-rows: repeat(3, 1fr); gap: 10px; }
.news-compact { min-height: 198px; position: relative; display: grid; grid-template-columns: 160px 1fr 22px; align-items: center; gap: 17px; padding: 13px; border: 1px solid var(--line); border-radius: 19px; background: #fbfaf8; transition: border-color .2s, transform .2s, box-shadow .2s; }
.news-compact:hover { transform: translateX(-3px); border-color: #c8c2b8; box-shadow: 0 12px 28px rgba(37,31,25,.07); }
.news-compact__image { width: 160px; height: 170px; padding: 8px; border-radius: 13px; }
.news-compact__body { min-width: 0; display: flex; flex-direction: column; align-self: stretch; justify-content: center; }
.news-compact__body small, .news-grid-card__body small { margin-bottom: 8px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.news-compact__body strong { font-family: Georgia, serif; font-size: 20px; font-weight: 600; line-height: 1.13; }
.news-compact__body span, .news-grid-card__body span { margin-top: 12px; color: var(--muted); font-size: 10px; }
.news-compact > i, .news-grid-card > i { color: var(--red); font-style: normal; }
.news-card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 20px; }
.news-grid-card { min-width: 0; position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: #fbfaf8; transition: transform .22s, box-shadow .22s, border-color .22s; }
.news-grid-card:hover { transform: translateY(-4px); border-color: #c8c2b8; box-shadow: 0 15px 36px rgba(37,31,25,.09); }
.news-grid-card__image { height: 235px; padding: 10px; border-bottom: 1px solid var(--line); }
.news-grid-card__body { min-height: 150px; display: flex; flex: 1; flex-direction: column; padding: 19px 40px 18px 19px; }
.news-grid-card__body strong { font-family: Georgia, serif; font-size: 20px; font-weight: 600; line-height: 1.15; }
.news-grid-card__body span { margin-top: auto; padding-top: 16px; }
.news-grid-card > i { position: absolute; right: 17px; bottom: 18px; font-size: 16px; }
.section-more { min-height: 56px; margin-top: 18px; display: flex; align-items: center; justify-content: space-between; padding: 0 22px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: 13px; font-weight: 850; }
.section-more i { color: var(--red); font-size: 19px; font-style: normal; }
.section-more:hover { border-color: var(--red); color: var(--red); }

.retro-news-section { padding: 82px 0 90px; background: #ece9e3; }
.retro-news-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 27px; }
.retro-news-heading h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(40px, 6vw, 70px); font-weight: 500; letter-spacing: -.05em; line-height: .95; }
.retro-news-heading p:not(.eyebrow) { margin: 11px 0 0; color: var(--muted); font-size: 14px; }
.retro-news-link { flex: 0 0 auto; padding: 12px 16px; border: 1px solid #cbc5bb; border-radius: 999px; background: rgba(255,255,255,.55); font-size: 12px; font-weight: 850; }
.retro-news-link:hover { border-color: var(--red); color: var(--red); }
.retro-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.retro-news-card { overflow: hidden; display: flex; flex-direction: column; border: 1px solid #d8d2c8; border-radius: 19px; background: #faf9f6; transition: transform .22s, box-shadow .22s; }
.retro-news-card:hover { transform: translateY(-4px); box-shadow: 0 17px 38px rgba(37,31,25,.1); }
.retro-news-card__image { height: 270px; display: grid; place-items: center; padding: 12px; border-bottom: 1px solid #ddd7cd; background: #e2dfd9; }
.retro-news-card__image img { width: 100%; height: 100%; object-fit: contain; }
.retro-news-card__body { min-height: 135px; display: flex; flex-direction: column; padding: 20px 21px; }
.retro-news-card__body small { margin-bottom: 8px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.retro-news-card__body strong { font-family: Georgia, serif; font-size: 23px; font-weight: 600; line-height: 1.13; }
.retro-news-card__body span { margin-top: auto; padding-top: 14px; color: var(--muted); font-size: 10px; }

.stories-section { padding: 68px 0; }
.story-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; grid-template-rows: repeat(2, 300px); gap: 16px; }
.story-card { position: relative; overflow: hidden; border-radius: var(--radius); background: #ddd; cursor: pointer; }
.story-card:first-child { grid-row: 1 / 3; }
.story-card img { width: 100%; height: 100%; object-fit: contain; }
.story-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,10,10,.82), transparent 64%); }
.story-card__content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 24px; color: white; }
.story-card__tag { display: inline-block; margin-bottom: 8px; color: #fff; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.story-card h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(20px, 2vw, 31px); line-height: 1.12; font-weight: 500; }
.story-card:first-child h3 { font-size: clamp(30px, 3.3vw, 50px); }
.story-card p { margin: 10px 0 0; color: rgba(255,255,255,.74); font-size: 12px; }

.channels-section { padding: 68px 0 90px; background: #ebe8e2; }
.channel-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr; gap: 16px; }
.channel-card { min-height: 360px; display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.channel-card__visual { position: relative; height: 220px; overflow: hidden; background: #d6d2cb; }
.channel-card__visual img { width: 100%; height: 100%; object-fit: contain; }
.channel-card__body { padding: 22px; display: flex; flex: 1; flex-direction: column; }
.channel-card__body h3 { margin: 3px 0 9px; font-family: Georgia, serif; font-weight: 500; font-size: 27px; }
.channel-card__body p { margin: 0 0 18px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.channel-card__body .text-link { margin-top: auto; }
.channel-card--dark { background: var(--charcoal); color: white; }
.channel-card--dark .channel-card__body p { color: #aaa9a5; }
.mini-number { position: absolute; right: 16px; top: 16px; padding: 8px 10px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--red); font-size: 11px; font-weight: 900; }

.category-brand-banner { padding: 28px 0 0; }
.category-brand-banner__frame { overflow: hidden; border: 1px solid #e1ddd5; border-radius: 28px; background: #fff; box-shadow: 0 18px 55px rgba(37,31,25,.08); }
.category-brand-banner__frame img { width: 100%; height: auto; object-fit: contain; }
.news-category-head { padding: 48px 0 28px; }
.news-category-title { display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 70px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.news-category-title h1 { margin: 4px 0 0; font-family: Georgia, serif; font-size: clamp(68px, 9vw, 118px); line-height: .84; letter-spacing: -.065em; font-weight: 500; }
.news-category-title > p { max-width: 520px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.news-category-filters { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 18px; }
.news-category-filters button { min-height: 40px; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); cursor: pointer; font-size: 12px; font-weight: 800; }
.news-category-filters button:hover, .news-category-filters button.active { border-color: var(--ink); background: var(--ink); color: white; }

.news-category-content { padding: 24px 0 98px; background: #fff; }
.news-category-lead { overflow: hidden; min-height: 540px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr); border: 1px solid var(--line); border-radius: 25px; background: #faf9f7; box-shadow: 0 18px 52px rgba(37,31,25,.07); }
.news-category-lead__image { min-width: 0; height: 540px; display: grid; place-items: center; padding: 14px; border-right: 1px solid var(--line); background: #eeeae4; }
.news-category-lead__image img { width: 100%; height: 100%; object-fit: contain; }
.news-category-lead__body { display: flex; flex-direction: column; justify-content: center; align-items: start; padding: clamp(32px, 5vw, 58px); }
.news-category-lead__body small { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.news-category-lead__body strong { margin: 14px 0 18px; font-family: Georgia, serif; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.02; letter-spacing: -.035em; font-weight: 500; }
.news-category-lead__body p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.news-category-lead__body > span { color: var(--muted); font-size: 12px; }
.news-category-lead__body i { margin-top: 28px; color: var(--red); font-size: 13px; font-style: normal; font-weight: 850; }
.news-category-lead:hover .news-category-lead__body strong { color: var(--red); }

.news-category-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 34px; margin-top: 34px; align-items: start; }
.news-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.category-news-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: #faf9f7; transition: transform .2s, border-color .2s, box-shadow .2s; }
.category-news-card.is-filtered-out { display: none; }
.category-news-card:hover { transform: translateY(-4px); border-color: #c9c3bb; box-shadow: 0 14px 34px rgba(37,31,25,.08); }
.category-news-card__image { height: 310px; display: grid; place-items: center; padding: 8px; border-bottom: 1px solid var(--line); background: #eeeae4; }
.category-news-card__image img { width: 100%; height: 100%; object-fit: contain; }
.category-news-card__body { position: relative; min-height: 174px; display: flex; flex-direction: column; align-items: start; padding: 18px 42px 17px 18px; }
.category-news-card__body small { color: var(--red); font-size: 12px; font-weight: 900; }
.category-news-card__body strong { margin-top: 8px; font-family: Georgia, serif; font-size: 21px; line-height: 1.12; font-weight: 600; }
.category-news-card__body > span { margin-top: auto; padding-top: 15px; color: var(--muted); font-size: 12px; }
.category-news-card__body i { position: absolute; right: 17px; bottom: 17px; color: var(--red); font-size: 17px; font-style: normal; }
.news-category-sidebar { position: sticky; top: 164px; display: grid; gap: 12px; }
.news-side-card { overflow: hidden; padding: 25px; border: 1px solid var(--line); border-radius: 19px; background: #faf9f7; }
.news-side-card > span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .11em; }
.news-side-card h2 { margin: 10px 0 12px; font-family: Georgia, serif; font-size: 29px; line-height: 1.02; font-weight: 500; }
.news-side-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.news-side-card > a { min-height: 45px; display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding: 0 14px; border: 1px solid var(--ink); border-radius: 999px; font-size: 12px; font-weight: 850; }
.news-side-card > a i { color: var(--red); font-style: normal; }
.news-side-card > a:hover { background: var(--ink); color: white; }
.news-side-card--collab { background: linear-gradient(145deg, #fff 0%, #fff0ef 100%); }
.news-side-card--support { background: #f1eee8; }
.news-side-card--social { background: #fff; }
.news-side-socials { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 18px; }
.news-side-socials a { min-width: 0; display: flex; align-items: center; gap: 7px; padding: 8px; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 750; }
.news-side-socials i { width: 28px; height: 28px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: #eeeae4; color: var(--red); font-style: normal; font-weight: 900; }
.news-side-socials a:hover { border-color: var(--red); color: var(--red); }
.news-pagination { display: flex; align-items: center; gap: 7px; margin-top: 28px; }
.news-pagination button, .news-pagination span { width: 43px; height: 43px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 12px; font-weight: 850; }
.news-pagination button { cursor: pointer; }
.news-pagination button.active, .news-pagination button:hover { border-color: var(--ink); background: var(--ink); color: white; }

.category-hero { padding: 56px 0 36px; }
.breadcrumbs { display: flex; gap: 9px; color: var(--muted); font-size: 12px; margin-bottom: 24px; }
.breadcrumbs a:hover { color: var(--red); }
.category-title { display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: end; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.category-title h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(60px, 9vw, 126px); line-height: .88; font-weight: 500; letter-spacing: -.06em; }
.category-title p { margin: 0; max-width: 520px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.filter-row { padding: 18px 0 0; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-row button { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); padding: 10px 14px; cursor: pointer; font-size: 12px; font-weight: 750; }
.filter-row button.active, .filter-row button:hover { background: var(--ink); border-color: var(--ink); color: white; }

.category-feed { padding: 30px 0 90px; }
.category-layout { display: grid; grid-template-columns: 1fr 320px; gap: 46px; }
.lead-story { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--surface); border-radius: var(--radius); overflow: hidden; box-shadow: 0 12px 40px rgba(37,31,25,.06); }
.lead-story img { width: 100%; height: 100%; min-height: 420px; background: #efede8; object-fit: contain; }
.lead-story__body { padding: 38px; display: flex; flex-direction: column; justify-content: center; }
.lead-story h2 { margin: 0 0 15px; font-family: Georgia, serif; font-weight: 500; font-size: clamp(30px, 3.5vw, 47px); line-height: 1.04; letter-spacing: -.03em; }
.lead-story p { margin: 0 0 22px; color: var(--muted); line-height: 1.6; }
.feed-list { margin-top: 18px; }
.feed-item { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.feed-item img { width: 220px; height: 150px; padding: 5px; border-radius: 16px; background: #efede8; object-fit: contain; }
.feed-item h3 { margin: 8px 0; font-family: Georgia, serif; font-size: 26px; font-weight: 500; line-height: 1.1; }
.feed-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.load-more { width: 100%; margin-top: 24px; padding: 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-weight: 800; cursor: pointer; }
.load-more:hover { background: var(--surface); }
.sidebar { position: sticky; top: 170px; align-self: start; display: grid; gap: 14px; }
.side-card { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); padding: 22px; }
.side-card--red { border: 0; background: var(--red); color: white; }
.side-card h3 { margin: 5px 0 10px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.side-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.side-card--red p { color: rgba(255,255,255,.78); }
.side-card a { display: inline-block; margin-top: 17px; font-size: 12px; font-weight: 850; }

.collaboration-page { background: var(--paper); }
.collaboration-page .eyebrow { font-size: 12px; }
.collab-banner { padding: 28px 0 0; }
.collab-banner__frame { overflow: hidden; border: 1px solid #e1ddd5; border-radius: 28px; background: #fff; box-shadow: 0 18px 55px rgba(37,31,25,.08); }
.collab-banner__frame img { width: 100%; height: auto; object-fit: contain; }
.collab-hero { padding: 38px 0 82px; }
.collab-hero .breadcrumbs { margin-bottom: 38px; }
.collab-hero__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(330px, .6fr); align-items: stretch; gap: 42px; }
.collab-hero__copy { padding: 12px 0 4px; }
.collab-hero__copy h1 { max-width: 800px; margin: 9px 0 24px; font-family: Georgia, serif; font-size: clamp(54px, 7.2vw, 92px); line-height: .94; letter-spacing: -.055em; font-weight: 500; text-wrap: balance; }
.collab-hero__copy > p:not(.eyebrow) { max-width: 700px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.collab-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 31px; }
.collab-button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0 21px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 850; cursor: pointer; }
.collab-button--primary { border-color: var(--red); background: var(--red); color: white; }
.collab-button--light { background: #fff; }
.collab-button--primary:hover { border-color: var(--red-dark); background: var(--red-dark); }
.collab-button--light:hover { background: var(--ink); color: white; }
.collab-contact-card { position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 34px; border: 1px solid #ddd7cf; border-radius: 24px; background: #fff; box-shadow: 0 17px 45px rgba(37,31,25,.07); }
.collab-contact-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--red); }
.collab-contact-card > span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.collab-contact-card h2 { margin: 10px 0 13px; font-family: Georgia, serif; font-size: 34px; line-height: 1.02; font-weight: 500; }
.collab-contact-card p { margin: 0 0 23px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.collab-contact-card a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 850; }
.collab-contact-card a i { color: var(--red); font-style: normal; font-size: 18px; }
.collab-contact-card button { width: fit-content; margin-top: 15px; padding: 0; border: 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 12px; font-weight: 800; }
.collab-contact-card button:hover { color: var(--red); }

.collab-proof { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.collab-proof__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.collab-proof__grid > div { min-width: 0; min-height: 144px; display: flex; flex-direction: column; justify-content: center; padding: 25px 26px; border-right: 1px solid var(--line); }
.collab-proof__grid > div:first-child { border-left: 1px solid var(--line); }
.collab-proof small { margin-bottom: 13px; color: var(--red); font-size: 12px; font-weight: 900; }
.collab-proof strong { font-family: Georgia, serif; font-size: 21px; font-weight: 600; }
.collab-proof span { margin-top: 7px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.collab-intro { padding: 94px 0 100px; background: #fff; }
.collab-intro__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.collab-section-title h2, .collab-heading h2 { margin: 7px 0 0; font-family: Georgia, serif; font-size: clamp(40px, 5vw, 62px); line-height: 1; letter-spacing: -.045em; font-weight: 500; text-wrap: balance; }
.collab-intro__text { padding-top: 19px; }
.collab-intro__text p { margin: 0 0 20px; color: #4e4c48; font-family: Georgia, serif; font-size: 20px; line-height: 1.65; }
.collab-channels { margin-top: 62px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.collab-channels article { min-height: 238px; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #faf9f7; transition: transform .2s, box-shadow .2s, border-color .2s; }
.collab-channels article:hover { transform: translateY(-4px); border-color: #c9c3bb; box-shadow: 0 14px 36px rgba(37,31,25,.07); }
.collab-channels span { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.collab-channels h3 { margin: auto 0 10px; font-family: Georgia, serif; font-size: 25px; line-height: 1.05; font-weight: 600; }
.collab-channels p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.collab-packages { scroll-margin-top: 145px; padding: 94px 0 104px; }
.collab-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); align-items: end; gap: 55px; margin-bottom: 38px; }
.collab-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.collab-package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.collab-package { position: relative; min-height: 510px; display: flex; flex-direction: column; padding: 34px; border: 1px solid #dad6cf; border-radius: 22px; background: #fff; box-shadow: 0 12px 35px rgba(37,31,25,.04); }
.collab-package--featured { border: 2px solid var(--red); padding: 33px; }
.collab-package--partner { background: linear-gradient(145deg, #fff 0%, #f4ede8 100%); }
.collab-package__badge { position: absolute; right: 24px; top: 24px; padding: 8px 10px; border-radius: 999px; background: var(--red); color: white; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.collab-package__top { min-height: 94px; display: flex; flex-direction: column; gap: 8px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.collab-package__top span { color: var(--red); font-size: 13px; font-weight: 950; letter-spacing: .13em; }
.collab-package__top strong { max-width: 380px; font-family: Georgia, serif; font-size: 32px; line-height: 1; font-weight: 500; }
.collab-package ul { display: grid; gap: 13px; margin: 26px 0 30px; padding: 0; list-style: none; }
.collab-package li { position: relative; padding-left: 25px; color: #4e4c48; font-size: 14px; line-height: 1.45; }
.collab-package li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }
.collab-package > a { min-height: 50px; display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding: 0 17px; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 850; }
.collab-package > a i { color: var(--red); font-size: 17px; font-style: normal; }
.collab-package > a:hover { background: var(--ink); color: white; }
.collab-package--featured > a { border-color: var(--red); background: var(--red); color: white; }
.collab-package--featured > a i { color: white; }
.collab-package--featured > a:hover { background: var(--red-dark); }

.collab-process { padding: 94px 0 102px; border-top: 1px solid var(--line); background: #fff; }
.collab-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.collab-steps article { position: relative; min-height: 230px; padding: 34px 28px 25px 0; }
.collab-steps article::before { content: ""; position: absolute; width: 9px; height: 9px; left: 0; top: -5px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 6px #fff; }
.collab-steps span { display: block; color: #c6c1b8; font-family: Georgia, serif; font-size: 45px; }
.collab-steps h3 { margin: 23px 0 9px; font-family: Georgia, serif; font-size: 24px; font-weight: 600; }
.collab-steps p { max-width: 235px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.collab-options { padding: 96px 0; }
.collab-options__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; align-items: stretch; }
.collab-barter, .collab-materials { padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.collab-barter { background: linear-gradient(140deg, #fff 0%, #fff5f4 100%); }
.collab-barter h2, .collab-materials h2 { margin: 8px 0 19px; font-family: Georgia, serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.02; letter-spacing: -.035em; font-weight: 500; }
.collab-barter > p:not(.eyebrow) { max-width: 700px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.collab-barter__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 25px; }
.collab-barter__tags span { padding: 9px 12px; border: 1px solid #e0d6cf; border-radius: 999px; background: rgba(255,255,255,.72); color: #504943; font-size: 12px; font-weight: 750; }
.collab-barter > small { display: block; padding-top: 20px; border-top: 1px solid #e4d8d1; color: var(--muted); font-size: 12px; line-height: 1.55; }
.collab-materials ul { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; }
.collab-materials li { position: relative; padding: 13px 0 13px 27px; border-top: 1px solid var(--line); color: #4f4c48; font-size: 13px; }
.collab-materials li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 900; }

.collab-faq { padding: 92px 0 105px; background: #fff; }
.collab-faq .collab-heading { grid-template-columns: minmax(0, 850px); }
.collab-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.collab-faq details { overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: #faf9f7; }
.collab-faq summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; cursor: pointer; font-family: Georgia, serif; font-size: 18px; font-weight: 600; list-style: none; }
.collab-faq summary::-webkit-details-marker { display: none; }
.collab-faq summary span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--red); font-family: Inter, sans-serif; transition: transform .2s, background .2s, color .2s; }
.collab-faq details[open] summary span { transform: rotate(45deg); background: var(--red); color: white; }
.collab-faq details p { margin: 0; padding: 0 56px 20px 20px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.collab-final { padding: 0 0 96px; background: #fff; }
.collab-final__inner { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; align-items: center; gap: 55px; padding: clamp(34px, 5vw, 64px); border-radius: 28px; background: var(--red); color: white; }
.collab-final__inner::after { content: ""; position: absolute; right: -100px; top: -170px; width: 350px; height: 350px; border: 70px solid rgba(255,255,255,.08); border-radius: 50%; }
.collab-final .eyebrow { color: rgba(255,255,255,.75); }
.collab-final h2 { margin: 8px 0 14px; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 62px); line-height: .98; letter-spacing: -.04em; font-weight: 500; }
.collab-final p:not(.eyebrow) { max-width: 720px; margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.6; }
.collab-final a { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; gap: 5px 16px; padding: 19px 22px; border-radius: 17px; background: white; color: var(--ink); }
.collab-final a span { grid-column: 1; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.collab-final a strong { grid-column: 1; font-size: 15px; }
.collab-final a i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--red); font-style: normal; font-size: 24px; }
.collab-final a:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(62,0,3,.2); }
.collaboration-page .network-zone { border-top: 0; }

.article-top { padding: 54px 0 22px; }
.article-head { width: min(1010px, 100%); margin: 0 auto; text-align: center; }
.article-head .breadcrumbs { justify-content: center; }
.article-kicker { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.article-head h1 { margin: 17px auto 22px; font-family: Georgia, serif; font-size: clamp(46px, 6.1vw, 78px); line-height: 1.01; letter-spacing: -.047em; font-weight: 500; text-wrap: balance; }
.article-deck { width: min(720px, 100%); margin: 0 auto 24px; color: var(--muted); font-size: 19px; line-height: 1.55; }
.article-meta { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 12px; }
.article-meta > span:not(:first-child)::before { content: "·"; margin-right: 14px; color: #b2aea7; }
.author-chip { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 800; }
.author-chip i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-style: normal; font-size: 10px; }
.article-image { width: min(1080px, var(--shell)); margin: 32px auto 0; overflow: hidden; border: 1px solid #e3dfd8; border-radius: 28px; background: #eeeae4; box-shadow: 0 20px 55px rgba(37,31,25,.09); }
.article-image--portrait { width: min(520px, calc(100vw - 48px)); }
.article-image img { width: 100%; height: auto; object-fit: contain; }
.article-image figcaption { padding: 12px 16px 13px; border-top: 1px solid #e3dfd8; background: #fff; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-align: center; }

.article-layout { width: min(1140px, calc(100vw - 48px)); margin: 0 auto; padding: 54px 0 88px; display: grid; grid-template-columns: 62px minmax(0, 760px) 214px; justify-content: center; gap: 34px; }
.share-rail { position: sticky; top: 170px; align-self: start; display: grid; justify-items: center; gap: 9px; }
.share-rail > span { margin-bottom: 3px; color: var(--muted); font-size: 8px; font-weight: 900; letter-spacing: .12em; writing-mode: vertical-rl; transform: rotate(180deg); }
.share-rail a, .share-rail button { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); color: var(--ink); cursor: pointer; font-style: normal; font-weight: 900; }
.share-rail a:hover, .share-rail button:hover { border-color: var(--ink); background: var(--ink); color: white; }
.article-body { font-family: Georgia, serif; font-size: 19px; line-height: 1.72; }
.article-body p { margin: 0 0 25px; }
.article-body > p:first-child::first-letter { float: left; margin: 9px 10px 0 0; color: var(--red); font-size: 76px; line-height: .68; }
.article-body h2 { margin: 42px 0 12px; font-size: 34px; line-height: 1.14; font-weight: 500; }
.article-body blockquote { margin: 38px 0; padding: 24px 0 24px 27px; border-left: 4px solid var(--red); font-size: 28px; line-height: 1.35; color: var(--ink); }
.article-body .fact-box { margin: 32px 0; padding: 24px; border-radius: 18px; background: var(--soft-red); font-family: Inter, sans-serif; font-size: 14px; line-height: 1.55; }
.article-body .fact-box strong { display: block; margin-bottom: 8px; color: var(--red); font-size: 11px; letter-spacing: .12em; }
.article-location { margin: 42px 0 18px; display: flex; align-items: center; gap: 13px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; font-family: Inter, sans-serif; }
.article-location > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--soft-red); font-size: 17px; }
.article-location div { display: flex; flex-direction: column; gap: 3px; }
.article-location small, .article-author-card small { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.article-location strong { font-size: 14px; }
.article-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 38px; font-family: Inter, sans-serif; }
.article-tags span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 10px; font-weight: 750; }
.article-author-card { display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: center; padding: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-family: Inter, sans-serif; }
.article-author-card > i { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-size: 14px; font-style: normal; font-weight: 900; }
.article-author-card div { display: flex; flex-direction: column; align-items: start; gap: 4px; }
.article-author-card strong { font-family: Georgia, serif; font-size: 20px; font-weight: 600; }
.article-author-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.reading-tools { position: sticky; top: 170px; align-self: start; border-left: 1px solid var(--line); padding-left: 22px; }
.reading-tools span { display: block; margin-bottom: 10px; color: var(--muted); font-size: 11px; font-weight: 800; }
.font-controls { display: flex; gap: 7px; }
.font-controls button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); cursor: pointer; }
.progress-label { margin-top: 26px; }
.progress-bar { width: 100%; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.progress-bar i { display: block; width: 0; height: 100%; background: var(--red); transition: width .1s; }

.article-after { padding: 0 0 92px; background: #fff; }
.article-after__inner { display: grid; gap: 58px; }
.article-share-panel { position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(260px, .85fr) minmax(520px, 1.15fr); align-items: center; gap: 38px; margin-top: -1px; padding: 38px 42px; border: 1px solid #ddd8d0; border-radius: 24px; background: linear-gradient(135deg, #f5f1eb 0%, #fff 62%, #fff0f0 100%); }
.article-share-panel::after { content: ""; position: absolute; right: -54px; bottom: -88px; width: 210px; height: 210px; border: 38px solid rgba(215,25,32,.06); border-radius: 50%; pointer-events: none; }
.article-share-panel__copy { position: relative; z-index: 1; }
.article-share-panel__copy > span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.article-share-panel__copy h2 { margin: 7px 0 8px; font-family: Georgia, serif; font-size: clamp(30px, 4vw, 45px); line-height: 1; font-weight: 500; letter-spacing: -.035em; }
.article-share-panel__copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.article-share-actions { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
.article-share-actions a, .article-share-actions button { min-width: 0; min-height: 54px; display: flex; align-items: center; gap: 10px; padding: 8px 13px; border: 1px solid #dedad3; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 800; }
.article-share-actions i { flex: 0 0 auto; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #eeeae4; font-style: normal; font-weight: 900; }
.article-share-actions a:hover, .article-share-actions button:hover { border-color: var(--ink); transform: translateY(-2px); }
.article-share-actions .share-facebook:hover i { background: #1877f2; color: white; }
.article-share-actions .share-whatsapp:hover i { background: #25d366; color: white; }
.article-share-actions .share-telegram:hover i { background: #229ed9; color: white; }
.article-share-actions .share-x:hover i { background: #111; color: white; }
.article-share-actions .share-email:hover i, .article-share-actions button:hover i { background: var(--red); color: white; }
.article-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.article-post-nav a { min-height: 130px; display: flex; flex-direction: column; justify-content: center; gap: 9px; padding: 25px 28px; border: 1px solid var(--line); border-radius: 20px; background: #faf9f7; }
.article-post-nav a:last-child { text-align: right; align-items: end; }
.article-post-nav small { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.article-post-nav strong { max-width: 430px; font-family: Georgia, serif; font-size: clamp(20px, 2.3vw, 28px); line-height: 1.12; font-weight: 500; }
.article-post-nav a:hover { border-color: #c9c3ba; background: white; box-shadow: 0 12px 34px rgba(37,31,25,.07); }
.related-news__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.related-news__head h2 { margin: 4px 0 0; font-family: Georgia, serif; font-size: clamp(38px, 5vw, 58px); line-height: 1; font-weight: 500; letter-spacing: -.04em; }
.related-news__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.related-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: #faf9f7; transition: transform .22s, border-color .22s, box-shadow .22s; }
.related-card:hover { transform: translateY(-4px); border-color: #cbc5bc; box-shadow: 0 15px 34px rgba(37,31,25,.08); }
.related-card__image { position: relative; width: 100%; aspect-ratio: 16 / 9; overflow: hidden; display: block; border-bottom: 1px solid var(--line); background: #eeeae4; }
.related-card__image img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.related-card__body { min-height: 160px; display: flex; flex-direction: column; align-items: start; padding: 17px; }
.related-card__body small { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.related-card__body strong { margin-top: 7px; font-family: Georgia, serif; font-size: 19px; line-height: 1.12; font-weight: 600; }
.related-card__body > span { margin-top: auto; padding-top: 13px; color: var(--muted); font-size: 10px; }

.network-zone { padding: 82px 0 92px; border-top: 1px solid var(--line); background: #fff; }
.dance-floor { overflow: hidden; padding: clamp(24px, 4vw, 46px); border-radius: 28px; background: linear-gradient(135deg, #f2efe9 0%, #fbfaf8 58%, #f2e9e8 100%); box-shadow: 0 22px 60px rgba(37,31,25,.08); }
.dance-floor__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.dance-floor__head h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 5vw, 58px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.dance-floor__head h2 em { color: var(--red); font-weight: 500; }
.dance-floor__channel { flex: 0 0 auto; padding: 12px 16px; border: 1px solid #cfc8bf; border-radius: 999px; font-size: 12px; font-weight: 850; }
.dance-floor__channel:hover { border-color: var(--red); color: var(--red); }
.dance-floor__layout { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(290px, .75fr); gap: 18px; }
.dance-floor__player { position: relative; overflow: hidden; min-height: 470px; border-radius: 21px; background: #141414; }
.dance-floor__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.dance-floor__episodes { display: flex; flex-direction: column; gap: 8px; }
.dance-floor__episodes-head { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 4px; }
.dance-floor__episodes-head span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.dance-floor__episodes-head small { color: var(--muted); font-size: 11px; }
.dance-episode { min-height: 96px; display: grid; grid-template-columns: 112px 1fr 28px; align-items: center; gap: 13px; padding: 9px; border: 1px solid transparent; border-radius: 15px; background: rgba(255,255,255,.72); color: var(--ink); text-align: left; cursor: pointer; transition: border-color .2s, background .2s, transform .2s; }
.dance-episode img { width: 112px; height: 76px; border-radius: 10px; background: #e8e4dc; object-fit: contain; }
.dance-episode > span { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.dance-episode strong { font-family: Georgia, serif; font-size: 17px; font-weight: 600; line-height: 1.12; }
.dance-episode small { color: var(--muted); font-size: 10px; }
.dance-episode i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #ece7df; color: var(--red); font-size: 9px; font-style: normal; }
.dance-episode:hover, .dance-episode.active { border-color: #ded1cf; background: #fff; transform: translateX(-3px); }
.dance-episode.active i { background: var(--red); color: white; }

.projects-showcase { padding-top: 82px; }
.projects-showcase__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.projects-showcase__head h2 { margin: 0; font-family: Georgia, serif; font-size: clamp(34px, 5vw, 55px); font-weight: 500; letter-spacing: -.04em; }
.projects-showcase__head p:not(.eyebrow) { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.projects-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.project-card { min-width: 0; position: relative; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: #faf9f7; transition: transform .22s, box-shadow .22s, border-color .22s; }
.project-card:hover { transform: translateY(-4px); border-color: #cec9c0; box-shadow: 0 16px 36px rgba(37,31,25,.09); }
.project-card__image { height: 148px; overflow: hidden; background: #eeeae4; }
.project-card__image img { width: 100%; height: 100%; object-fit: contain; }
.project-card__copy { min-height: 95px; display: flex; flex-direction: column; padding: 18px 42px 18px 18px; }
.project-card__copy strong { font-family: Georgia, serif; font-size: 19px; font-weight: 600; line-height: 1.13; }
.project-card__copy small { margin-top: 7px; color: var(--muted); font-size: 11px; }
.project-card > i { position: absolute; right: 15px; bottom: 17px; color: var(--red); font-style: normal; font-size: 17px; }


.search-panel { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 24px; background: rgba(247,245,241,.97); backdrop-filter: blur(20px); visibility: hidden; opacity: 0; transition: .25s; }
.search-panel.open { visibility: visible; opacity: 1; }
.search-close { position: absolute; top: 25px; right: 25px; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: white; font-size: 27px; cursor: pointer; }
.search-panel__inner { width: min(760px, 100%); }
.search-panel label { display: block; font-family: Georgia, serif; font-size: clamp(38px, 7vw, 72px); letter-spacing: -.04em; }
.search-box { display: flex; gap: 9px; margin-top: 26px; }
.search-box input { flex: 1; min-width: 0; height: 58px; border: 1px solid var(--line); border-radius: 999px; padding: 0 24px; background: white; outline: none; }
.search-box input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(215,25,32,.08); }
.search-box button { border: 0; border-radius: 999px; padding: 0 25px; background: var(--red); color: white; font-weight: 800; cursor: pointer; }
.search-suggestions { margin-top: 20px; display: grid; gap: 8px; }
.search-suggestions button { border: 0; border-radius: 14px; padding: 15px 17px; background: white; text-align: left; cursor: pointer; }
.search-suggestions button:hover { color: var(--red); }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 90; transform: translate(-50%, 20px); padding: 13px 18px; border-radius: 999px; background: var(--ink); color: white; font-size: 12px; opacity: 0; visibility: hidden; transition: .25s; }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.site-footer { position: relative; overflow: hidden; background: #1e1e1c; color: white; }
.site-footer::before { content: ""; position: absolute; width: 430px; height: 430px; right: -180px; top: -210px; border: 90px solid rgba(215,25,32,.1); border-radius: 50%; pointer-events: none; }
.footer-topline { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 36px; padding: 58px 0 36px; border-bottom: 1px solid #3a3a37; }
.footer-kicker { color: #ef6b70; font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-topline h2 { margin: 8px 0 0; font-family: Georgia, serif; font-size: clamp(30px, 4vw, 46px); font-weight: 500; letter-spacing: -.035em; }
.footer-socials { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-socials a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px 8px 8px; border: 1px solid #454541; border-radius: 999px; color: #cbc9c4; font-size: 12px; font-weight: 750; }
.footer-socials a span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: #31312e; color: white; font-weight: 900; }
.footer-socials a:hover { border-color: #73736d; color: white; }
.footer-socials a:hover span { background: var(--red); }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.65fr .75fr .85fr 1.15fr; gap: 52px; padding: 46px 0 50px; }
.footer-brand img { width: 188px; padding: 10px; border-radius: 12px; background: white; }
.footer-brand p { max-width: 340px; margin: 18px 0 13px; color: #a9a9a5; font-size: 13px; line-height: 1.65; }
.footer-email { color: white; font-family: Georgia, serif; font-size: 17px; }
.footer-column { display: flex; flex-direction: column; gap: 11px; }
.footer-column strong { margin-bottom: 7px; color: white; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: #aaa9a5; font-size: 13px; }
.footer-column a:hover { color: white; }
.footer-column--accent { padding: 22px; border: 1px solid #3b3b38; border-radius: 18px; background: rgba(255,255,255,.035); }
.footer-column--accent p { margin: 0; color: #aaa9a5; font-size: 13px; line-height: 1.55; }
.footer-column--accent .footer-support { width: fit-content; margin-top: 8px; padding-bottom: 4px; border-bottom: 1px solid #8d292c; color: #ff7378; font-weight: 850; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid #393937; padding: 20px 0 24px; color: #7e7e7a; font-size: 11px; }
.footer-bottom > div { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: white; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 900px); }
  .header-brief { display: none; }
  .day-strip { display: flex; overflow-x: auto; scrollbar-width: none; }
  .day-strip__item { min-width: 145px; }
  .day-strip__item--namedays { min-width: 250px; }
  .hero-card { min-height: 510px; }
  .hero-card__content { min-height: 510px; width: 78%; }
  .story-grid { grid-template-columns: 1.3fr 1fr; grid-template-rows: 390px 260px 260px; }
  .story-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .channel-card:first-child { grid-column: 1 / 3; }
  .category-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .news-category-layout { grid-template-columns: 1fr; }
  .news-category-sidebar { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .news-side-card { padding: 21px; }
  .news-side-card h2 { font-size: 25px; }
  .news-side-socials { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 54px 1fr; }
  .reading-tools { display: none; }
  .article-share-panel { grid-template-columns: 1fr; gap: 26px; }
  .related-news__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collab-hero__grid { grid-template-columns: 1fr; }
  .collab-contact-card { max-width: 720px; }
  .collab-proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collab-proof__grid > div:nth-child(2) { border-right: 1px solid var(--line); }
  .collab-proof__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .collab-intro__grid { gap: 48px; }
  .collab-channels { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collab-heading { grid-template-columns: 1fr; gap: 18px; }
  .collab-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collab-options__grid { grid-template-columns: 1fr; }
  .collab-final__inner { grid-template-columns: 1fr; gap: 30px; }
  .collab-final a { max-width: 480px; }
  .news-feature-layout { grid-template-columns: 1fr; }
  .news-feature-list { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .news-compact { min-height: 350px; display: flex; flex-direction: column; align-items: stretch; }
  .news-compact__image { width: 100%; height: 205px; }
  .news-compact__body { padding: 5px 7px 9px; }
  .news-compact > i { position: absolute; right: 18px; bottom: 18px; }
  .news-card-grid { grid-template-columns: repeat(3, 1fr); }
  .retro-news-grid { grid-template-columns: repeat(2, 1fr); }
  .dance-floor__layout { grid-template-columns: 1fr; }
  .dance-floor__player { min-height: 0; aspect-ratio: 16 / 9; }
  .dance-floor__episodes { display: grid; grid-template-columns: 1fr 1fr; }
  .dance-floor__episodes-head { grid-column: 1 / 3; }
  .projects-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 38px; }
  .footer-column--accent { grid-column: 1 / 4; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100vw - 28px); --radius: 18px; }
  .prototype-bar__hint { display: none; }
  .site-header { top: 0; }
  .header-main { height: 68px; gap: 10px; }
  .menu-toggle { display: grid; width: 42px; height: 42px; }
  .brand { position: absolute; left: 50%; transform: translateX(-50%); }
  .brand img { width: 145px; }
  .header-actions { gap: 6px; }
  .weather-pill { display: none; }
  .icon-btn { width: 42px; height: 42px; }
  .primary-nav { position: fixed; inset: 98px 0 0; background: var(--paper); visibility: hidden; opacity: 0; transition: .22s; }
  .primary-nav.open { visibility: visible; opacity: 1; }
  .nav-inner { width: auto; height: 100%; padding: 20px 28px 40px; display: flex; flex-direction: column; align-items: stretch; justify-content: start; gap: 0; overflow-y: auto; }
  .nav-item { display: block; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-trigger, .nav-direct { width: 100%; min-height: 58px; justify-content: flex-start; padding: 0; border-bottom: 1px solid var(--line); font-family: Georgia, serif; font-size: 25px; font-weight: 500; text-align: left; }
  .nav-item .nav-trigger { border-bottom: 0; }
  .nav-trigger::after, .nav-direct::after { display: none; }
  .nav-trigger .chevron { margin-left: auto; font-family: Inter, sans-serif; }
  .mega-menu { position: static; display: none; padding: 0 0 14px; border: 0; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; transition: none; }
  .nav-item.open .mega-menu { display: block; }
  .mega-menu__inner, .mega-menu__inner--compact { width: 100%; display: block; }
  .mega-menu__inner--wp { display: block; }
  .mega-menu__inner--wp .mega-brief { display: none; }
  .mega-group--wp { display: block; padding: 0 0 8px 18px; }
  .premium-menu-link > a { min-height: 42px; font-size: 17px; }
  .premium-submenu { margin-left: 10px; }
  .mega-feature, .mega-brief { display: none; }
  .mega-group { padding: 0 0 5px 16px; }
  .mega-group + .mega-group { padding-top: 8px; }
  .mega-group p { margin-top: 4px; }
  .mega-group a { min-height: 40px; padding: 6px 0; font-family: Inter, sans-serif; font-size: 14px; font-weight: 720; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .home-hero { padding: 14px 0 44px; }
  .day-strip { display: flex; overflow-x: auto; scrollbar-width: none; border-radius: 14px; }
  .day-strip__item { min-width: 155px; min-height: 64px; }
  .day-strip__item--namedays { min-width: 245px; }
  .day-strip__arrow { min-width: 56px; }
  .editorial-strip { display: flex; overflow-x: auto; margin-right: -14px; padding: 0 14px 7px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .editorial-strip::-webkit-scrollbar { display: none; }
  .editorial-card { flex: 0 0 84vw; min-height: 170px; scroll-snap-align: start; }
  .hero-card { min-height: 570px; border-radius: 22px; }
  .hero-card::after { background: linear-gradient(0deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.94) 43%, rgba(255,255,255,.18) 77%, rgba(255,255,255,0) 100%); }
  .hero-card__content { width: 100%; min-height: 570px; padding: 28px 24px 115px; justify-content: end; }
  .hero-card h1 { font-size: 47px; }
  .hero-card p { font-size: 15px; margin: 16px 0 22px; }
  .hero-side-note { left: 16px; right: 16px; bottom: 15px; width: auto; padding: 14px 16px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
  .hero-side-note strong { font-size: 17px; }
  .daily-features { margin-top: 42px; }
  .daily-features__head { align-items: start; flex-direction: column; gap: 10px; }
  .daily-features__grid { display: flex; overflow-x: auto; margin-right: -14px; padding-right: 14px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .daily-features__grid::-webkit-scrollbar { display: none; }
  .daily-card { flex: 0 0 84vw; scroll-snap-align: start; }
  .daily-card__media { height: 240px; }
  .live-ribbon { grid-template-columns: 1fr; }
  .live-ribbon__title { padding: 14px 18px; flex-direction: row; align-items: center; justify-content: space-between; }
  .timeline button { min-width: 150px; }
  .latest-news-section { padding: 52px 0 60px; }
  .latest-news-heading { align-items: start; }
  .section-heading__aside { max-width: 100%; align-items: start; flex-direction: column; gap: 9px; }
  .latest-news-heading .text-link { display: inline-block; }
  .news-feature { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto; }
  .news-feature__image { min-height: 0; height: 360px; padding: 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .news-feature__body { min-height: 190px; padding: 23px 21px; }
  .news-feature__body strong { font-size: 32px; }
  .news-feature-list { display: flex; overflow-x: auto; margin-right: -14px; padding: 0 14px 7px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .news-feature-list::-webkit-scrollbar { display: none; }
  .news-compact { flex: 0 0 84vw; min-height: 156px; display: grid; grid-template-columns: 118px 1fr 20px; padding: 10px; scroll-snap-align: start; }
  .news-compact__image { width: 118px; height: 134px; }
  .news-compact__body { padding: 0; }
  .news-compact__body strong { font-size: 18px; }
  .news-compact > i { position: static; }
  .news-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .news-grid-card__image { height: 210px; padding: 7px; }
  .news-grid-card__body { min-height: 165px; padding: 15px 28px 15px 14px; }
  .news-grid-card__body strong { font-size: 17px; }
  .news-grid-card > i { right: 12px; bottom: 14px; }
  .section-more { min-height: 52px; margin-top: 14px; }
  .retro-news-section { padding: 56px 0 64px; }
  .retro-news-heading { align-items: start; flex-direction: column; gap: 16px; }
  .retro-news-grid { display: flex; overflow-x: auto; margin-right: -14px; padding: 0 14px 7px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .retro-news-grid::-webkit-scrollbar { display: none; }
  .retro-news-card { flex: 0 0 84vw; scroll-snap-align: start; }
  .retro-news-card__image { height: 280px; }
  .stories-section, .channels-section { padding: 48px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 10px; }
  .section-heading .text-link { display: none; }
  .story-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -14px; padding-right: 14px; scrollbar-width: none; }
  .story-card, .story-card:first-child { flex: 0 0 84vw; min-height: 430px; scroll-snap-align: start; }
  .story-card:first-child h3 { font-size: 34px; }
  .channel-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; margin-right: -14px; padding-right: 14px; scrollbar-width: none; }
  .channel-card, .channel-card:first-child { min-width: 82vw; grid-column: auto; scroll-snap-align: start; }
  .category-brand-banner { padding-top: 14px; }
  .category-brand-banner__frame { border-radius: 18px; }
  .news-category-head { padding: 32px 0 22px; }
  .news-category-title { grid-template-columns: 1fr; gap: 17px; padding-bottom: 25px; }
  .news-category-title h1 { font-size: 72px; }
  .news-category-title > p { font-size: 15px; }
  .news-category-filters { flex-wrap: nowrap; overflow-x: auto; margin-right: -14px; padding: 15px 14px 2px 0; scrollbar-width: none; }
  .news-category-filters::-webkit-scrollbar { display: none; }
  .news-category-filters button { flex: 0 0 auto; }
  .news-category-content { padding: 14px 0 68px; }
  .news-category-lead { min-height: 0; grid-template-columns: 1fr; border-radius: 20px; }
  .news-category-lead__image { height: min(500px, 112vw); padding: 8px; border-right: 0; border-bottom: 1px solid var(--line); }
  .news-category-lead__body { padding: 25px 21px 29px; }
  .news-category-lead__body strong { font-size: 35px; }
  .news-category-layout { margin-top: 18px; }
  .news-category-grid { gap: 10px; }
  .category-news-card__image { height: 205px; padding: 6px; }
  .category-news-card__body { min-height: 165px; padding: 14px 31px 14px 14px; }
  .category-news-card__body strong { font-size: 17px; }
  .category-news-card__body i { right: 12px; bottom: 13px; }
  .news-category-sidebar { grid-template-columns: 1fr; }
  .news-side-socials { grid-template-columns: 1fr 1fr; }
  .news-pagination { flex-wrap: wrap; }
  .category-hero { padding: 32px 0 22px; }
  .category-title { grid-template-columns: 1fr; gap: 20px; padding-bottom: 26px; }
  .category-title h1 { font-size: 68px; }
  .category-title p { font-size: 15px; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-story img { min-height: 330px; }
  .lead-story__body { padding: 26px 22px 30px; }
  .feed-item { grid-template-columns: 116px 1fr; gap: 14px; }
  .feed-item img { width: 116px; height: 116px; }
  .feed-item h3 { margin-top: 5px; font-size: 20px; }
  .feed-item p { display: none; }
  .sidebar { grid-template-columns: 1fr; }
  .collab-banner { padding-top: 14px; }
  .collab-banner__frame { border-radius: 18px; }
  .collab-hero { padding: 26px 0 56px; }
  .collab-hero .breadcrumbs { margin-bottom: 26px; }
  .collab-hero__grid { gap: 25px; }
  .collab-hero__copy h1 { font-size: 52px; }
  .collab-hero__copy > p:not(.eyebrow) { font-size: 16px; }
  .collab-hero__actions { align-items: stretch; flex-direction: column; }
  .collab-button { width: 100%; }
  .collab-contact-card { padding: 27px 24px; border-radius: 19px; }
  .collab-contact-card h2 { font-size: 30px; }
  .collab-contact-card a { font-size: 13px; }
  .collab-proof { overflow: hidden; }
  .collab-proof__grid { width: 100%; display: flex; overflow-x: auto; padding: 0 14px; scrollbar-width: none; }
  .collab-proof__grid::-webkit-scrollbar { display: none; }
  .collab-proof__grid > div { flex: 0 0 260px; min-height: 138px; border-bottom: 0 !important; }
  .collab-proof__grid > div:first-child { border-left: 0; }
  .collab-intro { padding: 62px 0 68px; }
  .collab-intro__grid { grid-template-columns: 1fr; gap: 18px; }
  .collab-section-title h2, .collab-heading h2 { font-size: 41px; }
  .collab-intro__text { padding-top: 0; }
  .collab-intro__text p { font-size: 18px; }
  .collab-channels { grid-template-columns: 1fr; gap: 9px; margin-top: 38px; }
  .collab-channels article { min-height: 190px; padding: 22px; }
  .collab-packages { padding: 62px 0 70px; }
  .collab-heading { margin-bottom: 28px; }
  .collab-heading > p { font-size: 13px; }
  .collab-package-grid { grid-template-columns: 1fr; gap: 10px; }
  .collab-package { min-height: auto; padding: 26px 22px; border-radius: 19px; }
  .collab-package--featured { padding: 25px 21px; }
  .collab-package__badge { position: static; width: fit-content; margin-bottom: 20px; }
  .collab-package__top { min-height: auto; }
  .collab-package__top strong { font-size: 29px; }
  .collab-package > a { margin-top: 10px; }
  .collab-process { padding: 62px 0 70px; }
  .collab-steps { grid-template-columns: 1fr; border-top: 0; }
  .collab-steps article { min-height: 0; padding: 25px 0 28px 48px; border-top: 1px solid var(--line); }
  .collab-steps article::before { top: -5px; box-shadow: 0 0 0 5px #fff; }
  .collab-steps span { position: absolute; left: 0; top: 24px; font-size: 33px; }
  .collab-steps h3 { margin: 0 0 8px; }
  .collab-options { padding: 62px 0; }
  .collab-barter, .collab-materials { padding: 27px 22px; border-radius: 19px; }
  .collab-barter h2, .collab-materials h2 { font-size: 35px; }
  .collab-faq { padding: 62px 0 72px; }
  .collab-faq__grid { grid-template-columns: 1fr; }
  .collab-faq summary { min-height: 66px; padding: 15px 16px; font-size: 17px; }
  .collab-faq details p { padding: 0 46px 18px 16px; }
  .collab-final { padding-bottom: 68px; }
  .collab-final__inner { margin-inline: -2px; padding: 31px 22px; border-radius: 21px; }
  .collab-final h2 { font-size: 43px; }
  .collab-final a { padding: 17px; }
  .article-top { padding-top: 28px; }
  .article-head { text-align: left; }
  .article-head .breadcrumbs, .article-meta { justify-content: flex-start; }
  .article-head h1 { font-size: 48px; }
  .article-deck { font-size: 17px; }
  .article-meta { gap: 8px 13px; }
  .article-meta > span:not(:first-child)::before { margin-right: 13px; }
  .article-image { width: var(--shell); margin-top: 26px; border-radius: 20px; }
  .article-image--portrait { width: min(500px, calc(100vw - 28px)); }
  .article-image img { height: auto; }
  .article-layout { width: var(--shell); grid-template-columns: 1fr; padding-top: 30px; }
  .share-rail { position: static; display: flex; justify-content: center; order: 2; margin-top: 8px; padding-top: 22px; border-top: 1px solid var(--line); }
  .share-rail > span { align-self: center; margin: 0 5px 0 0; writing-mode: initial; transform: none; }
  .article-body { font-size: 18px; }
  .article-body h2 { font-size: 30px; }
  .article-body blockquote { font-size: 24px; }
  .article-after { padding-bottom: 64px; }
  .article-after__inner { gap: 42px; }
  .article-share-panel { padding: 26px 22px; border-radius: 20px; }
  .article-share-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-share-actions a, .article-share-actions button { min-height: 50px; padding: 7px 10px; }
  .article-share-actions i { width: 32px; height: 32px; }
  .article-post-nav { grid-template-columns: 1fr; }
  .article-post-nav a { min-height: 112px; padding: 21px; }
  .article-post-nav a:last-child { align-items: start; text-align: left; }
  .related-news__head { align-items: start; flex-direction: column; gap: 11px; }
  .related-news__head .text-link { display: inline-block; }
  .related-news__grid { gap: 10px; }
  .related-card__image { width: 100%; aspect-ratio: 16 / 9; }
  .related-card__body { min-height: 155px; padding: 14px; }
  .related-card__body strong { font-size: 17px; }
  .network-zone { padding: 54px 0 62px; }
  .dance-floor { margin-inline: -4px; padding: 22px 18px; border-radius: 22px; }
  .dance-floor__head { align-items: start; flex-direction: column; gap: 15px; }
  .dance-floor__head h2 { font-size: 39px; }
  .dance-floor__channel { padding: 10px 14px; }
  .dance-floor__episodes { display: flex; flex-direction: row; overflow-x: auto; margin-right: -18px; padding-right: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .dance-floor__episodes-head { display: none; }
  .dance-episode { flex: 0 0 270px; grid-template-columns: 92px 1fr 26px; scroll-snap-align: start; }
  .dance-episode img { width: 92px; height: 66px; }
  .projects-showcase { padding-top: 58px; }
  .projects-showcase__head { align-items: start; flex-direction: column; gap: 10px; }
  .projects-showcase__head .text-link { display: inline-block; }
  .projects-row { display: flex; overflow-x: auto; margin-right: -14px; padding: 0 14px 8px 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .projects-row::-webkit-scrollbar { display: none; }
  .project-card { flex: 0 0 76vw; scroll-snap-align: start; }
  .project-card__image { height: 180px; }
  .footer-topline { align-items: start; flex-direction: column; padding-top: 45px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; padding-top: 38px; }
  .footer-brand, .footer-column--accent { grid-column: auto; }
  .footer-column { gap: 9px; }
  .footer-column--accent { padding: 20px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-bottom > div { gap: 10px 16px; }
  .search-box { align-items: stretch; }
  .search-box button { padding: 0 18px; }
}

@media (max-width: 460px) {
  .news-category-grid { grid-template-columns: 1fr; }
  .category-news-card__image { height: min(440px, 112vw); }
  .category-news-card__body { min-height: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* WordPress integration */
.admin-bar .site-header { top: 32px; }
.brand .custom-logo { width: 190px; height: auto; }
.wp-main-banner { overflow: hidden; margin-top: 22px; border: 1px solid #e1ddd5; border-radius: 28px; background: #fff; box-shadow: 0 18px 55px rgba(37,31,25,.08); }
.wp-main-banner img { width: 100%; height: auto; object-fit: contain; }
.category-description p { max-width: 520px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.news-pagination .page-numbers { width: 43px; height: 43px; display: inline-grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--ink); font-size: 12px; font-weight: 850; }
.news-pagination .page-numbers.current, .news-pagination .page-numbers:hover { border-color: var(--ink); background: var(--ink); color: white; }
.entry-content { min-width: 0; }
.entry-content img, .entry-content figure img, .wp-block-image img { width: auto; max-width: 100%; height: auto; object-fit: contain; }
.entry-content figure { max-width: 100%; margin-inline: auto; }
.entry-content a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.entry-content iframe { max-width: 100%; }
.alignwide { width: min(1080px, 100%); max-width: none; margin-inline: auto; }
.alignfull { width: 100%; max-width: none; }
.wp-empty-state { padding: 35px; border: 1px dashed var(--line); border-radius: 18px; color: var(--muted); text-align: center; }
.wp-page-head { padding: 58px 0 48px; border-bottom: 1px solid var(--line); }
.wp-page-head h1, .wp-generic-head h1 { margin: 8px 0 0; font-family: Georgia, serif; font-size: clamp(52px, 8vw, 100px); line-height: .94; letter-spacing: -.055em; font-weight: 500; }
.wp-page-head > .shell > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 17px; line-height: 1.6; }
.wp-page-content { padding: 68px 0 94px; background: #fff; }
.wp-page-content .article-body { width: min(820px, 100%); margin-inline: auto; }
.wp-generic-page { padding: 55px 0 95px; }
.wp-generic-head { padding-bottom: 35px; border-bottom: 1px solid var(--line); }
.wp-generic-list { display: grid; gap: 12px; margin-top: 30px; }
.wp-generic-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.wp-generic-card > a { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: center; padding: 10px; }
.wp-generic-card__image { height: 180px; display: grid; place-items: center; border-radius: 13px; background: #eeeae4; }
.wp-generic-card__image img { width: 100%; height: 100%; object-fit: contain; }
.wp-generic-card small { color: var(--red); font-size: 12px; font-weight: 900; }
.wp-generic-card strong { display: block; margin-top: 8px; font-family: Georgia, serif; font-size: 28px; line-height: 1.08; font-weight: 600; }
.wp-generic-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.wp-error-page { min-height: 70vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.wp-error-page span { color: var(--red); font-family: Georgia, serif; font-size: clamp(100px, 18vw, 220px); line-height: .8; }
.wp-error-page h1 { margin: 28px 0 12px; font-family: Georgia, serif; font-size: clamp(40px, 6vw, 70px); font-weight: 500; }
.wp-error-page p { margin: 0 auto 28px; color: var(--muted); }

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (max-width: 720px) {
  .primary-nav { inset: 68px 0 0; }
  .admin-bar .primary-nav { inset: 114px 0 0; }
  .wp-main-banner { margin-top: 15px; border-radius: 18px; }
  .category-description p { font-size: 15px; }
  .wp-page-head { padding: 36px 0 34px; }
  .wp-page-content { padding: 46px 0 66px; }
  .wp-generic-page { padding: 34px 0 68px; }
  .wp-generic-card > a { grid-template-columns: 112px 1fr; gap: 14px; }
  .wp-generic-card__image { height: 120px; }
  .wp-generic-card strong { font-size: 20px; }
  .wp-generic-card p { display: none; }
}


/* v3.0.6: three daily editorial cards below the main banner. */
.daily-feature-section { padding: 26px 0 8px; }
.daily-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.daily-feature-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(31, 28, 24, .055); transition: transform .2s ease, box-shadow .2s ease; }
.daily-feature-card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(31, 28, 24, .09); }
.daily-feature-card__label { padding: 15px 18px 12px; color: var(--red); font-size: 12px; line-height: 1.2; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.daily-feature-card__image { min-height: 270px; display: flex; align-items: center; justify-content: center; overflow: visible; padding: 12px; background: #f1eee9; }
.daily-feature-card__image img { display: block; width: auto !important; height: auto !important; max-width: 100% !important; max-height: 360px; aspect-ratio: auto !important; object-fit: contain !important; object-position: center; flex: 0 0 auto; }
.daily-feature-card__image--empty { background: linear-gradient(135deg, #f1eee9, #e8e2da); }
.daily-feature-card__body { flex: 1; display: flex; flex-direction: column; padding: 16px 18px 18px; }
.daily-feature-card__body strong { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; font-family: Georgia, serif; font-size: 22px; line-height: 1.12; font-weight: 600; }
.daily-feature-card__body small { margin-top: auto; padding-top: 14px; color: var(--muted); font-size: 12px; }
@media (max-width: 980px) { .daily-feature-card__image { min-height: 230px; } .daily-feature-card__image img { max-height: 320px; } .daily-feature-card__body strong { font-size: 19px; } }
@media (max-width: 720px) { .daily-feature-section { padding-top: 20px; } .daily-feature-grid { grid-template-columns: 1fr; gap: 14px; } .daily-feature-card__image { min-height: 0; } .daily-feature-card__image img { max-height: 420px; } .daily-feature-card__body strong { font-size: 21px; } }

/* v3.0.8 — Jaunakas zinas: always show the complete source image. */
.latest-news-section .news-image-frame { overflow: visible !important; }
.latest-news-section .news-image-frame img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
}
.latest-news-section .news-feature__image,
.latest-news-section .news-compact__image,
.latest-news-section .news-grid-card__image { place-items: center; background: #f0ede7; }

/* v3.0.9 — Jaunakas zinas: remove fixed media geometry at the container level too. */
.latest-news-section .news-feature { min-height: 0 !important; align-items: center; }
.latest-news-section .news-feature__image {
  min-height: 0 !important;
  height: auto !important;
  align-self: center !important;
  overflow: visible !important;
}
.latest-news-section .news-compact { min-height: 0 !important; grid-template-columns: minmax(120px,160px) 1fr 22px; }
.latest-news-section .news-compact__image {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.latest-news-section .news-grid-card__image {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}
.latest-news-section .news-feature__image img,
.latest-news-section .news-compact__image img,
.latest-news-section .news-grid-card__image img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center !important;
}
@media (max-width: 720px) {
  .latest-news-section .news-feature__image,
  .latest-news-section .news-compact__image,
  .latest-news-section .news-grid-card__image { height: auto !important; min-height: 0 !important; }
  .latest-news-section .news-compact { grid-template-columns: 118px 1fr 20px; }
}

/* v3.0.11 — Jaunakas zinas: full, moderate-size images ONLY for side + lower grid. Lead is intentionally untouched. */
.latest-news-section .news-compact__image {
  width: 160px !important;
  height: 170px !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 8px !important;
  background: #f0ede7;
}
.latest-news-section .news-compact__image img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 154px !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  flex: 0 0 auto;
}
.latest-news-section .news-grid-card__image {
  width: 100% !important;
  height: 235px !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  padding: 10px !important;
  background: #f0ede7;
}
.latest-news-section .news-grid-card__image img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 215px !important;
  object-fit: contain !important;
  aspect-ratio: auto !important;
  flex: 0 0 auto;
}
@media (max-width: 980px) and (min-width: 721px) {
  .latest-news-section .news-compact__image { width: 100% !important; height: 205px !important; }
  .latest-news-section .news-compact__image img { max-height: 189px !important; }
}
@media (max-width: 720px) {
  .latest-news-section .news-compact__image { width: 118px !important; height: 134px !important; padding: 7px !important; }
  .latest-news-section .news-compact__image img { max-height: 120px !important; }
  .latest-news-section .news-grid-card__image { height: 210px !important; padding: 7px !important; }
  .latest-news-section .news-grid-card__image img { max-height: 196px !important; }
}

/* v3.0.11 — definitive Jaunakas zinas side/grid fix.
   Source image is now WordPress FULL size in front-page.php, so no stale/cropped
   cityriga-card derivative can be served. Lead card is intentionally untouched. */
.latest-news-section .news-compact__image,
.latest-news-section .news-grid-card__image {
  box-sizing: border-box !important;
  overflow: visible !important;
  background: #f0ede7 !important;
}
.latest-news-section .news-compact__image img,
.latest-news-section .news-grid-card__image img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  aspect-ratio: auto !important;
  margin: auto !important;
}
.latest-news-section .news-compact__image {
  width: 160px !important;
  height: 170px !important;
  padding: 8px !important;
}
.latest-news-section .news-compact__image img { max-height: 154px !important; }
.latest-news-section .news-grid-card__image {
  width: 100% !important;
  height: 235px !important;
  padding: 10px !important;
}
.latest-news-section .news-grid-card__image img { max-height: 215px !important; }
@media (max-width: 980px) and (min-width: 721px) {
  .latest-news-section .news-compact__image { width: 100% !important; height: 205px !important; }
  .latest-news-section .news-compact__image img { max-height: 189px !important; }
}
@media (max-width: 720px) {
  .latest-news-section .news-compact__image { width: 118px !important; height: 134px !important; padding: 7px !important; }
  .latest-news-section .news-compact__image img { max-height: 120px !important; }
  .latest-news-section .news-grid-card__image { height: 210px !important; padding: 7px !important; }
  .latest-news-section .news-grid-card__image img { max-height: 196px !important; }
}


/* v3.0.12 — Par Rigu four-card section. Full featured images, never cropped. */
.about-riga-section { padding: 10px 0 52px; }
.about-riga-heading { margin-bottom: 20px; }
.about-riga-heading > p { max-width: 520px; margin: 0; color: #6f6a63; }
.about-riga-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.about-riga-card { display: flex; flex-direction: column; min-width: 0; height: 100%; background: #fff; border: 1px solid rgba(24,24,24,.09); border-radius: 18px; overflow: hidden; color: inherit; text-decoration: none; box-shadow: 0 10px 28px rgba(31,26,20,.06); }
.about-riga-card__label { padding: 13px 15px 10px; font-size: 12px; line-height: 1.2; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; color: #a62b2b; }
.about-riga-card__image { box-sizing: border-box; width: 100%; height: 230px; padding: 10px; display: flex; align-items: center; justify-content: center; background: #f0ede7; overflow: visible; }
.about-riga-card__image img { display: block; width: auto; height: auto; max-width: 100%; max-height: 210px; object-fit: contain; object-position: center; aspect-ratio: auto; margin: auto; }
.about-riga-card__body { display: flex; flex-direction: column; gap: 10px; padding: 15px 16px 18px; flex: 1; }
.about-riga-card__body strong { font-size: 17px; line-height: 1.25; }
.about-riga-card__body span { margin-top: auto; font-size: 12px; color: #77716a; }
.about-riga-card__empty { display: flex; align-items: center; min-height: 230px; padding: 20px; color: #77716a; line-height: 1.45; }
@media (max-width: 980px) { .about-riga-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .about-riga-section { padding-bottom: 38px; } .about-riga-grid { grid-template-columns: 1fr; } .about-riga-card__image { height: 220px; } .about-riga-card__image img { max-height: 200px; } }


/* Entertainment row: full, uncropped featured images */
.entertainment-section { padding: 10px 0 52px; }
.entertainment-heading { margin-bottom: 20px; }
.entertainment-heading > p { max-width: 520px; margin: 0; color: #6f6a63; }
.entertainment-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.entertainment-card { display: flex; flex-direction: column; min-width: 0; height: 100%; background: #fff; border: 1px solid rgba(24,24,24,.09); border-radius: 18px; overflow: hidden; color: inherit; text-decoration: none; box-shadow: 0 10px 28px rgba(31,26,20,.06); }
.entertainment-card__label { padding: 13px 15px 10px; font-size: 12px; line-height: 1.2; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; color: #a62b2b; }
.entertainment-card__image { box-sizing: border-box; width: 100%; height: 230px; padding: 10px; display: flex; align-items: center; justify-content: center; background: #f0ede7; overflow: visible; }
.entertainment-card__image img { display: block; width: auto !important; height: auto !important; max-width: 100% !important; max-height: 210px !important; object-fit: contain !important; object-position: center; aspect-ratio: auto !important; margin: auto; }
.entertainment-card__body { display: flex; flex-direction: column; gap: 10px; padding: 15px 16px 18px; flex: 1; }
.entertainment-card__body strong { font-size: 17px; line-height: 1.25; }
.entertainment-card__body span { margin-top: auto; font-size: 12px; color: #77716a; }
.entertainment-card__empty { display: flex; align-items: center; min-height: 230px; padding: 20px; color: #77716a; line-height: 1.45; }
@media (max-width: 980px) { .entertainment-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .entertainment-section { padding-bottom: 38px; } .entertainment-grid { grid-template-columns: 1fr; } .entertainment-card__image { height: 220px; } .entertainment-card__image img { max-height: 200px !important; } }

/* v3.0.14 — Mūsu projekti: one-line project strip + normal clickable cursor */
.projects-row {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  width: 100%;
  overflow: visible;
}
.projects-row .project-card {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}
.projects-row .project-card *,
.projects-row .project-card::before,
.projects-row .project-card::after {
  cursor: pointer !important;
  pointer-events: none;
}
.projects-row .project-card__image { height: 112px; }
.projects-row .project-card__copy { min-height: 88px; padding: 14px 32px 14px 14px; }
.projects-row .project-card__copy strong { font-size: 16px; }
.projects-row .project-card__copy small { font-size: 10px; }
.projects-row .project-card > i { right: 11px; bottom: 13px; }

@media (max-width: 760px) {
  .projects-row {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .projects-row::-webkit-scrollbar { display: none; }
  .projects-row .project-card {
    flex: 0 0 min(72vw, 260px) !important;
    scroll-snap-align: start;
  }
  .projects-row .project-card__image { height: 128px; }
}

/* v3.0.16 — AKTUĀLI rotating news */
.header-brief__slides { position: relative; min-width: 0; height: 38px; overflow: hidden; }
.header-brief__slides .header-brief__story { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: translateY(6px); pointer-events: none; transition: opacity .28s ease, transform .28s ease, visibility .28s ease; }
.header-brief__slides .header-brief__story.is-active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

/* v3.0.17: media preview for WordPress dropdowns + centered back-to-top control */
@media (min-width: 721px) {
  .mega-menu__inner--wp { grid-template-columns: minmax(300px,.95fr) minmax(0,2.05fr); }
  .mega-post-preview { min-height: 210px; display: grid; grid-template-columns: 44% 56%; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; color: var(--ink); box-shadow: 0 10px 28px rgba(24,20,16,.07); }
  .mega-post-preview__image { min-width: 0; display: flex; align-items: center; justify-content: center; padding: 8px; background: #f0ede7; }
  .mega-post-preview__image img { display: block; width: auto !important; height: auto !important; max-width: 100% !important; max-height: 194px !important; object-fit: contain !important; aspect-ratio: auto !important; }
  .mega-post-preview__body { min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 20px; }
  .mega-post-preview__body small { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
  .mega-post-preview__body strong { margin-top: 9px; font-family: Georgia, serif; font-size: 20px; line-height: 1.12; font-weight: 600; }
  .mega-post-preview__body em { margin-top: 16px; color: var(--red); font-size: 11px; font-style: normal; font-weight: 850; }
  .mega-post-preview:hover { border-color: rgba(166,43,43,.28); transform: translateY(-1px); }
  .mega-post-preview--empty { display: flex; min-height: 180px; }
}

/* v3.0.20 — category cards: clean full images, text always below */
.news-category-lead {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.news-category-lead__image {
  box-sizing: border-box;
  width: 100%;
  height: 380px;
  min-width: 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: #eeeae4;
  overflow: visible;
}
.news-category-lead__image img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 356px !important;
  object-fit: contain !important;
  object-position: center !important;
  aspect-ratio: auto !important;
  margin: auto;
}
.news-category-lead__body {
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 26px 30px 30px;
  background: #faf9f7;
  color: var(--ink);
}
.news-category-lead__body strong {
  margin: 10px 0 12px;
  font-size: clamp(30px, 3.5vw, 46px);
}
.news-category-lead__body i { margin-top: 18px; }

.category-news-card { overflow: hidden; }
.category-news-card__image {
  box-sizing: border-box;
  width: 100%;
  height: 245px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeae4;
  overflow: visible;
}
.category-news-card__image img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 225px !important;
  object-fit: contain !important;
  object-position: center !important;
  aspect-ratio: auto !important;
  margin: auto;
}
.category-news-card__body {
  position: relative;
  background: #faf9f7;
  color: var(--ink);
}

@media (max-width: 760px) {
  .news-category-lead__image {
    height: 300px;
    padding: 8px;
  }
  .news-category-lead__image img { max-height: 284px !important; }
  .news-category-lead__body { padding: 22px 20px 25px; }
  .news-category-lead__body strong { font-size: 32px; }
  .category-news-card__image {
    height: 230px;
    padding: 8px;
  }
  .category-news-card__image img { max-height: 214px !important; }
}

/* v3.0.21 — global clickable cursor normalization */
a[href],
a[href] *,
a[href]::before,
a[href]::after,
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
input[type="submit"]:not(:disabled),
input[type="button"]:not(:disabled) {
  cursor: pointer !important;
}

a[href] img,
a[href] picture,
a[href] picture img,
a[href] figure,
a[href] svg,
a[href] video {
  cursor: pointer !important;
}

img:not(a img), picture:not(a picture), figure:not(a figure) {
  cursor: default;
}

/* v3.0.22 — prevent native image dragging / forbidden drag cursor */
a[href] img,
a[href] picture,
a[href] svg,
a[href] video,
img {
  -webkit-user-drag: none !important;
  user-select: none;
}

\n\n/* v3.0.27 — safe imported-video layout. Never rewrite/remove the Facebook player DOM. */\n.entry-content video {\n  display: block !important;\n  width: min(100%, 820px);\n  height: auto !important;\n  max-width: 100% !important;\n  max-height: 82vh !important;\n  margin: 24px auto !important;\n  object-fit: contain !important;\n  object-position: center !important;\n  background: #111;\n}\n.entry-content .wp-video,\n.entry-content .wp-video-shortcode,\n.entry-content .mejs-container {\n  max-width: 100% !important;\n  margin-left: auto !important;\n  margin-right: auto !important;\n}\n/* Facebook iframe embeds stay intact; only keep them inside the article width. */\n.entry-content iframe[src*="facebook.com"],\n.entry-content iframe[src*="facebook.net"],\n.entry-content iframe[src*="fb.watch"],\n.entry-content .fb-video,\n.entry-content .fb-post {\n  display: block;\n  max-width: 100% !important;\n  margin: 24px auto !important;\n}\n@media (max-width: 760px) {\n  .entry-content video { max-height: 76vh !important; }\n}\n

/* v3.0.30 — related cards: use full featured image and never crop it. */
.related-news .related-card__image {
  aspect-ratio: 16 / 9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #f0ede7 !important;
}
.related-news .related-card__image img {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}

@media (max-width: 720px) { .mega-post-preview { display: none; } }

/* v3.0.36 — ONE back-to-top implementation. */
.back-to-top {
  position: fixed;
  top: 32vh;
  right: max(18px, calc((100vw - 1320px) / 2 - 70px));
  bottom: auto;
  z-index: 9999;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.45); border-radius: 50%;
  background: var(--red); color: #fff;
  box-shadow: 0 12px 32px rgba(127,14,19,.27);
  cursor: pointer;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: none;
  transition: opacity .2s ease, visibility .2s ease, background .2s ease;
}
.back-to-top.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.back-to-top:hover { background: var(--red-dark); }
.back-to-top span { font-size: 23px; line-height: 1; }
@media (max-width: 768px) {
  .back-to-top { right: 12px; width: 44px; height: 44px; }
}


/* v3.0.38 — homepage back-to-top is structural/sticky; no JS trigger. */
.home-back-to-top-anchor {
  position: sticky;
  top: 32vh;
  height: 0;
  z-index: 10000;
  pointer-events: none;
}
.home-back-to-top {
  position: absolute;
  right: -70px;
  top: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 32px rgba(127,14,19,.27);
  text-decoration: none;
  pointer-events: auto;
}
.home-back-to-top:hover { background: var(--red-dark); color: #fff; }
.home-back-to-top span { font-size: 23px; line-height: 1; }
@media (max-width: 1459px) {
  .home-back-to-top { right: 12px; }
}
@media (max-width: 768px) {
  .home-back-to-top { width: 44px; height: 44px; right: 12px; }
}

/* v3.0.39 — polished mobile navigation. Desktop mega menus are unchanged. */
@media (max-width: 720px) {
  body.menu-open { overflow: hidden; }
  .primary-nav { z-index: 999; overflow: hidden; border-top: 1px solid var(--line); }
  .primary-nav.open { visibility: visible; opacity: 1; }
  .nav-inner { box-sizing: border-box; width: 100%; max-width: none; padding: 10px 18px 34px; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .nav-item, .nav-direct { flex: 0 0 auto; }
  .nav-item { border-bottom: 1px solid var(--line); }
  .nav-trigger, .nav-direct { min-height: 54px; font-family: Inter, sans-serif; font-size: 18px; line-height: 1.2; font-weight: 800; letter-spacing: -.015em; }
  .nav-trigger .live-dot { flex: 0 0 auto; }
  .nav-trigger .chevron { display: grid; place-items: center; width: 32px; height: 32px; margin-left: auto; border-radius: 50%; background: rgba(0,0,0,.045); font-size: 18px; transition: transform .2s ease, background .2s ease; }
  .nav-item.open > .nav-trigger .chevron { background: rgba(201,34,39,.09); }
  .mega-menu { padding: 0 0 12px; }
  .mega-menu__inner, .mega-menu__inner--compact, .mega-menu__inner--wp { padding: 0; }
  .mega-group, .mega-group--wp { padding: 0 0 6px 14px; }
  .mega-group + .mega-group { padding-top: 5px; }
  .mega-group p { margin: 8px 0 4px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .mega-group a, .premium-menu-link > a { min-height: 38px; padding: 7px 0; font-family: Inter, sans-serif; font-size: 15px; line-height: 1.25; font-weight: 700; }
  .premium-submenu { margin: 0 0 4px 12px; padding-left: 12px; border-left: 2px solid var(--line); }
  .menu-toggle { position: relative; z-index: 1001; }
}
.mobile-menu-head { display: none; }
@media (max-width: 720px) {
  .mobile-menu-head { display: flex; align-items: baseline; justify-content: space-between; padding: 8px 0 10px; border-bottom: 2px solid var(--ink); }
  .mobile-menu-head span { font-size: 11px; font-weight: 950; letter-spacing: .13em; }
  .mobile-menu-head small { color: var(--muted); font-size: 11px; font-weight: 700; }
}


/* v3.0.40 — definitive mobile menu viewport fix */
@media (max-width: 720px) {
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .primary-nav {
    position: fixed !important;
    top: 68px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: calc(100dvh - 68px) !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #f7f5f1 !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px);
  }
  .primary-nav.open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0);
  }
  .admin-bar .primary-nav {
    top: 114px !important;
    height: calc(100dvh - 114px) !important;
  }
  .primary-nav .nav-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 100% !important;
    overflow: visible !important;
    padding: 12px 18px 42px !important;
  }
  .primary-nav .mobile-menu-head,
  .primary-nav .nav-item,
  .primary-nav .nav-direct { display: flex !important; width: 100% !important; }
  .primary-nav .nav-item { flex-direction: column !important; }
  .primary-nav .nav-trigger,
  .primary-nav .nav-direct { display: flex !important; align-items: center !important; color: #171717 !important; }
  .primary-nav .mega-menu { display: none !important; width: 100% !important; }
  .primary-nav .nav-item.open > .mega-menu { display: block !important; }
}

/* v3.0.46 — logged-in WordPress toolbar layout.
   WP injects html { margin-top:32px } for logged-in users. In this sticky-header
   layout that moves the toolbar itself down. Remove that top gap and reserve
   the toolbar height on the body instead, so the order is: toolbar -> site header. */
html { padding-top: 0 !important; }
html:has(body.admin-bar) { margin-top: 0 !important; }
body.admin-bar { margin-top: 0 !important; padding-top: 32px !important; }
@media (max-width: 782px) {
  body.admin-bar { padding-top: 46px !important; }
}
