/* ============================================================
   MCUAA — Editorial Design System
   Applied from the TUAAM visual style
   Deep navy · blue · gold · serif Chinese display · cinematic hero
   ============================================================ */

:root {
  /* palette (MCUAA navy/blue family + gold accent) */
  --navy-900: #0b1f4a;
  --navy-800: #132a5e;
  --blue-700: #24408c;
  --blue-600: #3b5aa8;
  --blue-500: #4460a5;
  --blue-100: #e7ecf8;
  --gold: #b98a2f;
  --gold-light: #d4af6a;

  --bg: #ffffff;
  --bg-alt: #f6f7fa;
  --bg-soft: #fafbfd;
  --text: #1a1d26;
  --text-secondary: #555d6e;
  --text-tertiary: #8b91a0;
  --border: rgba(20, 30, 60, 0.1);
  --link: #3b5aa8;
  --link-hover: #4460a5;
  --accent: #3b5aa8;

  --nav-bg: rgba(255, 255, 255, 0.72);
  --card-bg: #ffffff;
  --shadow-sm: 0 1px 2px rgba(11, 31, 74, 0.05);
  --shadow-md: 0 8px 30px rgba(11, 31, 74, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 31, 74, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", "Noto Sans SC", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "SimSun", "STSong", Georgia, serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--link); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--link-hover); }

::selection { background: rgba(68, 96, 165, 0.25); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Navigation (floating glass) ---------- */
.nav {
  position: fixed;
  top: 14px; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
  transition: top 0.35s var(--ease), padding 0.35s var(--ease),
    background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
  pointer-events: auto;
  max-width: 1080px;
  width: 100%;
  height: 60px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0 solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.35s var(--ease), box-shadow 0.35s ease;
}

/* At the top of the page: transparent, embedded in the hero */
.nav-item-wrap {
  position: relative;
  display: inline-flex;
}
.nav-item {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.nav-item.active {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 4px 14px rgba(68, 96, 165, 0.4);
}

/* brand: logo chip + short text */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.65));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 8px rgba(8, 10, 14, 0.55);
}
.brand-line {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}
.nav-toggle { color: #fff; }

/* After scrolling: clean full-width solid bar */
.nav.scrolled {
  top: 0;
  padding: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(11, 31, 74, 0.06);
}
.nav.scrolled .nav-inner {
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.nav.scrolled .nav-item { color: var(--text-secondary); }
.nav.scrolled .nav-item:hover {
  color: var(--text);
  background: var(--blue-100);
}
.nav.scrolled .nav-item.active {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 4px 14px rgba(68, 96, 165, 0.4);
}
.nav.scrolled .brand-logo-wrap {
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.45));
}
.nav.scrolled .brand-name { color: var(--text); text-shadow: none; }
.nav.scrolled .brand-line { color: var(--text-tertiary); }
.nav.scrolled .nav-toggle { color: var(--text); }

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav { top: 0; padding: 0; position: static; }
  .nav-inner { border-radius: 0; border-left: none; border-right: none; border-top: none; height: 84px; }
  .nav-inner.open { background: var(--bg); border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .brand-line { display: none; }
  .brand-name { color: var(--text); text-shadow: none; }
  .nav-links {
    position: absolute;
    top: 60px; left: 0; right: 0;
    z-index: 1000;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 22px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links.open .nav-item { color: var(--text-secondary); }
  .nav-links.open .nav-item:hover { color: var(--text); background: var(--blue-100); }
  .nav-item { padding: 12px 10px; font-size: 15px; border-radius: 12px; }
  .nav-item.active { color: #fff; }
  .brand-zh { color: var(--text); text-shadow: none; }
  .brand-en { color: var(--text-tertiary); }
}

/* ---------- Hero (cinematic) ---------- */
.hero {
  position: relative;
  padding: 190px 22px 130px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy-900);
}

.hero:not(.hero-small) {
  aspect-ratio: 1000 / 420;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 90px 22px 120px;
  background: transparent;
}

.hero:not(.hero-small) .hero-kicker,
.hero:not(.hero-small) .hero-title,
.hero:not(.hero-small) .hero-subtitle {
  text-shadow: 0 2px 8px rgba(8, 10, 14, 0.55), 0 8px 28px rgba(8, 10, 14, 0.65);
}

.hero:not(.hero-small)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-home.jpg') center / cover no-repeat;
  opacity: 0.92;
  pointer-events: none;
}

.hero:not(.hero-small)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 16, 22, 0.42) 0%,
    rgba(13, 16, 22, 0.32) 45%,
    rgba(8, 10, 14, 0.66) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-small {
  padding: 130px 22px 70px;
}
.hero-small .hero-title {
  font-size: clamp(24px, 3.6vw, 36px);
  letter-spacing: 3px;
}
.hero-small .hero-kicker {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 3px;
}
.hero-small .hero-subtitle {
  font-size: clamp(13px, 1.8vw, 16px);
  letter-spacing: 1px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.hero-kicker::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(14px, 1.9vw, 19px);
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 100%;
  margin: 0 auto 0;
  white-space: nowrap;
}

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

