/* ============================================
   2024 장애인 고용촉진대회 — Landing (no framework)
   ============================================ */

:root {
  --color-primary: #1e306b;
  --color-primary-dark: #003370;
  --color-primary-light: #1a6bb8;
  --color-accent: #0d7ea8;
  --color-teal: #00aad8;
  --color-bg-soft: #f4f7fb;
  --color-bg-video: #c5d4e8;
  --color-text: #1a1a1a;
  --color-text-muted: #5c6670;
  --color-border: #dde5ee;
  --color-highlight-bg: #e3eef8;
  --color-highlight-row: #d4e5f5;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0, 69, 149, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 69, 149, 0.12);
  --shadow-hover: 0 14px 36px rgba(0, 69, 149, 0.18);
  --font: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --container: 1200px;
  --section-py: clamp(4rem, 8vw, 8rem);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --color-hero-navy: #1a3a83;
  --hero-bg-image: url("img/hero-bg.png");
  /* 히어로 타이포 최대값(px → rem) — clamp 상한으로 사용 */
  --hero-tagline-max: 3.3125rem; /* 53px */
  --hero-year-max: 6.75rem; /* 108px */
  --hero-title-main-max: 9.375rem; /* 150px */
  --hero-meta-max: 3.125rem; /* 50px */
  --hero-meta-date-max: 4.375rem; /* 70px */
  /* About (시안) */
  --about-badge-bg: rgba(30,48,107,0.2);
  --about-badge-text: #1e306b;
  --about-capsule-bg: #1e306b;
  --about-note-text: #1e306b;
  /* Schedule (TIME TABLE 시안) */
  --schedule-badge-bg: #e0edf8;
  --schedule-badge-text: #1a3358;
  --schedule-title-color: #1a3358;
  --schedule-muted: #9aa3b2;
  --schedule-line: #e8eaef;
  --schedule-highlight-bg: #eef0f7;
  --schedule-highlight-border: #c5d4eb;
  --schedule-sub-blue: #5b8ac8;
  --schedule-highlight-item-bullet: #38bdf8;
  --schedule-highlight-item-text: #6b7280;
  /* Video (LIVE 시안) */
  --video-bg-image: url("img/video-bg.jpg");
  --video-section-fallback: #8b96b3;
  --video-card-bar-bg: #1a3a83;
  --video-live-badge-bg: #00aad8;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 4vw, 2rem);
  padding-right: clamp(1.25rem, 4vw, 2rem);
}

/* ----- Hero (img/hero-bg.png, img/logo.png) ----- */
#hero {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-image: var(--hero-bg-image);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

.hero__brand {
  position: absolute;
  left: clamp(1rem, 4vw, 3.125rem);
  top: clamp(1.25rem, 3vw, 1.75rem);
  z-index: 2;
}

.hero__inner {
  width: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 8vw, 5.5rem);
  /* 로고 영역(절대배치)만큼 본문 시작 위치 확보 */
  padding-top: clamp(5.25rem, 14vw, 6.75rem);
  min-height: min(100vh, 900px);
  display: flex;
  flex-direction: column;
}

.hero__logo {
  display: block;
  width: min(320px, 78vw);
  height: auto;
}

.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 5vw, 4rem) 0 0;
}

.hero__tagline {
  margin: 0 0 1.5rem;
  font-size: clamp(1.125rem, 2.2vw + 0.65rem, var(--hero-tagline-max));
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
}

