@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-cyrillic-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-cyrillic-ext-700-normal.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-cyrillic-400-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-cyrillic-700-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-ext-700-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "DIN Pro Local";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/din-pro/DINPro.ttf") format("truetype");
}

@font-face {
  font-family: "DIN Pro Local";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/din-pro/DINPro-Bold.ttf") format("truetype");
}

:root {
  --cyan: #08a9dc;
  --magenta: #e0007a;
  --yellow: #ffd800;
  --green: #009a44;
  --ink: #24272b;
  --muted: #667078;
  --line: #dfe5e8;
  --surface: #fff;
  --soft: #f6f8f7;
  --soft-cyan: #eaf8fc;
  --soft-pink: #fff0f6;
  --soft-yellow: #fff9d7;
  --soft-green: #edf8f1;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(26, 38, 45, 0.08);
  --font-body: "DIN Pro Local", "Bahnschrift", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-display: "Segoe UI", Arial, Helvetica, sans-serif;
  --weight-bold: 600;
  --weight-heavy: 650;
  color: var(--ink);
  font-family: var(--font-body);
  background: var(--soft);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(255, 216, 0, 0.10), transparent 36%),
    var(--soft);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.page {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  display: block;
  width: 236px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  font-size: 15px;
  font-weight: var(--weight-bold);
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 3px solid transparent;
}

.site-nav a:nth-child(1):hover,
.site-nav a:nth-child(1):focus {
  border-color: var(--cyan);
}

.site-nav a:nth-child(2):hover,
.site-nav a:nth-child(2):focus {
  border-color: var(--yellow);
}

.site-nav a:nth-child(3):hover,
.site-nav a:nth-child(3):focus {
  border-color: var(--green);
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  padding: 36px 0 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 20px;
  align-items: stretch;
}

.hero-grid > *,
.intro-panel,
.intro-copy,
.banner-card {
  min-width: 0;
}

.intro-panel,
.banner-card,
.event-card,
.business-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-panel {
  display: grid;
  min-height: 336px;
  overflow: hidden;
}

.intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
}

.eyebrow,
.rail-kicker,
.source {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow), var(--green));
}

h1,
h2,
h3,
p {
  margin: 0;
}

strong,
b {
  font-weight: var(--weight-bold);
}

h1,
h2,
h3,
.rail-title,
.card-title,
.banner-title,
.topic-link {
  font-family: var(--font-display);
  font-weight: var(--weight-heavy);
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-top: 18px;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 0.94;
  overflow-wrap: break-word;
}

.intro-text {
  max-width: 560px;
  margin-top: 18px;
  color: #4e555a;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: var(--weight-heavy);
  line-height: 1.2;
}

.button {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--soft-cyan), var(--surface));
}

.rail-item {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.rail-item:last-child {
  border-right: 0;
}

.rail-title {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: break-word;
}

.banner-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-color: rgba(36, 39, 43, 0.16);
  background: #111a21;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.banner-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8, 169, 220, 0.3);
  box-shadow: 0 28px 60px rgba(22, 38, 49, 0.2);
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
}

.banner-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 20, 31, 0.92) 0%, rgba(5, 20, 31, 0.72) 44%, rgba(5, 20, 31, 0.12) 100%),
    linear-gradient(180deg, rgba(17, 26, 33, 0.02), rgba(17, 26, 33, 0.62));
}

.banner-card .rail-kicker,
.banner-card .card-text {
  color: rgba(255, 255, 255, 0.84);
}

.banner-card .card-text {
  display: block;
  max-width: 300px;
  margin-top: 0;
}

.banner-title {
  display: block;
  max-width: 290px;
  font-size: 28px;
  line-height: 1.12;
  font-family: var(--font-display);
  font-weight: var(--weight-heavy);
  color: #fff;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 40px;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 15px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.banner-card:hover .banner-cta {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.62);
}

.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  overflow: visible;
  padding: 2px 0 4px;
}

