/*
Theme Name: MICE VENUE 2026 Future Refined
Theme URI: https://okayama.congres-square.jp/
Author: Congres Square Okayama
Description: Refined teaser theme for Congres Square Okayama. Text, images, facility details and related banners can be changed from the WordPress Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mice-refined
*/

:root {
  --color-primary: #f15a22;
  --color-primary-dark: #bb4b1f;
  --color-ink: #2c2723;
  --color-muted: #6f665f;
  --color-line: rgba(240, 138, 60, 0.25);
  --color-bg: #fffaf5;
  --color-bg-soft: #f7f0e8;
  --color-card: rgba(255, 255, 255, 0.9);
  --color-sky: #dceaf5;
  --shadow-soft: 0 18px 45px rgba(76, 49, 28, 0.08);
  --shadow-card: 0 16px 38px rgba(44, 39, 35, 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --container: 1180px;
  --font-main: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-heading: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 138, 60, 0.1), transparent 20rem),
    radial-gradient(circle at 86% 14%, rgba(220, 234, 245, 0.92), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, var(--color-bg) 45%, var(--color-bg-soft) 100%);
  font-family: var(--font-main);
  line-height: 1.8;
  overflow-wrap: break-word;
  line-break: strict;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(240, 138, 60, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 10px 30px rgba(76, 49, 28, 0.08);
}

.header-inner {
  width: 100%;
  max-width: none;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: clamp(24px, 4vw, 72px);
}

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

.site-logo img {
  width: auto;
  max-width: 210px;
  max-height: 48px;
  object-fit: contain;
}

.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #453b34;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.94rem;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-contact {
  padding: 0 18px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(240, 138, 60, 0.22);
}

