:root {
  --bg-main: #e58531;
  --bg-main-deep: #cb6d1b;
  --bg-soft: #fff7ef;
  --bg-paper: #ffffff;
  --text-main: #1f2937;
  --text-soft: #6b7280;
  --text-light: rgba(255, 255, 255, 0.84);
  --line-soft: rgba(229, 133, 49, 0.14);
  --shadow-soft: 0 20px 50px rgba(112, 54, 9, 0.14);
  --shadow-card: 0 14px 30px rgba(107, 58, 17, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(255, 196, 143, 0.45), transparent 24%),
    linear-gradient(180deg, #fff3e7 0%, #fffaf5 18%, #fff7ef 100%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 245, 0.9);
  border-bottom: 1px solid rgba(229, 133, 49, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-logo {
  width: 140px;
  height: auto;
  flex: 0 0 140px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(229, 133, 49, 0.14);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: #202938;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.87rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-weight: 600;
  color: #4b5563;
  position: relative;
  padding-bottom: 4px;
}

.site-nav a:hover {
  color: var(--bg-main);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--bg-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(229, 133, 49, 0.12);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--bg-main);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero-section {
  padding: 56px 0 30px;
}

.overview-card,
.content-card,
.match-highlight,
.match-item,
.about-panel,
.philosophy-item,
.feature-banner {
  border-radius: var(--radius-xl);
}

.section-kicker,
.map-label,
.mini-label,
.card-tag {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  background: #fff;
  color: var(--bg-main);
}

.button-accent {
  background: var(--bg-main);
  color: #fff;
}

.button-ghost {
  background: transparent;
  color: var(--bg-main);
  border: 1px solid rgba(229, 133, 49, 0.24);
}

.button-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-visual {
  position: relative;
  min-height: 100%;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.hero-carousel-track {
  display: flex;
  min-height: 460px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
}

.hero-slide.is-active {
  position: relative;
}

.hero-card {
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
}

.hero-card-main {
  height: 100%;
  min-height: 460px;
  padding: 44px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.08)),
    url("../wx-apsa/static/loading.jpeg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-card-main.has-banner-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.15), rgba(14, 14, 14, 0.68));
}

.hero-card-main > * {
  position: relative;
  z-index: 1;
}

.card-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(229, 133, 49, 0.9);
  font-size: 0.76rem;
}

.hero-card-main h2 {
  margin: 18px 0 12px;
  max-width: 14ch;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.hero-card-main p {
  max-width: 42ch;
  margin: 0;
  line-height: 1.85;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.hero-carousel-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.hero-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  padding: 0;
  cursor: pointer;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.carousel-dot.is-active {
  width: 30px;
  background: #ffffff;
}

.carousel-arrow {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
}

.mini-label {
  display: block;
  margin-bottom: 10px;
  color: var(--bg-main);
  font-size: 0.72rem;
  font-weight: 700;
}

.section-block {
  padding: 42px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px 32px;
  margin-bottom: 28px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--bg-main);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

.section-desc {
  margin: 0;
  max-width: 48ch;
  color: var(--text-soft);
  line-height: 1.75;
}

.overview-grid,
.cards-grid,
.about-grid {
  display: grid;
  gap: 20px;
}

.overview-card,
.content-card,
.match-item,
.about-panel,
.philosophy-item {
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
}

.overview-card {
  padding: 24px;
}

.overview-card span {
  color: var(--bg-main);
  font-size: 0.82rem;
  font-weight: 700;
}

.overview-card h3,
.content-card h3,
.match-item h3,
.about-panel h3,
.philosophy-item h3 {
  margin: 10px 0 10px;
  font-size: 1.16rem;
}

.overview-card p,
.content-card p,
.match-item p,
.about-panel p,
.philosophy-item p,
.feature-banner p,
.match-highlight p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.accent-card {
  background: linear-gradient(180deg, #fff4e8 0%, #ffffff 100%);
  border: 1px solid rgba(229, 133, 49, 0.18);
}

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

.media-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.media-cover {
  position: relative;
  height: 220px;
  background: #f4f4f5 center/cover no-repeat;
}

.media-cover::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.56);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  backdrop-filter: blur(6px);
}

.media-card.is-disabled {
  cursor: default;
}

.media-card.is-disabled .media-cover::after {
  content: "i";
  background: rgba(17, 24, 39, 0.4);
}

.media-cover-placeholder {
  background:
    linear-gradient(135deg, rgba(229, 133, 49, 0.88), rgba(255, 170, 88, 0.76)),
    url("../wx-apsa/static/loading.jpeg") center/cover no-repeat;
}

.media-body {
  padding: 22px 24px 24px;
}

.media-body h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.media-body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.dynamic-section {
  margin-top: 24px;
}

.dynamic-section-head {
  margin-bottom: 16px;
}

.dynamic-section-head h3 {
  margin: 0;
  font-size: 1.25rem;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.news-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--bg-paper);
  box-shadow: var(--shadow-card);
}

.news-cover {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background: #f4f4f5;
}

.news-content h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.news-content p {
  margin: 0 0 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: #9ca3af;
  font-size: 0.9rem;
}

.warm-section {
  position: relative;
}

.feature-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 36px;
  margin-bottom: 24px;
  background:
    linear-gradient(120deg, rgba(203, 109, 27, 0.92), rgba(229, 133, 49, 0.88)),
    url("../wx-apsa/static/events.png") center/cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.feature-banner h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.feature-banner p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.88);
}