.topic-link {
  flex: 0 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(30, 42, 48, 0.06);
  font-size: 16px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topic-link:nth-child(4n+1) {
  border-color: rgba(8, 169, 220, 0.35);
}

.topic-link:nth-child(4n+2) {
  border-color: rgba(224, 0, 122, 0.35);
}

.topic-link:nth-child(4n+3) {
  border-color: rgba(255, 216, 0, 0.8);
}

.topic-link:nth-child(4n+4) {
  border-color: rgba(0, 154, 68, 0.35);
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.region-list .topic-link {
  flex: 0 1 200px;
  width: auto;
  min-height: 40px;
  padding: 8px 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.section.regions-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 22px 0 10px;
  padding: 46px 0 44px;
  border-top: 1px solid rgba(8, 169, 220, 0.12);
  border-bottom: 1px solid rgba(0, 154, 68, 0.12);
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(255, 216, 0, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 248, 247, 0.72));
}

.regions-section::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 18px;
  z-index: 0;
  width: min(520px, 46vw);
  height: 128px;
  border: 1px solid rgba(0, 154, 68, 0.18);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.regions-map-accent {
  position: absolute;
  top: 14px;
  right: max(-24px, calc((100vw - 1180px) / 2 - 36px));
  z-index: 0;
  width: min(760px, 62vw);
  height: 300px;
  opacity: 0.24;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='760' height='300' viewBox='0 0 760 300' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 190 C84 130 132 132 182 146 C224 84 286 92 323 130 C366 86 415 102 440 132 C486 96 537 106 563 145 C619 119 690 133 728 184 C694 224 638 224 604 203 C565 241 513 240 473 204 C428 234 371 230 343 194 C302 220 248 214 218 178 C164 211 96 221 40 190Z' stroke='%2308a9dc' stroke-width='3' stroke-linejoin='round'/%3E%3Cpath d='M78 183 C164 157 245 158 338 170 C444 183 534 181 681 160' stroke='%23e0007a' stroke-width='2' stroke-linecap='round' stroke-dasharray='10 12'/%3E%3Cpath d='M126 220 C221 201 330 199 421 212 C512 225 598 220 694 192' stroke='%23009a44' stroke-width='2' stroke-linecap='round' stroke-dasharray='3 10'/%3E%3Ccircle cx='126' cy='172' r='8' fill='%23ffffff' stroke='%2308a9dc' stroke-width='4'/%3E%3Ccircle cx='248' cy='158' r='8' fill='%23ffffff' stroke='%23ffd800' stroke-width='4'/%3E%3Ccircle cx='375' cy='176' r='8' fill='%23ffffff' stroke='%23e0007a' stroke-width='4'/%3E%3Ccircle cx='522' cy='174' r='8' fill='%23ffffff' stroke='%23009a44' stroke-width='4'/%3E%3Ccircle cx='651' cy='158' r='8' fill='%23ffffff' stroke='%2308a9dc' stroke-width='4'/%3E%3Cpath d='M182 146 L216 178 L248 158 L323 130 L375 176 L440 132 L522 174 L563 145 L651 158' stroke='%2324272b' stroke-opacity='0.22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.regions-section .section-head,
.regions-section .region-list {
  position: relative;
  z-index: 1;
}

.regions-section .region-list {
  max-width: 1080px;
}

.regions-section .topic-link {
  border-color: rgba(36, 39, 43, 0.14);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.regions-section .topic-link:nth-of-type(4n+1) {
  border-color: rgba(8, 169, 220, 0.40);
}

.regions-section .topic-link:nth-of-type(4n+2) {
  border-color: rgba(224, 0, 122, 0.34);
}

.regions-section .topic-link:nth-of-type(4n+3) {
  border-color: rgba(255, 216, 0, 0.82);
}

.regions-section .topic-link:nth-of-type(4n+4) {
  border-color: rgba(0, 154, 68, 0.36);
}

.regions-section .topic-link:hover,
.regions-section .topic-link:focus {
  transform: translateY(-1px);
  border-color: rgba(8, 169, 220, 0.42);
  box-shadow: 0 16px 30px rgba(30, 42, 48, 0.10);
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
}

.section-lead {
  max-width: 680px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.all-link {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  background: #fff;
  white-space: nowrap;
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.empty-state.compact {
  padding: 10px 14px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.event-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-color: rgba(36, 39, 43, 0.14);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(8, 169, 220, 0.34);
  box-shadow: 0 24px 52px rgba(26, 38, 45, 0.13);
}

.card-link {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
}

.card-visual {
  position: relative;
  height: clamp(142px, 12vw, 166px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.16) 0 18%, transparent 18%),
    linear-gradient(90deg, rgba(255, 216, 0, 0.24) 0 34%, transparent 34%),
    linear-gradient(135deg, var(--soft-cyan), #fff 62%, var(--soft-green));
}

.card-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-visual img[hidden] {
  display: none;
}

.image-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.48) 44%, transparent 45%),
    linear-gradient(90deg, rgba(8, 169, 220, 0.14) 0 18%, transparent 18%),
    linear-gradient(90deg, rgba(255, 216, 0, 0.22) 0 36%, transparent 36%),
    linear-gradient(135deg, #fff, var(--soft-cyan) 50%, var(--soft-green));
}

.card-visual.has-photo.image-loaded .image-fallback {
  opacity: 0;
}

.card-visual .card-symbol {
  position: static;
  z-index: auto;
  display: block;
  width: min(82%, 220px);
  max-height: 82px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  filter: drop-shadow(0 12px 20px rgba(26, 38, 45, 0.1));
}

.card-visual.image-missing .photo-date-overlay {
  min-height: 74px;
  padding: 30px 12px 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 68%, rgba(255, 255, 255, 0.98) 100%);
}

.card-visual.image-missing .photo-date-overlay span {
  width: fit-content;
  max-width: 100%;
  padding: 6px 8px;
  border: 1px solid rgba(8, 169, 220, 0.24);
  border-radius: 999px;
  background: #fff;
  color: #075f7b;
  font-size: 14px;
  text-shadow: none;
}

.photo-date-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 96px;
  padding: 48px 14px 12px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 16, 0) 0%,
    rgba(8, 12, 16, 0.44) 34%,
    rgba(8, 12, 16, 0.86) 72%,
    rgba(8, 12, 16, 0.96) 100%
  );
  pointer-events: none;
}

