:root {
  --navy-950: #0f172a;
  --navy-900: #13244d;
  --navy-700: #1e3a8a;
  --gold-600: #b45309;
  --gold-500: #d97706;
  --slate-50: #f8fafc;
  --slate-100: #eef2f7;
  --slate-200: #dbe4f0;
  --slate-400: #8fa0b9;
  --slate-600: #475569;
  --slate-700: #334155;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1180px, calc(100vw - 32px));
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue",
    sans-serif;
  color: var(--slate-700);
  background:
    radial-gradient(circle at top left, rgba(217, 119, 6, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #eef4fb 100%);
  font-size: 16px;
  line-height: 1.7;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow-x: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(232, 239, 248, 0.72));
}

.section-heading {
  max-width: 960px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 12px 0 14px;
  color: var(--navy-950);
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.section-heading p,
.hero-lead,
.about-copy p,
.advantage-card p,
.info-panel p,
.quote-card p,
.timeline p,
.modal-sidebar p {
  font-size: 1.05rem;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.eyebrow::before,
.mini-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(143, 160, 185, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.12rem;
  color: var(--navy-950);
}

.brand-text small {
  color: var(--slate-600);
}

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

.desktop-nav a,
.mobile-menu a {
  color: var(--slate-700);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.desktop-nav a:hover,
.mobile-menu a:hover {
  color: var(--navy-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button-accent {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(180, 83, 9, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-950);
  border-color: rgba(15, 23, 42, 0.1);
}

.mobile-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--navy-950);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
}

.mobile-menu.is-open {
  display: grid;
  gap: 14px;
}

.hero {
  padding-top: 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 40px;
  align-items: center;
}

.hero-copy h1 {
  margin: 16px 0 16px;
  color: var(--navy-950);
  font-size: clamp(2.4rem, 4vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  max-width: 16ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 160, 185, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.hero-contact-card strong {
  display: block;
  color: var(--navy-950);
  margin-top: 8px;
}

.hero-contact-card a {
  color: var(--navy-700);
  font-weight: 700;
  white-space: nowrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-stats article {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(143, 160, 185, 0.2);
}

.hero-stats strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.28rem;
  margin-bottom: 6px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid rgba(143, 160, 185, 0.12);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  inset: 0 0 72px 40px;
}

.hero-card-small {
  width: 42%;
  right: 18px;
  bottom: 0;
  aspect-ratio: 0.88;
}

.hero-floating {
  position: absolute;
  left: 0;
  bottom: 38px;
  max-width: 320px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-floating span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.hero-floating strong {
  font-size: 1.1rem;
  line-height: 1.5;
}

.advantages-grid,
.advisor-grid,
.video-grid,
.faculty-grid,
.collection-grid,
.about-points {
  display: grid;
  gap: 20px;
}

.advantages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-card,
.timeline-card,
.info-panel,
.faculty-card,
.collection-card,
.quote-card,
.about-points article {
  border: 1px solid rgba(143, 160, 185, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.advantage-card {
  padding: 28px;
}

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--navy-700);
  font-weight: 800;
}

.advantage-card h3,
.timeline-card h3,
.info-panel h3,
.faculty-card h3,
.collection-card h3,
.quote-card h3 {
  margin: 18px 0 12px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.3;
  text-wrap: balance;
}

.care-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
}

.timeline-card,
.about-points article,
.quote-card {
  padding: 28px;
}

.timeline {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.timeline span {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  color: var(--gold-600);
  font-size: 0.92rem;
  font-weight: 800;
}

.timeline strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.care-panels {
  display: grid;
  gap: 22px;
}

.info-panel {
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
}

.info-panel img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.info-panel div {
  padding: 26px;
}

.faculty-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faculty-card {
  padding: 24px;
}

.faculty-card .role {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(30, 58, 138, 0.08);
  color: var(--navy-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.faculty-card p {
  margin: 0;
}

.faculty-card .result {
  margin-top: 16px;
  color: var(--gold-600);
  font-weight: 700;
}

.campus-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, 0.85fr);
  gap: 18px;
}

.gallery-spotlight,
.gallery-tile {
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-spotlight:hover,
.gallery-tile:hover,
.collection-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.gallery-spotlight {
  position: relative;
  grid-row: span 2;
  min-height: 580px;
}

.gallery-spotlight img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-spotlight span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.78);
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 700;
  text-align: left;
}

.gallery-tile {
  min-height: 280px;
}

.video-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(143, 160, 185, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.video-frame {
  position: relative;
  aspect-ratio: 0.78;
  background: var(--navy-950);
  cursor: pointer;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-play,
.collection-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 1;
}

.video-overlay-play {
  inset: 0;
  margin: auto;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.36);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.26);
  transition:
    transform var(--transition),
    opacity var(--transition),
    background-color var(--transition);
  pointer-events: none;
}

.video-frame:hover .video-overlay-play {
  transform: scale(1.04);
  background: rgba(15, 23, 42, 0.48);
}

.video-overlay-play::before,
.collection-badge::before {
  content: "▶";
  font-size: 2rem;
  margin-left: 6px;
}

.video-frame.is-playing .video-overlay-play {
  opacity: 0;
}

.video-card-body {
  padding: 22px;
}

.video-card-body h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.22rem;
  line-height: 1.35;
}

.video-card-body p {
  margin: 0 0 16px;
}

.video-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.video-card-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.85rem;
  font-weight: 700;
}

.inline-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--navy-700);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

.collection-card {
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.overview-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(143, 160, 185, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.overview-card.is-priority {
  border-color: rgba(180, 83, 9, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.96));
}

.overview-card h3 {
  margin: 14px 0 10px;
  color: var(--navy-950);
  font-size: 1.34rem;
  line-height: 1.3;
  text-wrap: balance;
}

.overview-card p {
  margin: 0 0 14px;
}

.overview-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.overview-card-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.84rem;
  font-weight: 700;
}

.collection-media {
  position: relative;
  aspect-ratio: 1.25;
  overflow: hidden;
}

.collection-media img,
.collection-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(15, 23, 42, 0.08));
}