.feature-banner-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.events-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.event-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.event-carousel-track {
  display: flex;
  min-height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.event-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.12), rgba(18, 18, 18, 0.64)),
    linear-gradient(120deg, rgba(203, 109, 27, 0.92), rgba(229, 133, 49, 0.88));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.event-carousel-copy {
  position: relative;
  z-index: 1;
}

.event-carousel-copy h3 {
  margin: 14px 0 16px;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  color: #fff;
}

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

.content-card {
  padding: 28px;
}

.content-card.is-empty,
.match-item.is-empty,
.news-item.is-empty {
  grid-template-columns: 1fr;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-upcoming {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

.status-ongoing {
  background: rgba(59, 130, 246, 0.14);
  color: #1d4ed8;
}

.status-completed {
  background: rgba(107, 114, 128, 0.16);
  color: #4b5563;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  color: #9ca3af;
  font-size: 0.92rem;
}

.matches-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.match-highlight {
  padding: 36px;
  background:
    linear-gradient(160deg, rgba(229, 133, 49, 0.95), rgba(255, 168, 91, 0.92)),
    var(--bg-main);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.map-label {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.match-highlight h3 {
  margin: 12px 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.match-highlight p {
  color: rgba(255, 255, 255, 0.88);
}

.match-carousel {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.match-carousel-track {
  display: flex;
  min-height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.match-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.12), rgba(18, 18, 18, 0.64)),
    linear-gradient(160deg, rgba(229, 133, 49, 0.95), rgba(255, 168, 91, 0.92));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.match-carousel-copy {
  position: relative;
  z-index: 1;
}

.match-carousel-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  color: #fff;
}

.match-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.matches-list {
  display: grid;
  gap: 20px;
}

.match-item {
  padding: 28px;
}

.match-item > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  gap: 24px;
}

.about-grid > :first-child {
  grid-column: 1;
}

.about-grid > :last-child {
  grid-column: 2;
  grid-row: 1;
}

.about-panel {
  padding: 32px;
}

.about-brand {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.about-brand img {
  width: 180px;
  height: 96px;
  padding: 8px 10px;
  border-radius: 20px;
  object-fit: contain;
  background: #fff7ef;
  box-shadow: inset 0 0 0 1px rgba(229, 133, 49, 0.14);
}

.about-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-content: stretch;
}

.about-links-bottom {
  margin-top: 24px;
}

.about-link-card {
  padding: 18px 18px 22px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  box-shadow: var(--shadow-card);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
}

.about-link-code {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #fff7ef 0%, #fff 100%);
  box-shadow:
    inset 0 0 0 2px rgba(229, 133, 49, 0.12),
    0 16px 34px rgba(229, 133, 49, 0.08);
  color: var(--bg-main);
  font-size: 2rem;
  font-weight: 800;
}

.about-link-qr {
  width: 148px;
  height: 148px;
  object-fit: contain;
  border-radius: 20px;
  background: #fff;
}

.about-link-card h3 {
  margin: 16px 0 0;
  font-size: 1.08rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  grid-auto-rows: 1fr;
}

.philosophy-item {
  display: flex;
  gap: 14px;
  padding: 24px;
  align-items: flex-start;
  min-height: 0;
}

.philosophy-item strong {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-main);
  color: #fff;
  font-size: 1.2rem;
}

.site-footer {
  padding: 24px 0 48px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-logo {
  width: 110px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(229, 133, 49, 0.14);
}

.footer-wrap p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.footer-link {
  color: var(--bg-main);
  font-weight: 700;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  width: min(calc(100% - 32px), 960px);
  margin: min(8vh, 64px) auto 0;
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: #111827;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.video-modal-title {
  margin: 0 36px 14px 0;
  color: #fff;
  font-size: 1.05rem;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal-player {
  width: 100%;
  max-height: 72vh;
  border-radius: 18px;
  background: #000;
}

@media (min-width: 1440px) {
  .container {
    width: min(calc(100% - 72px), 1480px);
  }

  .hero-carousel-track,
  .hero-card-main {
    min-height: 560px;
  }

  .hero-card-main {
    padding: 54px;
  }

  .hero-card-main h2 {
    font-size: clamp(2.4rem, 3vw, 3.8rem);
  }

  .matches-layout {
    grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  }

  .event-carousel-slide,
  .match-carousel-slide {
    min-height: 420px;
  }
}

@media (max-width: 980px) {
  .matches-layout,
  .about-grid,
  .media-grid,
  .cards-grid-events {
    grid-template-columns: 1fr;
  }

  .about-grid > :first-child,
  .about-grid > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .about-links {
    grid-template-columns: 1fr;
  }

  .about-link-card {
    padding: 18px 18px 22px;
  }

  .about-link-code {
    min-height: 200px;
  }

  .section-heading,
  .about-brand,
  .card-meta,
  .footer-wrap,
  .match-item > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .feature-banner-meta {
    text-align: left;
  }
}

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

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 108px;
    flex-basis: 108px;
  }

  .brand-copy strong {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .brand-copy span {
    font-size: 0.76rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.98);
    box-shadow: var(--shadow-card);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: rgba(229, 133, 49, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-section {
    padding-top: 24px;
  }

  .hero-card-main,
  .overview-card,
  .media-card,
  .content-card,
  .match-highlight,
  .event-carousel-slide,
  .match-item,
  .about-panel,
  .philosophy-item,
  .feature-banner {
    border-radius: 22px;
  }

  .hero-card-main,
  .hero-carousel,
  .event-carousel-slide,
  .feature-banner,
  .about-panel,
  .match-carousel-slide {
    padding: 24px;
  }

  .hero-carousel {
    padding: 0;
  }

  .hero-carousel-track,
  .hero-card-main {
    min-height: 300px;
  }

  .hero-card-main h2 {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2.3rem);
  }

  .hero-card-main p {
    max-width: none;
    font-size: 0.94rem;
  }

  .hero-carousel-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-carousel-actions {
    width: 100%;
    order: 2;
    margin-right: 0;
    justify-content: flex-start;
  }

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

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-cover {
    height: 190px;
  }

  .media-cover {
    height: 200px;
  }

  .brand-copy span {
    font-size: 0.76rem;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .video-modal-dialog {
    width: min(calc(100% - 20px), 960px);
    margin-top: 18vh;
    padding: 16px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-logo {
    width: 92px;
  }

  .footer-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .about-brand img {
    width: 136px;
    height: 76px;
  }
}