.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 0;
}

/* ---------- Sections ---------- */
.section { padding: 100px 22px; }
.section-gray { background: var(--bg-alt); }
.section-soft { background: var(--bg-soft); }
.section-tight-top { padding-top: 40px; }

.section-inner { max-width: 1040px; margin: 0 auto; }
.section-inner.narrow { max-width: 780px; }
.section-inner-wide { max-width: 1240px; margin: 0 auto; }

.kicker {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.5vw, 42px);
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
}

.sub-title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 48px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sub-title::before {
  content: '';
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--blue-500), var(--gold));
  flex-shrink: 0;
}

/* ---------- Stats band ---------- */
.stats {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 22px;
}
.stats-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue-600);
  font-variant-numeric: tabular-nums;
}
.stat-num .plus { color: var(--gold); }
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--text-tertiary);
}
@media (max-width: 700px) {
  .stats { padding: 36px 22px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .stat-num { font-size: 38px; }
}

/* ---------- Photo gallery (interactive carousel) ---------- */
.gallery-carousel {
  position: relative;
}
.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 auto;
  width: 300px;
  margin: 0;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--card-bg);
  cursor: zoom-in;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 16px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 74, 0.75));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-item:hover figcaption {
  opacity: 1;
  transform: none;
}
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-600);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: background 0.25s ease, transform 0.25s ease;
}
.gallery-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}
.gallery-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--blue-500);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 18, 43, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(88vw, 1100px);
  max-height: 78vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox figcaption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80vw;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 700px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 22px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .gallery-item { width: 250px; }
}

/* ---------- Home ---------- */
.section-home { padding-top: 130px; }

/* ---------- Motto ---------- */
.motto-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 44px 0;
}
.motto-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--gold-light);
  text-align: center;
  margin: 0;
  text-shadow: 0 4px 18px rgba(68, 96, 165, 0.35);
}
.motto-line {
  flex-shrink: 0;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-500));
}
.motto-line--r {
  background: linear-gradient(90deg, var(--blue-500), transparent);
}
@media (max-width: 700px) {
  .motto-band { gap: 14px; }
  .motto-text { letter-spacing: 3px; }
  .motto-line { width: 26px; }
}

.home-spacer { height: 50px; }

.about-text {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-bottom: 0;
  text-align: center;
  line-height: 1.9;
}

.divider {
  border: none;
  height: 1px;
  margin: 20px 0;
  background: linear-gradient(90deg, transparent, var(--border) 25%, var(--border) 75%, transparent);
}

/* ---------- Organisation name block ---------- */
.org-block { text-align: center; }
.org-name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--blue-600);
  margin: 0 0 8px;
}
.org-en {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: 1px;
}
.org-note {
  font-size: 13.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  margin: 0;
}
.org-logo {
  width: 72px;
  height: auto;
  margin: 28px auto 0;
  filter: drop-shadow(0 3px 12px rgba(255, 255, 255, 0.6));
}
@media (max-width: 700px) {
  .org-name { font-size: 24px; letter-spacing: 4px; }
}