.collection-badge {
  top: auto;
  left: 18px;
  bottom: 18px;
}

.collection-body {
  padding: 24px;
}

.collection-body p {
  margin: 12px 0 18px;
}

.collection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-tags span,
.modal-meta span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.88rem;
  font-weight: 700;
}

.advisor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advisor-card {
  overflow: hidden;
  border: 1px solid rgba(143, 160, 185, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.advisor-qr {
  display: grid;
  place-items: center;
  padding: 22px 22px 0;
}

.advisor-qr img {
  width: 100%;
  max-width: 250px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid rgba(143, 160, 185, 0.18);
  background: var(--white);
  padding: 12px;
}

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

.advisor-body h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  font-size: 1.4rem;
}

.advisor-body a {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-600);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.advisor-body p {
  margin: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.about-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.quote-card blockquote {
  margin: 18px 0 16px;
  color: var(--navy-950);
  font-size: 1.42rem;
  line-height: 1.55;
}

.site-footer {
  padding: 40px 0 54px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at top, rgba(217, 119, 6, 0.18), transparent 28%),
    var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.9fr;
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--white);
  margin-top: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.qr-placeholder {
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.qr-placeholder span {
  color: var(--white);
  font-weight: 700;
}

.qr-placeholder small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.76);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  margin: 12px auto;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: var(--navy-950);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.modal-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.72fr);
  min-height: min(760px, calc(100vh - 24px));
}

.modal-stage {
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(180deg, #dfe8f3, #f7fafc);
}

.modal-stage img,
.modal-stage video {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.modal-stage video {
  background: #000;
}

.modal-sidebar {
  padding: 34px 24px 24px;
  overflow-y: auto;
}

.modal-sidebar h3 {
  margin: 14px 0 12px;
  color: var(--navy-950);
  font-size: 2rem;
  line-height: 1.2;
}

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.modal-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

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

.thumb-button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.thumb-button.is-active {
  border-color: var(--gold-500);
}

.thumb-button img,
.thumb-button video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.has-animations .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .hero-grid,
  .care-layout,
  .about-grid,
  .modal-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

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

  .video-grid,
  .advisor-grid,
  .overview-grid,
  .collection-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-spotlight {
    grid-column: 1 / -1;
    min-height: 460px;
  }

  .modal-dialog {
    width: min(1100px, calc(100vw - 16px));
  }
}

@media (max-width: 860px) {
  .section {
    padding: 74px 0;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-block;
  }

  .hero-stats,
  .advantages-grid,
  .advisor-grid,
  .video-grid,
  .overview-grid,
  .collection-grid,
  .about-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .campus-grid,
  .faculty-grid,
  .thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-contact-card,
  .info-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .info-panel {
    display: block;
  }

  .info-panel img {
    min-height: 220px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-card-main {
    inset: 0 0 52px 0;
  }

  .hero-card-small {
    width: 45%;
    right: 8px;
  }

  .hero-floating {
    left: 12px;
    right: 12px;
    max-width: none;
  }

  .timeline article {
    grid-template-columns: 56px 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

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

  .hero {
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-visual {
    min-height: 380px;
  }

  .gallery-spotlight,
  .gallery-tile {
    min-height: 220px;
  }

  .campus-grid,
  .thumb-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-stage,
  .modal-sidebar {
    padding: 20px 16px;
  }

  .modal-sidebar h3 {
    font-size: 1.6rem;
  }

  .modal-controls {
    flex-wrap: wrap;
  }
}