.site-nav .nav-contact::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background:
    linear-gradient(90deg, var(--color-bg) 0%, rgba(255, 250, 245, 0.92) 34%, rgba(255, 250, 245, 0.22) 66%, rgba(255, 250, 245, 0.06) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(135deg, #fbf4ea 0%, #efe3d5 52%, #dfe9ef 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}

.hero-bg-image {
  opacity: 0;
  transform: scale(1.012);
  transition:
    opacity 0.75s ease,
    transform 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.hero-bg-image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.88) 0%, rgba(255, 250, 245, 0.68) 28%, rgba(255, 250, 245, 0.18) 56%, rgba(255, 250, 245, 0.04) 100%),
    radial-gradient(circle at 78% 22%, rgba(220, 234, 245, 0.24), transparent 18rem);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(680px, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  padding: 84px 0 76px;
}

.hero-copy {
  max-width: 760px;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 0.68rem 1.35rem;
  color: #fff;
  background: rgba(240, 138, 60, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(76, 49, 28, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(44, 39, 35, 0.24);
}

.hero-title {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  margin: 24px 0 22px;
  background: linear-gradient(90deg, var(--color-primary), rgba(240, 138, 60, 0.38));
}

.hero-tagline {
  display: block;
  max-width: 760px;
  padding: 0;
  color: #3d332d;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.9;
  white-space: nowrap;
  text-wrap: nowrap;
  text-shadow: 0 1px 18px rgba(255, 250, 245, 0.82);
}

.hero-tagline::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  margin-right: 0.8rem;
  vertical-align: middle;
  background: rgba(240, 138, 60, 0.9);
}

.hero-appeal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 30px;
}

.hero-appeal-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 16px 18px;
  color: #fff;
  background: rgba(240, 138, 60, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 28px rgba(76, 49, 28, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-appeal-item .material-symbols-outlined {
  flex: 0 0 auto;
  width: 2rem;
  font-size: 2rem;
}

.hero-appeal-item p {
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
}

.hero-date,
.hero-title,
.hero-tagline,
.hero-appeal-item {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
  animation: hero-reveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-date {
  animation-delay: 0.22s;
}

.hero-title {
  animation-delay: 0.38s;
}

.hero-tagline {
  animation-delay: 0.54s;
}

.hero-appeal-item:nth-child(1) {
  animation-delay: 0.7s;
}

.hero-appeal-item:nth-child(2) {
  animation-delay: 0.82s;
}

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-note {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 18px;
  z-index: 3;
  max-width: min(50vw, 360px);
  padding: 0.32rem 0.72rem;
  color: rgba(44, 39, 35, 0.72);
  background: rgba(255, 250, 245, 0.68);
  border: 1px solid rgba(240, 138, 60, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.78rem;
  line-height: 1.45;
  pointer-events: none;
}

.section-band {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  border-bottom: 1px solid var(--color-line);
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 39, 35, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(44, 39, 35, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
  pointer-events: none;
}

.section-band > .container {
  position: relative;
  z-index: 1;
}

.features {
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 138, 60, 0.12), transparent 18rem),
    linear-gradient(180deg, #fffaf5 0%, #fff7ef 100%);
}

.venue-specs {
  background:
    radial-gradient(circle at 88% 18%, rgba(220, 234, 245, 0.86), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, #f8f1e9 100%);
}

.access {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 138, 60, 0.1), transparent 16rem),
    linear-gradient(180deg, #f8f1e9 0%, #efe4d8 100%);
}

.contact {
  background:
    radial-gradient(circle at 80% 18%, rgba(220, 234, 245, 0.74), transparent 18rem),
    linear-gradient(180deg, #fffaf5 0%, #f6eee6 100%);
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.centered {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-title,
.section-title-left {
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-wrap: balance;
}

.section-title {
  text-align: center;
}

.section-title::after,
.section-title-left::after {
  content: "";
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 18px;
  background: var(--color-primary);
}

.section-title::after {
  margin-inline: auto;
}

.section-lead,
.section-lead-left {
  color: var(--color-muted);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  line-height: 2;
}

.section-lead {
  max-width: 850px;
  margin: 18px auto 0;
  text-align: center;
}

.section-copy-title {
  max-width: 980px;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.75;
}

.section-lead-left {
  max-width: 720px;
  margin-top: 18px;
}

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

.feature-card {
  position: relative;
  min-width: 0;
  padding: 30px 28px 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(240, 138, 60, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(240, 138, 60, 0), rgba(240, 138, 60, 0.35), rgba(220, 234, 245, 0.7), rgba(240, 138, 60, 0));
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--color-primary);
  background:
    radial-gradient(circle at 32% 25%, #fff, #ffe6d1);
  border: 1px solid rgba(240, 138, 60, 0.28);
  border-radius: 50%;
}

.feature-icon .material-symbols-outlined {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.feature-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 2;
}

.specs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.specs-table-wrap {
  min-width: 0;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(240, 138, 60, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.specs-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  text-align: left;
}

.specs-table thead {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.specs-table th,
.specs-table td {
  padding: 0.82rem 1rem;
  border-right: 1px solid rgba(240, 138, 60, 0.16);
  font-size: 0.92rem;
  line-height: 1.7;
}

.specs-table th {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.specs-table th:last-child,
.specs-table td:last-child {
  border-right: 0;
}

.specs-table tbody tr {
  border-bottom: 1px solid rgba(44, 39, 35, 0.08);
}

.specs-table tbody tr:last-child {
  border-bottom: 0;
}

.specs-table tbody tr:hover {
  background: #fff4ec;
}

.specs-image,
.access-map {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(240, 138, 60, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.specs-image img,
.access-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.specs-image {
  padding: 18px;
}

.specs-image figcaption {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.84rem;
  text-align: center;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(240, 138, 60, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.access-map {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.access-map img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  padding: 18px;
}

.access-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 44px;
  border-left: 1px solid rgba(240, 138, 60, 0.18);
}

.info-label {
  width: fit-content;
  padding-bottom: 4px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-line);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.access-address {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 2;
}

.transit-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-muted);
}

.transit-row .material-symbols-outlined {
  width: 1.45rem;
  color: var(--color-primary);
  font-size: 1.45rem;
  line-height: 1.5;
}

.contact-card {
  max-width: 960px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(240, 138, 60, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-row {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 250, 245, 0.72);
  border: 1px solid rgba(240, 138, 60, 0.14);
  border-radius: var(--radius-sm);
}

.contact-row .material-symbols-outlined {
  flex: 0 0 auto;
  width: 1.35rem;
  color: var(--color-primary);
  font-size: 1.35rem;
  line-height: 1.55;
}

.contact-row span,
.contact-row a {
  min-width: 0;
  color: #433a34;
  font-size: 0.96rem;
  line-height: 1.9;
}

.contact-hours {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.related-facilities-section {
  padding: 58px 0 66px;
  background: linear-gradient(180deg, #fffaf5 0%, #f2e8dc 100%);
  border-bottom: 1px solid var(--color-line);
}

.related-facilities-heading {
  margin-bottom: 28px;
}

.related-facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.related-facility-link {
  display: block;
  min-width: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
  line-height: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.related-facility-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.related-facility-link.is-static:hover {
  transform: none;
}

.related-facility-image {
  width: 100%;
  height: auto;
  display: block;
}

.related-facility-placeholder {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 16px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(240, 138, 60, 0.14);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.6;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #211711;
}

.footer-inner {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.footer-brand {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.86rem;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  font-size: 0.75rem;
}

.reveal-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
  }

  .features-grid,
  .specs-grid,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .access-info {
    border-left: 0;
    border-top: 1px solid rgba(240, 138, 60, 0.18);
  }
}

@media (max-width: 860px) {
  .header-inner {
    width: 100%;
    padding-inline: 20px;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-nav {
    display: none;
  }

  .site-logo img {
    max-width: 180px;
    max-height: 42px;
  }

  .hero {
    min-height: 660px;
  }

  .hero-inner {
    min-height: 660px;
    padding: 72px 0 80px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 250, 245, 0.52) 0%, rgba(255, 250, 245, 0.78) 62%, rgba(255, 250, 245, 0.92) 100%),
      linear-gradient(90deg, rgba(255, 250, 245, 0.72), rgba(255, 250, 245, 0.22));
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-date {
    font-size: 1.85rem;
  }

  .hero-appeal {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .section-band {
    padding: 68px 0;
  }

  .section-title,
  .section-title-left {
    font-size: 2rem;
  }

  .related-facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    flex-direction: column;
    min-height: 0;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    min-height: 620px;
    padding: 58px 0 86px;
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-date {
    padding: 0.58rem 1rem;
    font-size: 1.5rem;
    border-radius: var(--radius-sm);
  }

  .hero-tagline {
    font-size: 0.96rem;
    line-height: 1.85;
    display: block;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-tagline::before {
    width: 1.5rem;
    margin-right: 0.55rem;
  }

  .hero-appeal-item {
    padding: 14px;
  }

  .hero-appeal-item p {
    white-space: normal;
  }

  .hero-note {
    right: 14px;
    bottom: 12px;
    max-width: calc(100% - 28px);
    font-size: 0.72rem;
  }

  .section-title,
  .section-title-left {
    font-size: 1.65rem;
    letter-spacing: 0.05em;
  }

  .section-lead,
  .section-lead-left {
    font-size: 0.95rem;
  }

  .section-copy-title {
    font-size: 1.05rem;
    line-height: 1.75;
  }

  .feature-card,
  .contact-card {
    padding: 24px 20px;
  }

  .access-info {
    padding: 28px 20px;
  }

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

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

  .reveal-in {
    opacity: 1;
    transform: none;
  }

  .hero-date,
  .hero-title,
  .hero-tagline,
  .hero-bg-image,
  .hero-appeal-item {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