/* ---------- Intro: two paragraphs side by side ---------- */
.para-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.para-cols .about-text {
  max-width: none;
  margin: 0;
  text-align: left;
}
@media (max-width: 900px) {
  .para-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Intro: org block + paragraphs side by side ---------- */
.intro-side {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 64px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
}
.intro-side .org-block {
  text-align: left;
  padding-top: 6px;
}
.intro-side .org-block .org-logo {
  margin-left: 0;
}
.intro-side .about-text {
  max-width: none;
  margin: 0;
  text-align: left;
}
.intro-side .about-text + .about-text { margin-top: 28px; }
@media (max-width: 900px) {
  .intro-side { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Commitments (full width below) ---------- */
.commit-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

/* ---------- Intro: two columns (identity | commitments) ---------- */
.section-home .about-text {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.intro-grid .org-block {
  text-align: left;
  padding-top: 6px;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Commitment cards (bilingual, numbered) ---------- */
.commit-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.commit-title::before {
  content: '';
  width: 4px;
  height: 34px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--blue-500), var(--gold));
  flex-shrink: 0;
}
.commit-title-lines {
  display: flex;
  flex-direction: column;
  line-height: 1.45;
}
.commit-title-en {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.commit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.commit-card {
  perspective: 1000px;
  height: 200px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.commit-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
}
.commit-card:hover .commit-card-inner,
.commit-card:focus .commit-card-inner,
.commit-card.auto-flip .commit-card-inner {
  transform: rotateY(180deg);
}
/* Hint shown before the periodic auto-flip demo */
.commit-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  margin-top: 18px;
}
.commit-hint.show {
  opacity: 1;
  transform: none;
}
.commit-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-100), var(--bg-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.commit-card-back {
  transform: rotateY(180deg);
}
.commit-card-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(68, 96, 165, 0.35);
}
.commit-card-cn {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}
.commit-card-en {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 900px) {
  .commit-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .commit-cards { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    opacity 0.3s ease, background 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), var(--blue-500));
  box-shadow: 0 8px 24px rgba(68, 96, 165, 0.4);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(68, 96, 165, 0.5);
}
.btn-secondary {
  color: var(--text);
  background: var(--card-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  color: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Post cards ---------- */
.post-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
@media (min-width: 640px) {
  .post-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .post-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .post-list { grid-template-columns: repeat(4, 1fr); }
}

.post-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(68, 96, 165, 0.35);
}

.post-card-link { display: block; color: inherit; height: 100%; }
.post-card-link:hover { color: inherit; }

.post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-100), var(--bg-alt));
  transition: transform 0.6s var(--ease);
}
.post-card:hover .post-thumb { transform: scale(1.04); }
.post-thumb-wrap { overflow: hidden; }

.post-thumb-empty {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 30%, rgba(68, 96, 165, 0.18), transparent 55%),
    linear-gradient(135deg, var(--blue-100), var(--bg-alt));
}

.post-card-body { padding: 18px 20px 20px; }

.post-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 12px;
}
.post-date::before {
  content: '';
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold));
}

.post-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.post-card:hover .post-card-title { color: var(--blue-600); }

/* Homepage news cards use a slightly smaller title */
.section-recent-news .post-card-title {
  font-size: 14px;
}

.post-excerpt {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--link);
  transition: gap 0.3s var(--ease);
}
.post-card:hover .post-more { gap: 10px; }

/* ---------- Event rows ---------- */
.event-list { max-width: 860px; margin: 0 auto; }

.event-row {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s ease;
}
.event-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: rgba(68, 96, 165, 0.3);
}
.event-date {
  flex-shrink: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(68, 96, 165, 0.35);
}
.event-date .day { font-size: 22px; font-weight: 700; line-height: 1.05; }
.event-date .mon {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
}
.event-body .title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  transition: color 0.3s ease;
  display: block;
}
.event-row:hover .event-body .title { color: var(--blue-600); }
.event-body .excerpt {
  font-size: 13.5px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-arrow {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--blue-500);
  transition: transform 0.3s var(--ease);
}
.event-row:hover .event-arrow { transform: translateX(6px); }

@media (max-width: 640px) {
  .event-row { padding: 16px 18px; gap: 16px; }
  .event-date { width: 60px; height: 60px; }
  .event-date .day { font-size: 18px; }
}

/* ---------- Reason cards (mission) ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) { .mission-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mission-grid { grid-template-columns: 1fr; } }

.reason-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s ease;
}
.reason-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(68, 96, 165, 0.3);
}
.reason-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(68, 96, 165, 0.35);
}
.reason-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.5px;
}
.reason-text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ---------- Members ---------- */
.member-groups { max-width: 1040px; margin: 0 auto; }
.member-group { margin-bottom: 48px; }

