:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fbf8f4;
  --ink: #161616;
  --muted: #6d6b68;
  --line: rgba(22, 22, 22, 0.08);
  --accent: #ff8f3d;
  --accent-soft: #ffe8d5;
  --blue: #4d87ff;
  --pink: #f0bfd9;
  --mint: #dff3ec;
  --shadow: 0 20px 60px rgba(31, 25, 20, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

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

button {
  font: inherit;
}

.container {
  width: min(1104px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(22, 22, 22, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 8px 0;
}

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

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
  object-position: center;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #161616 0%, #3b3b3b 100%);
  color: #fff;
  font-size: 1.1rem;
}

.text-link {
  font-weight: 600;
}

.nav-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #24344f;
  font-size: 0.98rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-location select {
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  appearance: none;
  cursor: pointer;
  padding: 0;
}

.nav-search,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-search {
  position: relative;
  flex: 1 1 640px;
  max-width: 560px;
  margin: 0 auto;
  min-height: 38px;
  padding: 0 6px 0 14px;
  background: #ffffff;
  border: 1px solid #cfd7e3;
  box-shadow: 0 8px 30px rgba(31, 25, 20, 0.04);
}

.nav-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.96rem;
  padding-right: 10px;
}

.nav-search.typing-active input {
  caret-color: transparent;
}

.nav-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 0;
  border-radius: 10px;
  background: #ff7a00;
  color: #fff;
  cursor: pointer;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2971e8 0%, #1f5fd5 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(41, 113, 232, 0.24);
}

.primary-btn {
  border: 0;
  padding: 14px 22px;
  background: #161616;
  color: #fff;
  cursor: pointer;
}

.nav-search:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 20px 48px rgba(31, 25, 20, 0.12);
  z-index: 25;
}

.search-dropdown-group + .search-dropdown-group {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(22, 22, 22, 0.06);
}

.search-dropdown-title {
  margin: 0 0 8px;
  padding: 0 8px;
  color: #8b4f21;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-dropdown-list {
  display: grid;
  gap: 4px;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.18s ease, transform 0.18s ease;
}

.search-result-item:hover {
  background: #f8f5f0;
  transform: translateY(-1px);
}

.search-result-copy {
  min-width: 0;
}

.search-result-copy strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item > i {
  color: var(--accent);
}

.search-empty {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-section {
  padding: 34px 0 24px;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px;
  min-height: 280px;
  padding: 44px 56px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(90deg, #1779c9 0%, #66aee7 100%);
  color: #fff;
}

.hero-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 22, 22, 0.06);
  color: #8d5a29;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-banner h1,
.section-head h2,
.scene-card h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.05em;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
}

.hero-banner h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.05;
  color: #fff;
}

.hero-banner h1 strong {
  color: #fff;
}

.hero-banner p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-cta {
  margin-top: 22px;
}

.hero-banner-art {
  position: relative;
  min-height: 220px;
}

.art-glow {
  position: absolute;
  right: -30px;
  bottom: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.06) 55%, transparent 72%);
}

.art-card {
  position: absolute;
  min-width: 190px;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 38px rgba(18, 74, 122, 0.16);
  transition: top 0.35s ease, right 0.35s ease, bottom 0.35s ease, left 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.art-card strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #fff;
}