.hero__em {
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.hero__em-inner {
  display: inline;
  vertical-align: baseline;
}

.hero__em-inner--spaced .hero__em-unit:first-child {
  margin-right: 0.4em;
}

.hero__em-unit {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.hero__dot {
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 0.22em;
  height: 0.22em;
  margin-bottom: 0.1em;
  border-radius: 50%;
  background: rgba(51, 51, 51, 0.88);
  transform: translate(-50%, 0.06em);
  pointer-events: none;
}

.hero__title {
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__year {
  font-size: clamp(2.25rem, 5vw + 1.25rem, var(--hero-year-max));
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-hero-navy);
  letter-spacing: -0.02em;
}

.hero__title-main {
  margin-top: -0.12em;
  font-size: clamp(2.5rem, 7.5vw + 0.75rem, var(--hero-title-main-max));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--color-hero-navy);
}

.hero__meta {
  margin: 0;
  font-weight: 500;
  color: #333333;
  line-height: 1.55;
}

.hero__meta-time {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
}

.hero__meta-part {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
}

.hero__meta-date {
  font-size: clamp(1.125rem, 2.1vw + 0.65rem, var(--hero-meta-date-max));
  font-weight: 700;
}

.hero__meta-place {
  display: inline-block;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 500;
}

/* ----- Sections shared ----- */
.section-badge {
  display: inline-block;
  margin: 0 0 1.5em;;
  padding: 0.35rem 0.85rem;
  font-size: clamp(12px, 2vw, 18px);
  letter-spacing: 0.12em;
  color: var(--about-badge-text);
  background: var(--about-badge-bg);
  border: none;
  border-radius: 10px;
  border: 1px solid rgba(30, 48, 107, 0.12);
}

.section-badge--on-dark {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
}

.section-title {
  margin: 0 0 2rem;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  line-height: 1.2;
  text-align: center;
}

.section-title--on-dark {
  color: #fff;
  margin-bottom: 2.25rem;
}

/* ----- Overview (About 시안) ----- */
.overview {
  padding: var(--section-py) 0;
  background: #fff;
}

.overview__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.overview__block {
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
}

.overview__text {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 40px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.capsule {
  display: inline-block;
  padding: 0.19em 0.56em;
  margin: 0 0.08em;
  border-radius: 2em;
  background: var(--about-capsule-bg);
  color: #fff;
  font-weight: 700;
  font-size: 0.96em;
  vertical-align: baseline;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .capsule {
    white-space: normal;
  }
}

.overview__notes {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  font-size: clamp(16px, 1.65vw, 20px);
  font-weight: 500;
  color: var(--about-note-text);
  line-height: 1.2;
  text-align: center;
}

.overview__notes p {
  margin: 0 0 0.45rem;
}

.overview__notes p:last-child {
  margin-bottom: 0;
}

/* ----- Schedule (TIME TABLE 시안) ----- */
.schedule {
  padding: var(--section-py) 0;
  background: #f2f2f2;
}

.schedule__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 56rem;
}

.schedule__row {
  display: grid;
  grid-template-columns: minmax(4.25rem, 6rem) minmax(1.75rem, 1.75rem) minmax(0, 1fr);
  column-gap: clamp(3.25rem, 3.5vw, 5.875rem);
  align-items: start;
  padding: clamp(0.85rem, 2vw, 1.35rem) 0;
  border-bottom: 1px solid var(--schedule-line);
}

.schedule__row:last-child {
  border-bottom: none;
}

.schedule__time {
  font-size: clamp(0.8125rem, 1.65vw, 0.9375rem);
  font-weight: 500;
  color: var(--schedule-muted);
  white-space: nowrap;
  padding-top: 0.12rem;
  font-variant-numeric: tabular-nums;
}

.schedule__dur {
  font-size: clamp(0.8125rem, 1.65vw, 0.9375rem);
  font-weight: 500;
  color: var(--schedule-muted);
  text-align: right;
  padding-top: 0.12rem;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.schedule__label {
  font-size: clamp(0.875rem, 1.75vw, 1.2rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  padding-top: 0.05rem;
}

.schedule__cell-body {
  min-width: 0;
}

.schedule__row--highlight {
  align-items: stretch;
}

.schedule__highlight-box {
  display: block;
  padding: clamp(0.85rem, 2vw, 1.1rem) clamp(0.9rem, 2vw, 1.15rem);
  border-radius: 12px;
  background: var(--schedule-highlight-bg);
  border: 1px solid var(--schedule-highlight-border);
}

.schedule__highlight-content {
  min-width: 0;
  text-align: left;
}

.schedule__highlight-title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.875rem, 1.75vw, 1.2rem);
  font-weight: 700;
  color: #111111;
  line-height: 1.35;
}

/* 시안: 1·2열 첫 줄, 3번째는 왼쪽 열 아래 */
.schedule__highlight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1rem, 3vw, 1.75rem);
  row-gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule__highlight-list li {
  position: relative;
  padding-left: 0.85rem;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  font-weight: 500;
  color: var(--schedule-highlight-item-text);
  line-height: 1.5;
}

.schedule__highlight-list li:nth-child(3) {
  grid-column: 1;
}

.schedule__highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--schedule-highlight-item-bullet);
}

@media (max-width: 480px) {
  .schedule__highlight-list {
    grid-template-columns: 1fr;
  }

  .schedule__highlight-list li:nth-child(3) {
    grid-column: auto;
  }
}

/* ----- Video (LIVE 시안) ----- */
.video {
  padding: var(--section-py) 0;
  background-color: var(--video-section-fallback);
  background-image: var(--video-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.video__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video__head {
  width: 100%;
  text-align: center;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}

.section-badge--video-live {
  color: #ffffff;
  background: var(--video-live-badge-bg);
  border: none;
}

.section-title--video {
  color: #fff;
}

.video__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
}

.video-card {
  margin: 0;
}

.video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card__inner {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
}

.video-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: #1a2744;
}

.video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-card__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: clamp(0.65rem, 2vw, 1rem) clamp(0.85rem, 2.2vw, 1.2rem);
  background: linear-gradient(
    180deg,
    rgba(26, 58, 131, 0) 0%,
    rgba(26, 58, 131, 0.2) 28%,
    rgba(26, 58, 131, 0.55) 58%,
    rgba(26, 58, 131, 0.88) 85%,
    var(--video-card-bar-bg) 100%
  );
}

.video-card__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
  color: #fff;
}