.photo-date-overlay span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-heavy);
  line-height: 1.1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fallback-kicker {
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  font-size: 12px;
  font-weight: var(--weight-heavy);
  line-height: 1.2;
}

.fallback-kicker {
  padding: 6px 9px;
  background: #fff;
  color: #057699;
  box-shadow: 0 8px 20px rgba(26, 38, 45, 0.08);
}

.fallback-title {
  max-width: 190px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: var(--weight-heavy);
  line-height: 0.98;
}

.image-fallback .fallback-title {
  max-width: 170px;
  font-size: 24px;
  line-height: 1.02;
}

.event-body,
.theme-body,
.business-body,
.news-body {
  padding: 18px;
}

.event-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.event-place {
  margin-top: auto;
  min-height: 62px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.event-place-region,
.event-place-name {
  display: block;
  overflow: hidden;
}

.event-place-region {
  color: #126438;
  font-size: 14px;
  font-weight: var(--weight-heavy);
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-place-name {
  display: -webkit-box;
  margin-top: 4px;
  color: #667078;
  font-size: 12px;
  font-weight: var(--weight-bold);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.event-card .tag-row {
  gap: 6px;
  min-height: 26px;
  overflow: hidden;
}

.event-card .tag-row-empty {
  visibility: hidden;
}

.tag,
.project-badge,
.partner-mark {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: var(--weight-heavy);
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag {
  background: var(--soft-cyan);
  color: #057699;
}

.event-card:nth-child(2n) .tag,
.theme-row:nth-child(2n) .tag,
.news-card:nth-child(2n) .tag {
  background: var(--soft-pink);
  color: #a4085e;
}

.event-card:nth-child(3n) .tag,
.theme-row:nth-child(3n) .tag {
  background: var(--soft-yellow);
  color: #715f00;
}

.event-card:nth-child(4n) .tag,
.theme-row:nth-child(4n) .tag {
  background: var(--soft-green);
  color: #17683b;
}

.project-badge {
  border: 1px solid rgba(8, 169, 220, 0.32);
  background: #fff;
  color: #21566a;
}

.partner-mark {
  background: var(--soft-green);
  color: #126438;
}

.card-title {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.16;
  overflow-wrap: break-word;
}

.event-card .card-title {
  display: -webkit-box;
  min-height: 66px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-text {
  margin-top: 10px;
  color: #4f585f;
  font-size: 14px;
  line-height: 1.5;
}

.event-card .card-text {
  display: -webkit-box;
  flex: 0 0 auto;
  margin-bottom: 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1.45;
}

.theme-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.theme-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 42, 48, 0.06);
}

.theme-row-head {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.theme-tag {
  min-height: 28px;
  font-size: 12px;
}

.theme-events {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-event {
  flex: 1 1 190px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(36, 39, 43, 0.10);
  border-radius: var(--radius);
  background: var(--soft);
}

.theme-event-title,
.theme-event-meta {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-event-title {
  color: var(--ink);
  font-size: 13px;
  font-weight: var(--weight-heavy);
  line-height: 1.25;
}

.theme-event-meta {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: var(--weight-bold);
  line-height: 1.25;
}

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 0;
  overflow: hidden;
  border-color: rgba(0, 154, 68, 0.28);
}

.business-card h2 {
  margin-top: 10px;
}

.business-side {
  padding: 22px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(0, 154, 68, 0.13), rgba(8, 169, 220, 0.11)),
    #fff;
}

.business-side .source {
  margin-top: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(280px, 1fr);
  gap: 16px;
  align-items: stretch;
}

.news-card {
  display: flex;
  min-height: 280px;
  height: 100%;
}

.news-card-link {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 100%;
  color: inherit;
}

.news-card .source {
  margin-top: 12px;
}

.news-card .news-body {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
}

.news-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  min-height: 26px;
}

.news-card .tag-row {
  min-width: 0;
  overflow: hidden;
}

.news-card .tag {
  max-width: 100%;
}

.news-date {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-heavy);
  line-height: 26px;
  white-space: nowrap;
}

.news-card .card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.news-card .card-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.news-card .news-source {
  margin-top: auto;
  padding-top: 18px;
}

.blog-page,
.blog-detail-page {
  padding: 30px 0 8px;
}

.blog-hero,
.blog-detail-hero {
  min-width: 0;
  margin-bottom: 20px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 216, 0, 0.16), transparent 44%),
    #fff;
  box-shadow: var(--shadow);
}