.criteria-list {
  list-style: none;
  counter-reset: crit;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 28px;
}
@media (max-width: 900px) { .criteria-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .criteria-list { grid-template-columns: 1fr; } }

.criteria-list li {
  counter-increment: crit;
  padding: 10px 12px 10px 56px;
  position: relative;
  font-size: 14px;
  color: var(--text);
  transition: transform 0.3s var(--ease), color 0.3s ease;
  border-radius: 12px;
  margin: 2px -4px;
}
.criteria-list li:hover {
  transform: translateX(6px);
  color: var(--blue-600);
  background: linear-gradient(90deg, rgba(68, 96, 165, 0.08), transparent 70%);
}
.criteria-list li::before {
  content: counter(crit);
  position: absolute;
  left: 8px; top: 8px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(68, 96, 165, 0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.criteria-list li:hover::before {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 6px 18px rgba(68, 96, 165, 0.45);
}

/* ---------- Constitution (continuous document, as on mcuaa.org.au) ---------- */
.constitution-doc {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 56px 64px;
}
@media (max-width: 700px) {
  .constitution-doc { padding: 32px 24px; }
}
.doc-main-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  color: var(--text);
  margin: 0 0 10px;
}
.doc-main-sub {
  text-align: center;
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 44px;
}
.doc-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin: 40px 0 10px;
}
.doc-head-num {
  flex-shrink: 0;
  min-width: 26px;
  color: var(--blue-500);
  font-size: 17px;
  font-variant-numeric: tabular-nums;
}
.doc-note {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 14px;
}
.doc-sub {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 8px;
}
.doc-list-ul {
  margin: 0 0 14px;
  padding-left: 24px;
}
.doc-list-ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 5px;
}
.doc-list-ul li::marker {
  color: var(--blue-500);
}

/* ---------- Contact (two-panel layout, as on mcuaa.org.au) ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 560px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.contact-panel {
  background:
    radial-gradient(440px 280px at 50% 32%, rgba(68, 96, 165, 0.14), transparent 70%),
    var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.contact-panel img {
  width: min(230px, 70%);
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(68, 96, 165, 0.3));
  transition: transform 0.5s var(--ease);
}
.contact-panel:hover img {
  transform: scale(1.04);
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  text-align: center;
}
.contact-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue-600);
}
.contact-value a {
  color: var(--blue-600);
  transition: color 0.25s ease;
}
.contact-value a:hover {
  color: var(--link-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-mail-btn { margin-top: 18px; }
.contact-divider {
  border: none;
  height: 1px;
  width: 130px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, var(--border) 25%, var(--border) 75%, transparent);
}
.contact-qr {
  width: min(220px, 80%);
  height: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-qr:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-panel { padding: 40px 24px; }
  .contact-info { padding: 36px 24px; }
}

/* ---------- Post page ---------- */
.post-page { padding: 60px 22px 100px; }
.post-cover { margin: 0 auto 44px; max-width: 860px; }
.post-cover img {
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
}

.post-meta {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}
.post-meta .post-date { margin-bottom: 14px; }
.post-meta h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 12px;
}
.post-meta .post-byline {
  font-size: 14px;
  color: var(--text-tertiary);
}

.post-content {
  max-width: 880px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 2;
  letter-spacing: 0.02em;
  text-align: justify;
}
.post-content p { margin-bottom: 26px; }
.post-content > p:first-child {
  font-size: 18.5px;
  color: var(--text);
}
.post-content b,
.post-content strong { color: var(--text); font-weight: 600; }
.post-content ul,
.post-content ol {
  margin: 0 0 26px;
  padding-left: 26px;
}
.post-content li { margin-bottom: 10px; }
.post-content li::marker {
  color: var(--blue-500);
  font-weight: 600;
}
.post-content a {
  color: var(--blue-600);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(68, 96, 165, 0.35);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  word-break: break-all;
}
.post-content a:hover {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}
.post-content figure {
  margin: 44px auto;
  max-width: 860px;
}
.post-content figure img {
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: cover;
}
.post-content figure figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}
.post-content figure figcaption::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 auto 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-400), var(--gold));
  opacity: 0.55;
}