.video-card__year {
  font-size: clamp(16px, 1.65vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.video-card__caption {
  font-size: clamp(16px, 1.65vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.video-card__play {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition);
}

.video-card:hover .video-card__play {
  transform: scale(1.06);
}

/* ----- Gallery (수상작 3×2 시안) ----- */
.gallery {
  padding: var(--section-py) 0;
  background: #fff;
}

.gallery__title-en {
  margin-bottom: 10px;
}

.gallery__title-ko {
  color: var(--color-teal);
  margin-bottom: clamp(2.75rem, 4vw, 3.5rem);
  font-size: clamp(28px, 3.5vw, 42px);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.75rem);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.gallery__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}

.gallery__thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #eef1f5;
  box-shadow: var(--shadow-sm);
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__meta {
  margin-top: 0.85rem;
  text-align: left;
}

.gallery__line {
  margin: 0 0 0.35rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  line-height: 1.45;
  color: var(--color-text);
}

.gallery__line:last-child {
  margin-bottom: 0;
}

.gallery__key {
  font-weight: 700;
  color: var(--color-primary);
  margin-right: 0.25em;
}

.gallery__value {
  font-weight: 500;
}

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----- Location ----- */
.location {
  position: relative;
  padding: var(--section-py) 0;
  background-color: #fff;
  background-image: url("img/map-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
  overflow: hidden;
}

.location__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: stretch;
}

.location__map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 5 / 6;
  min-height: 0;
  background: var(--color-bg-soft);
  box-shadow: var(--shadow-md);
}

.location__map-wrap .root_daum_roughmap,
.location__roughmap {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}

.location__map-wrap .root_daum_roughmap .wrap_map {
  height: 100% !important;
}

.location__map-wrap .root_daum_roughmap .wrap_map .map,
.location__map-wrap .root_daum_roughmap .wrap_map iframe {
  height: 100% !important;
  min-height: 0 !important;
}

/* 카카오맵 퍼가기: 지도(wrap_map) 아래 영역 전체 — 로고·길찾기 바(.wrap_controllers), 주소·교통·버스 등(.cont) */
.location__map-wrap .root_daum_roughmap .wrap_controllers,
.location__map-wrap .root_daum_roughmap .cont {
  display: none !important;
}

.location__info {
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: stretch;
}

.location__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2rem);
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.location__box-top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location__box-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location__badge {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
}

.location__title {
  text-align: left !important;
  margin-bottom: 10px;
}

.location__address-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.location__venue {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-teal);
}

.location__address-line {
  margin: 0;
  font-size: clamp(14px, 1.5vw, 24px);
  line-height: 1.3;
  color: var(--color-text);
}

.location__transport {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location__transport-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.location__icon-circle {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 69, 149, 0.08);
  color: var(--color-primary);
}

.location__icon-circle img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.location__transport-body {
  flex: 1;
  min-width: 0;
}

.location__transport-head {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
}

.location__transport-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

.location__map-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
  padding-left: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity var(--transition);
}

.location__map-link:hover {
  opacity: 0.85;
}

.location__map-link:focus-visible {
  outline: 3px solid rgba(0, 69, 149, 0.35);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.location__map-link-icon {
  flex-shrink: 0;
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.location__map-link-arrow {
  font-weight: 600;
}

/* ----- Footer ----- */
.footer {
  padding: 2.5rem 0;
  font-size: 20px;
  background: linear-gradient(180deg, #0a2d5c 0%, #061f45 100%);
  color: rgba(255, 255, 255, 0.85);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  flex-shrink: 0;
}

.footer__logo {
  display: block;
  width: min(320px, 78vw);
  height: auto;
  opacity: 0.95;
}

.footer__meta {
  line-height: 1.7;
  text-align: right;
}

.footer__meta p {
  margin: 0;
}

/* ----- Card hover (scale + shadow) ----- */
.card-hover {
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.card-hover:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
  z-index: 1;
}

.video-card.card-hover:hover .video-card__inner {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

/* ----- Scroll animation (initial) ----- */
.section-animate {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .section-animate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card-hover:hover {
    transform: none;
  }
}

/* ----- Tablet ----- */
@media (max-width: 900px) {
  .location__layout {
    grid-template-columns: 1fr;
  }

  .location__map-wrap {
    max-width: min(100%, 420px);
    margin-inline: auto;
  }

  .footer__meta {
    text-align: left;
  }
}

/* ----- Mobile ----- */
@media (max-width: 640px) {
  #hero {
    background-size: 100% auto;
  }

  .hero__brand {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero__inner {
    min-height: auto;
    padding-bottom: 2.5rem;
  }

  .hero__body {
    padding-top: 1.25rem;
  }

  .schedule__row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    grid-template-areas:
      "time dur"
      "body body";
    column-gap: 1rem;
    row-gap: 0.5rem;
    padding: 1rem 0;
  }

  .schedule__time {
    grid-area: time;
    padding-top: 0;
  }

  .schedule__dur {
    grid-area: dur;
    justify-self: end;
    padding-top: 0;
  }

  .schedule__label {
    grid-area: body;
    padding-top: 0;
  }

  .schedule__cell-body {
    grid-area: body;
  }

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

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

  .gallery__card:not(:last-child) {
    margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  }

  .footer {
    font-size: clamp(0.9375rem, 3.2vw, 1rem);
  }

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