.blog-hero h1,
.blog-detail-hero h1 {
  max-width: 920px;
  margin-top: 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
}

.blog-list {
  display: grid;
  gap: 12px;
}

.blog-list-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(26, 38, 45, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.blog-list-card:hover,
.blog-list-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(8, 169, 220, 0.34);
  box-shadow: 0 20px 44px rgba(26, 38, 45, 0.11);
}

.blog-list-card a {
  display: grid;
  min-width: 0;
  gap: 10px;
  padding: 18px;
}

.blog-list-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: var(--weight-heavy);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.blog-list-card p {
  display: -webkit-box;
  overflow: hidden;
  color: #4f585f;
  font-size: 16px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1.35;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: var(--weight-bold);
  line-height: 1.1;
}

.pagination .current {
  border-color: rgba(8, 169, 220, 0.42);
  background: var(--soft-cyan);
  color: #057699;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.blog-article {
  color: #30363b;
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.blog-article p + p {
  margin-top: 12px;
}

.blog-article a {
  color: #057699;
  font-weight: var(--weight-bold);
}

.blog-side {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.blog-related-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.blog-related-card {
  display: grid;
  min-width: 0;
  gap: 7px;
  padding: 12px;
  border: 1px solid rgba(8, 169, 220, 0.22);
  border-radius: var(--radius);
  background: var(--soft-cyan);
}

.blog-related-card span,
.blog-related-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: var(--weight-bold);
  line-height: 1.35;
}

.blog-related-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--weight-heavy);
  line-height: 1.2;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.collection-page,
.regions-page,
.events-index-page,
.themes-index-page {
  padding: 30px 0 8px;
}

.collection-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-bold);
}

.collection-back:hover,
.collection-back:focus {
  color: var(--ink);
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 216, 0, 0.16), transparent 44%),
    #fff;
  box-shadow: var(--shadow);
}

.collection-hero-copy {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
}