/* Consecutive photos presented as a responsive grid */
.post-content .figure-grid {
  display: grid;
  gap: 20px;
  margin: 44px auto;
  max-width: 860px;
}
.post-content .figure-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.post-content .figure-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.post-content .figure-grid figure {
  margin: 0;
  max-width: none;
}
.post-content .figure-grid figure img {
  width: 100%;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.post-content .figure-grid figure img[src*=".png"],
.post-content .figure-grid figure img[src*=".PNG"] {
  aspect-ratio: auto;
}
.post-content blockquote {
  margin: 32px auto;
  padding: 20px 26px;
  border-left: 3px solid var(--blue-500);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.post-content blockquote p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.9;
}
.post-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 20px;
  letter-spacing: 1px;
  scroll-margin-top: 96px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-content h2::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--blue-500), var(--gold));
}
.post-content h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 16px;
  letter-spacing: 0.5px;
}
.post-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 36px 0;
}
.post-content table {
  width: 100%;
  margin: 28px 0 36px;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}
.post-content th,
.post-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
}
.post-content th {
  background: var(--bg-soft);
  color: var(--text);
  font-weight: 600;
}
.post-content pre {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 14px;
  overflow-x: auto;
  margin: 28px 0;
}
.post-content code {
  background: var(--bg-soft);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 0.92em;
}
.post-content p.ta-center { text-align: center; }
.post-content p.ta-left { text-align: left; }
.post-content p.ta-right { text-align: right; }
.post-content img.alignleft { float: left; margin: 4px 20px 12px 0; max-width: 45%; }
.post-content img.alignright { float: right; margin: 4px 0 12px 20px; max-width: 45%; }
.post-content img.aligncenter,
.post-content figure.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

/* Prev / next */
.post-nav {
  max-width: 880px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.post-nav a {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s ease;
  color: var(--text);
}
.post-nav a:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(68, 96, 165, 0.3);
  color: var(--blue-600);
}
.post-nav .label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 6px;
}
.post-nav .title { font-size: 15px; font-weight: 600; line-height: 1.5; }
@media (max-width: 640px) {
  .post-nav { grid-template-columns: 1fr; }
}

.post-back { margin-top: 40px; text-align: center; }

/* ---------- Acknowledgement ---------- */
.ack {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(68, 96, 165, 0.25), transparent 60%),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.9);
  padding: 24px 22px;
  text-align: center;
}
.ack img {
  height: 44px;
  width: auto;
  margin: 0 auto 12px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.45));
}
.ack p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.9;
}

/* ---------- Footer ---------- */
.footer {
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(68, 96, 165, 0.12), transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 22px 40px;
}
.footer-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.footer-logo-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: 0 4px 16px rgba(11, 31, 74, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo { width: 50px; height: 50px; object-fit: cover; }
.footer-motto {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--blue-600);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 13.5px;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--blue-600); }
.footer-copy { font-size: 12.5px; color: var(--text-tertiary); line-height: 1.6; margin-bottom: 2px; }
.footer-note { font-size: 12px; color: var(--text-tertiary); line-height: 1.6; }

/* Footer logo */
.footer-logo-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.5));
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .hero { padding: 24px 22px 36px; }
  .hero:not(.hero-small) { padding: 24px 22px 36px; }
  .hero:not(.hero-small) .hero-kicker { font-size: 10px; letter-spacing: 2px; margin-bottom: 8px; }
  .hero:not(.hero-small) .hero-title { font-size: clamp(18px, 5.5vw, 30px); letter-spacing: 2px; line-height: 1.2; margin-bottom: 8px; }
  .hero:not(.hero-small) .hero-subtitle { font-size: 12px; margin-bottom: 12px; white-space: normal; }
  .hero:not(.hero-small) .hero-cta { margin-top: 0; padding: 9px 20px; font-size: 14px; }
  .section { padding: 68px 22px; }
  .post-content .figure-grid,
  .post-content .figure-grid.cols-2,
  .post-content .figure-grid.cols-3 { grid-template-columns: 1fr; }
  .cta-row { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 340px; justify-content: center; }
  .section-desc { font-size: 15px; }
  .hero-subtitle { white-space: normal; font-size: 14px; }
  .about-text { font-size: 14px; }
  .motto-text { letter-spacing: 3px; }
}