.art-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.hero-rotating-text {
  min-height: 3.2em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.art-card-dynamic {
  width: min(100%, 240px);
}

.art-card-pos-1 {
  right: 90px;
  top: 24px;
}

.art-card-pos-2 {
  right: 18px;
  top: 84px;
}

.art-card-pos-3 {
  right: 110px;
  bottom: 22px;
}

.art-card-pos-4 {
  right: 0;
  bottom: 48px;
}

.scene-card-top,
.section-head,
.offer-foot,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mini-label,
.rating-pill,
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-label {
  padding: 8px 12px;
  background: #161616;
  color: #fff;
}

.rating-pill {
  padding: 8px 12px;
  background: var(--accent-soft);
  color: #9b571c;
}

.scene-card h2 {
  margin-top: 20px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.scene-tabs,
.event-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.scene-tabs {
  margin-top: 22px;
}

.scene-pill,
.tab-btn {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.scene-pill {
  padding: 12px 16px;
}

.scene-pill.active,
.tab-btn.active {
  background: #edf7ff;
  border-color: #bdddff;
  color: var(--ink);
}

.mini-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.mini-preview {
  min-height: 168px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
}

.mini-preview span,
.mini-preview small {
  display: block;
}

.mini-preview span,
.mini-preview small,
.event-date,
.event-place,
.event-meta,
.offer-card p,
.testimonial-card span,
.faq-list p,
.footer-copy,
.site-footer a,
.site-footer span {
  color: rgba(22, 22, 22, 0.62);
}

.mini-preview strong {
  display: block;
  margin: 18px 0 28px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.coral {
  background: linear-gradient(135deg, #e24757 0%, #ff8f3d 100%);
}

.blue {
  background: linear-gradient(135deg, #295ea8 0%, #5ba9ff 100%);
}

.peach {
  background: linear-gradient(135deg, #eaa4c7 0%, #ffd8be 100%);
}

.mini-preview.coral span,
.mini-preview.coral small,
.mini-preview.coral strong,
.mini-preview.blue span,
.mini-preview.blue small,
.mini-preview.blue strong {
  color: #fff;
}

.mini-preview.peach span,
.mini-preview.peach small {
  color: rgba(56, 30, 38, 0.7);
}

.mini-preview.peach strong {
  color: #6f3660;
}

.events-section,
.offers-section,
.testimonial-section,
.faq-section {
  padding: 32px 0 96px;
}

.events-page-hero {
  padding: 28px 0 18px;
}

.events-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.events-page-head h1 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.events-page-head p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.events-page-meta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 20px;
  color: #707783;
}

.events-page-meta strong {
  color: #101828;
  font-size: 1.05rem;
}

.events-filter-bar {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  min-width: min(100%, 600px);
  padding: 16px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(31, 25, 20, 0.06);
}

.events-filter-field {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.events-filter-field span {
  color: #8b4f21;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-filter-field select {
  appearance: none;
  min-height: 46px;
  padding: 0 42px 0 16px;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 999px;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4.5L6 8.5L10 4.5' stroke='%23161616' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  color: #161616;
  font: inherit;
  font-weight: 600;
  outline: 0;
  cursor: pointer;
}

.events-filter-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.events-filter-apply,
.events-filter-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
}

.events-filter-apply {
  border: 0;
  background: #161616;
  color: #fff;
  cursor: pointer;
}

.events-filter-clear {
  border: 1px solid rgba(22, 22, 22, 0.12);
  color: #161616;
  background: #fff;
}

.events-list-section {
  padding-top: 18px;
}

.events-empty-state {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 36px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.events-empty-state h2 {
  margin: 0;
  font-size: 1.4rem;
}

.events-empty-state p {
  margin: 0;
  color: var(--muted);
}

.events-empty-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #161616;
  color: #fff;
  font-weight: 700;
}

.section-head {
  margin-bottom: 26px;
}

.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.section-head-copy {
  min-width: 0;
}

.section-head-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  margin-top: 2px;
  border-radius: 50%;
  color: #f0441a;
  background: transparent;
  transition: transform 0.18s ease, background 0.18s ease;
}

.section-head-link i {
  font-size: 2rem;
  line-height: 1;
}

.section-head-link:hover,
.section-head-link:focus-visible {
  transform: translateX(2px);
  background: rgba(240, 68, 26, 0.08);
}

.section-head h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1;
}

.section-subtext {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.text-link {
  color: #8b4f21;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.event-card-link {
  display: block;
  color: inherit;
}

.offer-card-link {
  display: block;
  color: inherit;
}

.event-card,
.offer-card,
.testimonial-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 22, 22, 0.06);
  box-shadow: var(--shadow);
}

.event-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(31, 25, 20, 0.12);
  border-color: rgba(255, 143, 61, 0.22);
}

.event-card:hover .event-visual {
  transform: scale(1.03);
}

.event-visual {
  height: 176px;
  border-radius: 20px;
  transition: transform 0.28s ease;
}

.event-content {
  padding: 14px 16px 16px;
}

.event-content h3,
.offer-card h3,
.testimonial-card strong,
.faq-list summary,
.site-footer h3 {
  margin: 0;
  color: var(--ink);
}

.event-content h3 {
  margin-top: 6px;
  min-height: 0;
  color: #101828;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-date {
  margin: 0;
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.25;
  color: #717784;
  width: 100%;
  min-height: 1.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-place {
  margin: 8px 0 0;
  display: block;
  font-size: 0.84rem;
  color: #7b8391;
  width: 100%;
  min-height: 1.25em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.event-date span,
.event-place span,
.event-place a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.place-link,
.place-link-inline {
  color: inherit;
  text-decoration: none;
}

.place-link[href],
.place-link-inline[href] {
  text-decoration: underline;
  text-decoration-color: rgba(255, 143, 61, 0.45);
  text-underline-offset: 0.16em;
}

.event-card .event-place a.place-link,
.event-card .event-place a.place-link-inline,
.event-card .event-place a.place-link[href],
.event-card .event-place a.place-link-inline[href] {
  text-decoration: none !important;
  text-decoration-color: transparent !important;
  border-bottom: 0 !important;
}

.place-link[href]:hover,
.place-link-inline[href]:hover {
  color: #8b4f21;
}

.place-inline-text {
  color: inherit;
  font-weight: 400;
}

.faq-event-link {
  color: inherit;
  text-decoration: none;
}

.faq-event-link:hover,
.faq-event-link:focus-visible {
  color: #101828;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.faq-event-title {
  font-weight: 600;
}

.faq-offer-link {
  color: inherit;
  text-decoration: none;
}

.faq-offer-link:hover,
.faq-offer-link:focus-visible {
  color: #101828;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.faq-offer-title {
  font-weight: 600;
}

.event-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(22, 22, 22, 0.06);
  font-size: 0.84rem;
  font-weight: 500;
  color: #717784;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-meta i {
  color: #ff8f3d;
  font-size: 0.9rem;
}

.visual-one {
  background: linear-gradient(135deg, #651d59 0%, #ff7d34 100%);
}

.visual-two {
  background: linear-gradient(135deg, #255d8a 0%, #6fc0ff 100%);
}

.party-one {
  background: linear-gradient(135deg, #1e1b4b 0%, #8b5cf6 100%);
}

.party-two {
  background: linear-gradient(135deg, #301934 0%, #ff4d8d 100%);
}

.performance-one {
  background: linear-gradient(135deg, #8b3c16 0%, #d68a47 100%);
}

.performance-two {
  background: linear-gradient(135deg, #293462 0%, #4f7cff 100%);
}

.workshop-one {
  background: linear-gradient(135deg, #7a4a2f 0%, #d7a46a 100%);
}

.workshop-two {
  background: linear-gradient(135deg, #0f766e 0%, #6ad7c4 100%);
}

.offers-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.offer-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(31, 25, 20, 0.12);
  border-color: rgba(255, 143, 61, 0.22);
}

.offer-card:hover .offer-visual {
  transform: scale(1.03);
}

.offer-visual {
  height: 176px;
  border-radius: 20px;
  transition: transform 0.28s ease;
}

.offer-content {
  padding: 18px 18px 20px;
}

.offer-badge {
  margin-bottom: 14px;
  padding: 8px 12px;
  background: var(--accent);
  color: #fff;
}

.offer-badge.soft {
  background: var(--accent-soft);
  color: #a15a22;
}

.offer-card h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  min-height: 2.65em;
  color: #101828;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-card p {
  margin: 12px 0 0;
  color: #717784;
  font-size: 0.84rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.offer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
}

.offer-foot span {
  min-width: 0;
  color: #6d7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-place-link {
  min-width: 0;
  color: #6d7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.offer-foot a,
.offer-foot span:last-child {
  font-weight: 700;
  color: #8b4f21;
  white-space: nowrap;
}

.offer-two {
  background: linear-gradient(135deg, #295ea8 0%, #6fc0ff 100%);
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonial-scroll 36s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 280px;
  min-height: 290px;
  padding: 28px;
  border-radius: 8px;
  flex: 0 0 280px;
  background: #ffffff;
}

.testimonial-card p {
  margin: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #6f7681;
}

.testimonial-stars {
  margin-bottom: 18px;
  color: #f4b400;
  letter-spacing: 0.2em;
  font-size: 1rem;
}

.testimonial-card strong,
.site-footer h3 {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #161616;
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
}

@keyframes testimonial-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.faq-list {
  border-top: 1px solid rgba(22, 22, 22, 0.08);
}

.faq-list details {
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.faq-list summary {
  position: relative;
  padding: 22px 34px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
  color: #3c434d;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #6d7280;
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 0 22px;
}

.faq-list p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: #5f646d;
}

.faq-list ul {
  margin: 0;
  padding-left: 22px;
  color: #5f646d;
}

.faq-list li {
  margin: 0 0 8px;
  line-height: 1.75;
}

.faq-head {
  margin-bottom: 10px;
}

.site-footer {
  padding: 42px 0 20px;
  background: #262a31;
  color: rgba(255, 255, 255, 0.76);
}

.footer-breadcrumb-wrap {
  padding-bottom: 18px;
}

.footer-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-breadcrumb a {
  color: #ffffff;
  font-weight: 700;
}

.footer-breadcrumb i {
  font-size: 0.95rem;
}

.footer-breadcrumb span:last-child {
  color: #ffffff;
  font-weight: 700;
}

.footer-topics {
  display: grid;
  gap: 24px;
  padding-bottom: 28px;
}

.footer-topic h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  line-height: 1.9;
}

.footer-link-row a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-link-row a::after {
  content: "|";
  margin: 0 14px;
  color: rgba(255, 255, 255, 0.32);
}

.footer-link-row a:last-child::after {
  display: none;
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.site-footer h3 {
  margin-bottom: 16px;
}

.footer-nav-links a,
.site-footer span {
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  margin-left: auto;
}

.footer-counter {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  white-space: nowrap;
}

.footer-bottom > span:first-child {
  flex: 0 0 auto;
}

.footer-nav-links {
  flex: 0 0 auto;
}

.detail-section {
  padding: 12px 0 96px;
}

.detail-shell {
  display: grid;
  gap: 22px;
  width: 100%;
}

.detail-hero {
  padding: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 22, 22, 0.06);
  box-shadow: var(--shadow);
}

.detail-hero-head {
  max-width: 820px;
}

.detail-copy,
.detail-card,
.detail-empty {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 22, 22, 0.06);
  box-shadow: var(--shadow);
}

.detail-copy {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.detail-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #245d94;
  font-weight: 700;
}

.detail-breadcrumb i {
  font-size: 0.95rem;
}

.detail-breadcrumb span:last-child {
  color: var(--ink);
  font-weight: 700;
}

.detail-hero-head h1,
.detail-empty h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.detail-hero-head h1 {
  margin-top: 16px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.12;
}

.detail-summary {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.detail-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.detail-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 112px;
  padding: 18px 18px;
  border-radius: 10px;
  background: var(--surface-soft);
  border: 1px solid rgba(22, 22, 22, 0.06);
}

.detail-meta-item i {
  color: var(--accent);
  font-size: 1rem;
}

.detail-meta-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-meta-item strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  line-height: 1.5;
}

.detail-visual {
  min-height: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.detail-empty {
  padding: 42px 34px;
  border-radius: 8px;
}

.detail-empty h1 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.detail-empty p {
  margin: 16px 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.related-section {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.related-block h2 {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.related-items-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* Detail page layout */
.detail-hero-media {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  min-height: 440px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  isolation: isolate;
  margin: 0;
}

.detail-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-position: center;
  background-size: cover;
  transform: scale(1.16);
  filter: blur(18px) saturate(0.95);
  z-index: 0;
}

.detail-hero-media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79, 44, 16, 0.28), rgba(79, 44, 16, 0.08) 18%, rgba(79, 44, 16, 0.08) 82%, rgba(79, 44, 16, 0.28));
  z-index: 0;
}



.event-actions {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.action-btn:hover {
  background: #f8f5f0;
  border-color: var(--accent);
}

.event-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
}
.event-detail-item i {
  color: #8b9099;
  font-size: 1.05rem;
}
.event-detail-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-detail-content strong {
  color: #1e2430;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-detail-content span {
  color: #8a909b;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}
.calendar-link, .event-detail-content a {
  color: #2f6de1;
  font-weight: 600;
  font-size: 0.84rem;
}
.calendar-link i, .event-detail-content a i {
    font-size: 0.75rem;
}

.detail-hero-media-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79, 44, 16, 0.28), rgba(79, 44, 16, 0.08) 16%, rgba(79, 44, 16, 0.08) 84%, rgba(79, 44, 16, 0.28));
  z-index: 0;
}

.detail-hero-media-overlay {
  display: none;
}

.detail-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 440px;
  aspect-ratio: 1170 / 470;
  border-radius: 0;
  background-position: center;
  background-size: contain !important;
  background-repeat: no-repeat;
  box-shadow: 0 26px 54px rgba(26, 18, 11, 0.24);
}

.detail-hero-head-full {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8px 0 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-hero-head-full h1 {
  width: 100%;
  margin: 10px 0 0;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.04em;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
}

.detail-title-copy h1 {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1e2430;
  letter-spacing: -0.02em;
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  line-height: 1.15;
  font-weight: 700;
}

.detail-summary {
  width: 100%;
  max-width: none;
}

.detail-summary-block {
  margin-top: 24px;
}

.detail-content-left {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-inline-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.detail-inline-price {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-wrap: wrap;
}

.detail-inline-price strong {
  color: #161616;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1;
  font-weight: 800;
}

.detail-inline-ticket {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 3px;
  background: linear-gradient(180deg, #dc5600 0%, #d04d00 100%);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.detail-inline-ticket-disabled {
  background: linear-gradient(180deg, #dc5600 0%, #d04d00 100%);
}

.detail-interest-inline {
  color: #161616;
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 800;
  white-space: nowrap;
}

.detail-interest-count {
  color: #dc5600;
}

.detail-inline-meta-row .action-btn {
  padding: 8px 12px;
  font-size: 0.88rem;
  border-color: rgba(22, 22, 22, 0.14);
  background: #fff;
}

.detail-inline-divider {
  width: 100%;
  height: 1px;
  margin: 2px 0 0;
  background: rgba(22, 22, 22, 0.1);
}

.detail-inline-price-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px 0 14px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);
}

.detail-story {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.detail-info-block {
  display: grid;
  gap: 10px;
  margin-top: 0;
}

.detail-info-block h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.detail-info-list {
  display: grid;
  gap: 0;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fcfcfc;
}

.detail-summary-label {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.detail-summary-title {
  margin: 0;
  color: #1e2430;
  font-family: "Inter", sans-serif;
  font-size: 1.14rem;
  line-height: 1.22;
  font-weight: 700;
}

.detail-summary {
  margin: 0;
  color: #5f6672;
  line-height: 1.75;
  font-size: 0.98rem;
}

.detail-hero-body {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.detail-title-copy {
  min-width: 0;
}

.detail-hero-body-ticket {
  grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
}

.detail-side-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  align-self: start;
  height: fit-content;
  border: 1px solid rgba(22, 22, 22, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.detail-side-title {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.detail-offers-list {
  display: grid;
  gap: 0;
}

.detail-offer-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  color: inherit;
}

.detail-offers-list .detail-offer-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.detail-offer-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.detail-offer-copy strong {
  color: #161616;
  font-size: 0.93rem;
  line-height: 1.3;
  font-weight: 700;
}

.detail-offer-copy span {
  color: #6f7681;
  font-size: 0.82rem;
  line-height: 1.35;
}

.detail-offer-arrow {
  color: #d04d00;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.detail-content-left {
  align-self: start;
}

.event-detail-item {
  padding: 12px 12px;
}

.event-detail-item + .event-detail-item {
  border-top: 1px solid rgba(22, 22, 22, 0.08);
}

.detail-breadcrumb {
  margin-bottom: 10px;
}

.detail-ticket-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.detail-ticket-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-ticket-top strong {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #161616;
}

.detail-ticket-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #6f7681;
  font-size: 1rem;
  margin-left: auto;
}

.detail-ticket-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #dc5600 0%, #d04d00 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.detail-ticket-button-disabled {
  background: linear-gradient(180deg, #dc5600 0%, #d04d00 100%);
}

.detail-going-panel {
  padding-top: 4px;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
}

.detail-going-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-going-avatars {
  display: inline-flex;
  align-items: center;
}

.going-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: -8px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.going-avatar-a {
  background: #b34bd9;
}

.going-avatar-b {
  background: #3f69d1;
}

.going-avatar-c {
  background: #7b4edb;
}

.going-avatar-count {
  margin-right: 0;
  width: auto;
  min-width: 34px;
  padding: 0 8px;
  background: #222222;
}

.detail-going-link {
  color: #6f7681;
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
}

.detail-going-title {
  display: block;
  margin-top: 10px;
  color: #161616;
  font-size: 1.05rem;
  line-height: 1.35;
}

.detail-going-copy {
  margin: 8px 0 0;
  color: #6f7681;
  font-size: 0.96rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .hero-banner,
  .offers-grid,
  .events-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: center;
  }

  .detail-hero-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .related-items-grid {
    grid-template-columns: 1fr;
  }

  .events-page-head {
    align-items: stretch;
  }

  .events-filter-bar {
    width: 100%;
  }

  .detail-hero-image {
    width: 100%;
    min-height: 280px;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .detail-hero-media {
    min-height: 320px;
    padding: 0;
    border-radius: 8px;
  }

  .detail-hero-media::before,
  .detail-hero-media::after {
    display: none;
  }

  .detail-ticket-card {
    padding: 18px;
  }
}

@media (max-width: 760px) {
  .brand {
    order: 1;
  }

  .nav-search {
    order: 3;
    flex: 0 0 100%;
    max-width: none;
    width: 100%;
    min-height: 44px;
    margin: 0;
  }

  .nav-location {
    order: 2;
    margin-left: auto;
    font-size: 0.94rem;
  }

  .call-btn {
    display: none;
  }

  .header-row {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0 8px;
  }

  .brand-logo {
    height: 24px;
  }

  .hero-section,
  .events-section,
  .offers-section,
  .testimonial-section,
  .faq-section {
    padding: 22px 0 64px;
  }

  .events-page-hero {
    padding: 20px 0 14px;
  }

  .events-page-head {
    gap: 16px;
  }

  .events-filter-bar {
    width: 100%;
    padding: 14px;
  }

  .events-filter-field {
    width: 100%;
    min-width: 0;
  }

  .events-filter-actions {
    width: 100%;
    margin-left: 0;
  }

  .hero-banner,
  .offers-grid,
  .events-grid,
  .mini-preview-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head-link {
    width: 50px;
    height: 50px;
  }

  .section-head-link i {
    font-size: 1.65rem;
  }

  .event-card {
    border-radius: 8px;
  }

  .event-visual {
    height: 150px;
  }

  .event-content {
    padding: 16px 16px 18px;
  }

  .event-content h3 {
    font-size: 1.08rem;
    line-height: 1.35;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .event-date,
  .event-place {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    align-items: flex-start;
  }

  .event-meta {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .event-meta span {
    min-width: 0;
  }

  .hero-banner {
    gap: 20px;
    padding: 26px 18px;
    min-height: auto;
  }

  .hero-banner h1 {
    margin-top: 14px;
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-banner p {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .hero-banner-art {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    margin-top: 2px;
  }

  .art-glow {
    display: none;
  }

  .art-card {
    position: relative;
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 14px 16px;
    border-radius: 8px;
  }

  .art-card strong {
    font-size: 0.92rem;
  }

  .art-card span {
    margin-top: 4px;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .hero-rotating-text {
    min-height: 2.8em;
  }

  .art-card-dynamic,
  .art-card-pos-1,
  .art-card-pos-2,
  .art-card-pos-3,
  .art-card-pos-4 {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .scene-card-top,
  .section-head,
  .offer-foot,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav-links {
    gap: 12px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-counter {
    font-weight: 800;
  }


  .site-footer {
    padding-top: 24px;
  }

  .detail-section {
    padding: 12px 0 56px;
  }

  .detail-shell {
    gap: 14px;
  }

  .container {
    width: calc(100% - 24px);
    max-width: none;
  }

  .detail-hero-media,
  .detail-hero-body,
  .detail-card-full,
  .detail-empty {
    border-radius: 0;
    box-shadow: none;
    border-left: 0;
    border-right: 0;
  }

  .detail-hero-media {
    width: calc(100% + 32px);
    min-height: 210px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .detail-hero-image {
    width: 100%;
    min-height: 210px;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .detail-hero-body {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  .detail-content-left {
    gap: 12px;
    padding: 0;
    border-radius: 0;
  }

  .detail-info-block {
    gap: 10px;
  }

  .detail-info-block h3 {
    font-size: 1rem;
  }

  .detail-card-full,
  .detail-empty {
    padding: 14px;
  }

  .detail-inline-meta-row {
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 2px;
  }

  .detail-side-card {
    display: grid;
    margin-top: 4px;
  }

  .detail-inline-price-row {
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(22, 22, 22, 0.08);
    flex-wrap: nowrap;
  }

  .detail-story {
    padding-top: 4px;
  }

  .detail-going-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-going-link {
    align-self: flex-end;
  }

  .detail-summary-label {
    font-size: 1rem;
  }

  .detail-summary-title {
    font-size: 1.1rem;
  }

  .detail-hero-media::before,
  .detail-hero-media::after {
    display: none;
  }

  .detail-hero-head-full {
    padding-top: 4px;
  }

  .detail-hero-head-full h1,
  .detail-title-copy h1 {
    font-size: clamp(1.25rem, 4.8vw, 1.75rem);
  }

  .detail-hero-head-full {
    padding: 4px 0 0;
  }

  .search-dropdown {
    left: 0;
    right: 0;
  }

  .search-result-item {
    align-items: flex-start;
  }
}