.collection-hero h1 {
  max-width: 820px;
  margin-top: 16px;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.collection-lead {
  max-width: 720px;
  margin-top: 16px;
  color: #4e555a;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
}

.collection-hero-side {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(234, 248, 252, 0.96), rgba(255, 255, 255, 0.9));
}

.collection-hero-side strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--weight-heavy);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.collection-hero-side p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.collection-empty {
  margin-top: 24px;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.collection-empty h2 {
  font-size: 24px;
  line-height: 1.15;
}

.collection-empty p {
  max-width: 620px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.collection-featured {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  align-items: stretch;
}

.collection-featured-mosaic,
.collection-featured-compact,
.collection-featured-two {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.collection-featured-one {
  grid-template-columns: 1fr;
}

.collection-spotlight-card,
.collection-mini-card,
.collection-list-card,
.region-index-card,
.theme-index-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 39, 43, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.collection-spotlight-card:hover,
.collection-spotlight-card:focus-within,
.collection-mini-card:hover,
.collection-mini-card:focus-within,
.collection-list-card:hover,
.collection-list-card:focus-within,
.region-index-card:hover,
.region-index-card:focus,
.theme-index-card:hover,
.theme-index-card:focus {
  transform: translateY(-2px);
  border-color: rgba(8, 169, 220, 0.34);
  box-shadow: 0 24px 52px rgba(26, 38, 45, 0.13);
}

.collection-spotlight-card a,
.collection-mini-card a,
.collection-list-card a {
  display: grid;
  height: 100%;
  min-width: 0;
}

.collection-spotlight-single a {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.collection-spotlight-lead a {
  grid-template-rows: auto 1fr;
}

.collection-spotlight-visual,
.collection-mini-visual,
.collection-list-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.20) 0 20%, transparent 20%),
    linear-gradient(90deg, rgba(255, 216, 0, 0.28) 0 42%, transparent 42%),
    linear-gradient(135deg, #fff, var(--soft-cyan) 48%, var(--soft-green));
}

.collection-spotlight-visual {
  min-height: 360px;
}

.collection-spotlight-single .collection-spotlight-visual {
  min-height: 340px;
}

.collection-spotlight-visual img,
.collection-mini-visual img,
.collection-list-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-spotlight-visual img:not(.collection-symbol),
.collection-mini-visual img:not(.collection-symbol),
.collection-list-visual img:not(.collection-symbol) {
  z-index: 1;
}

.collection-spotlight-visual img.collection-symbol,
.collection-mini-visual img.collection-symbol,
.collection-list-visual img.collection-symbol {
  position: absolute;
  z-index: 0;
  inset: auto;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: clamp(220px, 58%, 390px);
  max-height: 132px;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 16px 28px rgba(26, 38, 45, 0.1));
}

.collection-mini-visual img.collection-symbol {
  width: min(78%, 210px);
  max-height: 78px;
}

.collection-list-visual img.collection-symbol {
  width: min(76%, 168px);
  max-height: 60px;
}

.collection-spotlight-visual.no-photo,
.collection-mini-visual.no-photo,
.collection-list-visual.no-photo {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.5) 42%, transparent 43%),
    linear-gradient(90deg, rgba(8, 169, 220, 0.12) 0 18%, transparent 18%),
    linear-gradient(90deg, rgba(255, 216, 0, 0.2) 0 36%, transparent 36%),
    linear-gradient(135deg, #fff, var(--soft-cyan) 52%, var(--soft-green));
}

.collection-photo-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 12, 16, 0.02), rgba(8, 12, 16, 0.18) 44%, rgba(8, 12, 16, 0.88) 100%),
    linear-gradient(90deg, rgba(8, 12, 16, 0.44), transparent 58%);
}

.collection-spotlight-visual.no-photo .collection-photo-shade,
.collection-mini-visual.no-photo .collection-photo-shade {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.88) 100%);
}

.collection-date {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: block;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: var(--weight-heavy);
  line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-spotlight-visual.no-photo .collection-date,
.collection-mini-visual.no-photo .collection-date {
  right: auto;
  left: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 7px 10px;
  border: 1px solid rgba(8, 169, 220, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #075f7b;
  font-size: 15px;
  text-shadow: none;
}

.collection-spotlight-body,
.collection-mini-body,
.collection-list-body {
  min-width: 0;
}

.collection-spotlight-body {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.collection-card-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-spotlight-body h2 {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.collection-spotlight-body p {
  display: -webkit-box;
  margin-top: 14px;
  overflow: hidden;
  color: #4f585f;
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.collection-place {
  display: -webkit-box;
  min-width: 0;
  margin-top: auto;
  padding-top: 14px;
  overflow: hidden;
  color: #126438;
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection-featured-side {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.collection-featured-two .collection-featured-side {
  grid-template-columns: 1fr;
}

.collection-featured-two .collection-mini-visual {
  min-height: 250px;
}

.collection-featured-two .collection-mini-body {
  min-height: 0;
  padding: clamp(22px, 3vw, 30px);
}

.collection-featured-two .collection-mini-body h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  -webkit-line-clamp: 4;
}

.collection-mini-card a {
  grid-template-rows: auto 1fr;
}

.collection-mini-visual {
  min-height: 150px;
}

.collection-mini-body {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  padding: 14px;
}

.collection-mini-body h3 {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--weight-heavy);
  line-height: 1.16;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.collection-list-section {
  margin-top: 30px;
}

.collection-pagination {
  margin-top: 22px;
}

.collection-list-head {
  margin-bottom: 14px;
}

.collection-list-head h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.collection-event-list {
  display: grid;
  gap: 12px;
}

.collection-list-card a {
  grid-template-columns: 220px minmax(0, 1fr);
}

.collection-list-visual {
  min-height: 142px;
}

.collection-list-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(8, 12, 16, 0.04), rgba(8, 12, 16, 0.68));
}

.collection-list-visual.no-photo::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86));
}

.collection-list-visual span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 3;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--weight-heavy);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.collection-list-visual.no-photo span {
  right: auto;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 6px 8px;
  border: 1px solid rgba(8, 169, 220, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #075f7b;
  font-size: 13px;
  text-shadow: none;
}

.collection-list-body {
  display: grid;
  align-content: start;
  padding: 16px 18px;
}

.collection-list-body h3 {
  display: -webkit-box;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: var(--weight-heavy);
  line-height: 1.16;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection-list-body p {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #4f585f;
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection-list-body .collection-place {
  margin-top: 10px;
  padding-top: 0;
  -webkit-line-clamp: 1;
}

.regions-index-hero {
  margin-bottom: 24px;
}

.regions-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.events-index-grid {
  margin-top: 24px;
}

.events-pagination {
  margin-top: 22px;
}

.themes-index-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.region-index-card {
  display: grid;
  min-height: 96px;
  align-content: space-between;
  padding: 16px;
}

.region-index-card span {
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  font-weight: var(--weight-bold);
  line-height: 1.22;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.region-index-card em {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft-cyan);
  color: #057699;
  font-size: 13px;
  font-style: normal;
  font-weight: var(--weight-bold);
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-detail-page {
  min-width: 0;
}

.detail-hero {
  padding: 30px 0 24px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-bold);
}

.detail-back:hover,
.detail-back:focus {
  color: var(--ink);
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: start;
}

.detail-hero-text-only .detail-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.detail-photo,
.detail-intro-panel,
.detail-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.detail-photo {
  position: relative;
  aspect-ratio: 1.55 / 1;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 169, 220, 0.18) 0 18%, transparent 18%),
    linear-gradient(90deg, rgba(255, 216, 0, 0.28) 0 34%, transparent 34%),
    linear-gradient(135deg, #fff, var(--soft-cyan) 52%, var(--soft-green));
}

.detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.detail-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #111a21;
}

.detail-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.detail-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.detail-carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 44px;
  height: 58px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius);
  background: rgba(10, 16, 21, 0.58);
  color: #fff;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: var(--weight-bold);
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.detail-carousel-button:hover,
.detail-carousel-button:focus {
  background: rgba(10, 16, 21, 0.78);
  outline: none;
}

.detail-carousel-button-prev {
  left: 16px;
}

.detail-carousel-button-next {
  right: 16px;
}

.detail-carousel-count {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(10, 16, 21, 0.62);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1;
  backdrop-filter: blur(10px);
}

.detail-photo-fallback {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(22px, 4vw, 38px);
}

.detail-photo-fallback .fallback-title {
  max-width: 330px;
  font-size: clamp(34px, 5vw, 56px);
}

.detail-photo-date {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 138px;
  align-items: flex-end;
  padding: 68px 22px 20px;
  color: #fff;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 16, 0) 0%,
    rgba(8, 12, 16, 0.54) 38%,
    rgba(8, 12, 16, 0.91) 76%,
    rgba(8, 12, 16, 0.98) 100%
  );
}

.detail-photo-date span {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: var(--weight-heavy);
  line-height: 1.08;
  overflow-wrap: break-word;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.detail-photo figcaption {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  max-width: min(420px, calc(100% - 28px));
  padding: 8px 10px;
  border-radius: var(--radius);
  background: rgba(17, 26, 33, 0.68);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(10px);
}

.detail-intro-panel {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: clamp(24px, 4vw, 40px);
}

.detail-intro-main {
  min-width: 0;
}

.detail-intro-panel h1 {
  max-width: 100%;
  margin-top: 16px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.detail-intro-panel.is-long-title h1 {
  font-size: clamp(24px, 2.3vw, 32px);
  line-height: 1.15;
}

.detail-intro-panel.is-very-long-title h1 {
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.16;
}

.detail-intro-text-only {
  min-height: 0;
  justify-content: flex-start;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 82px 82px, rgba(8, 169, 220, 0.08), transparent 72px),
    linear-gradient(135deg, #fff 0%, #fff 58%, rgba(237, 248, 241, 0.86) 100%);
}

.detail-intro-text-only .detail-intro-main {
  max-width: 980px;
}

.detail-intro-text-only h1 {
  max-width: 980px;
  margin-top: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
}

.detail-intro-text-only.is-long-title h1 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.12;
}

.detail-intro-text-only.is-very-long-title h1 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.16;
}

.detail-lead {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 18px;
  color: #4e555a;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.58;
  overflow-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-bold);
  line-height: 1.35;
}

.detail-meta-row span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  overflow-wrap: break-word;
}

.detail-meta-row span + span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-right: 14px;
  border-radius: 999px;
  background: var(--cyan);
}

.detail-section {
  padding-top: 8px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}

.detail-main,
.detail-side {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.detail-panel {
  padding: clamp(18px, 3vw, 28px);
}

.detail-section-title {
  margin-bottom: 16px;
}

.detail-section-title h2,
.detail-info-card h2,
.detail-travel h2,
.detail-gallery h2 {
  margin-top: 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.detail-story-body {
  max-width: none;
  color: #30363b;
  font-size: 17px;
  line-height: 1.72;
  overflow-wrap: break-word;
}

.detail-story-body p + p,
.detail-info-card p + p,
.detail-travel p + p,
.detail-side-panel p + p {
  margin-top: 12px;
}

.detail-muted {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.detail-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-info-card {
  padding: 22px;
}

.detail-info-card h2 {
  margin-top: 0;
  font-size: 23px;
}

.detail-info-card p,
.detail-travel p,
.detail-side-panel p {
  color: #4f585f;
  font-size: 15px;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.detail-travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.detail-travel h3,
.detail-side-panel h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: var(--weight-heavy);
  line-height: 1.22;
}

.detail-travel h3:not(:first-child),
.detail-side-panel h3:not(:first-child) {
  margin-top: 16px;
}

.detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.detail-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-gallery figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.detail-side-panel {
  padding: 18px;
}

.detail-side-title {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: var(--weight-heavy);
  line-height: 1.2;
  overflow-wrap: break-word;
}

.detail-date-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.detail-date-list li {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(8, 169, 220, 0.24);
  border-radius: var(--radius);
  background: var(--soft-cyan);
}

.detail-date-main,
.detail-date-note {
  display: block;
  overflow-wrap: break-word;
}

.detail-date-main {
  color: #075f7b;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: var(--weight-heavy);
  line-height: 1.25;
}

.detail-date-note {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
  line-height: 1.35;
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.detail-facts div {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.detail-facts dt,
.detail-facts dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: break-word;
  line-height: 1.35;
}

.detail-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-bold);
}

.detail-facts dd {
  color: var(--ink);
  font-size: 14px;
  font-weight: var(--weight-heavy);
}

.detail-tags {
  margin-top: 14px;
}

.event-detail-page .detail-tags .tag {
  min-height: 28px;
  white-space: normal;
}

.detail-source-link {
  display: inline-flex;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  margin-top: 14px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: #057699;
  font-size: 14px;
  font-weight: var(--weight-heavy);
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.detail-source-link:hover,
.detail-source-link:focus {
  border-color: rgba(8, 169, 220, 0.44);
  background: var(--soft-cyan);
}

.detail-side-panel .source {
  margin-top: 14px;
}

.site-footer {
  margin-top: 34px;
  padding: 34px 0 40px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.site-footer img {
  width: 240px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: var(--weight-heavy);
}

.site-footer p {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.site-footer p + p {
  margin-top: 14px;
}

@media (max-width: 1080px) {
  .event-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-featured-mosaic,
  .collection-featured-compact,
  .collection-featured-two {
    grid-template-columns: 1fr;
  }

  .collection-featured-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-hero-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-photo,
  .detail-photo img,
  .detail-photo-fallback,
  .detail-intro-panel {
    min-height: 340px;
  }
}

@media (min-width: 901px) {
  .regions-section .region-list .topic-link {
    height: 40px;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .event-grid-count-8 .event-card:nth-child(n+7),
  .event-grid-count-4 .event-card:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-header__inner,
  .hero-grid,
  .collection-hero,
  .blog-detail-layout,
  .business-card,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    gap: 10px;
    padding: 14px 0;
  }

  .brand img {
    width: min(310px, 100%);
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
    overflow-x: visible;
    padding-bottom: 4px;
    white-space: normal;
  }

  .hero-rail,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .detail-info-grid,
  .detail-travel-grid,
  .detail-gallery-grid {
    grid-template-columns: 1fr;
  }

  .rail-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-item:last-child {
    border-bottom: 0;
  }

  .business-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .collection-hero-side {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 24px;
  }

  .section.regions-section {
    margin: 16px 0 8px;
    padding: 34px 0 32px;
  }

  .regions-map-accent {
    top: 74px;
    right: -210px;
    width: 620px;
    opacity: 0.14;
  }

  .regions-section::after {
    right: -220px;
    bottom: 24px;
    width: 420px;
    opacity: 0.6;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .theme-row {
    grid-template-columns: 1fr;
  }

  .collection-page,
  .regions-page {
    padding-top: 22px;
  }

  .collection-hero-copy,
  .collection-hero-side {
    padding: 22px;
  }

  .collection-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .collection-spotlight-single a,
  .collection-list-card a {
    grid-template-columns: 1fr;
  }

  .collection-spotlight-visual,
  .collection-spotlight-single .collection-spotlight-visual {
    min-height: 260px;
  }

  .collection-featured-side {
    grid-template-columns: 1fr;
  }

  .collection-mini-visual,
  .collection-list-visual {
    min-height: 190px;
  }

  .collection-mini-body {
    min-height: 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .banner-card {
    min-height: 250px;
  }

  .detail-hero {
    padding-top: 20px;
  }

  .detail-photo,
  .detail-photo img,
  .detail-photo-fallback,
  .detail-intro-panel {
    min-height: 300px;
  }

  .detail-photo {
    height: 300px;
    aspect-ratio: auto;
  }

  .detail-photo-date {
    min-height: 116px;
    padding: 54px 16px 16px;
  }

  .detail-intro-panel {
    padding: 22px;
  }

  .detail-intro-panel h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .detail-intro-panel.is-long-title h1 {
    font-size: clamp(24px, 6.4vw, 30px);
  }

  .detail-intro-panel.is-very-long-title h1 {
    font-size: clamp(22px, 5.6vw, 27px);
  }

  .detail-intro-text-only {
    padding: 22px;
  }

  .detail-intro-text-only h1,
  .detail-intro-text-only.is-long-title h1,
  .detail-intro-text-only.is-very-long-title h1 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.14;
  }

  .detail-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
