/* =======================================================
   POWER-AGE CHRISTIAN COLLEGE — TEMPORARY RELAUNCH SITE
   Palette: deep navy, muted academic gold, white, grey, ink
   Type: Playfair Display (headings) / Inter (body)
   ======================================================= */

:root {
  --navy-950: #0A1B33;
  --navy-900: #0F2745;
  --navy-800: #163256;
  --navy-700: #1E3A63;
  --gold-600: #B8923F;
  --gold-700: #9A7A32;
  --gold-100: #F3E9D2;
  --white: #FFFFFF;
  --grey-050: #FAFAFB;
  --grey-100: #F5F6F8;
  --grey-300: #D9DCE1;
  --grey-600: #626A76;
  --ink-900: #14181F;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --max-width: 1180px;
  --header-height: 84px;

  --transition-fast: 180ms ease;
  --transition-base: 320ms ease;
  --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; font-weight: 600; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold-600);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy-950);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 6px 0;
}
.skip-link:focus {
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Scroll-reveal animation system ---------- */
/* Scoped under .js-ready (set synchronously in <head>) so that if
   JavaScript fails to load or run, content is never stuck invisible. */
.js-ready .reveal,
.js-ready .js-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-reveal), transform 700ms var(--ease-reveal);
  will-change: opacity, transform;
}
.js-ready .reveal.is-visible,
.js-ready .js-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js-ready [data-animate="fade-right"] { transform: translateX(-36px); }
.js-ready [data-animate="fade-right"].is-visible { transform: translateX(0); }
.js-ready [data-animate="fade-left"] { transform: translateX(36px); }
.js-ready [data-animate="fade-left"].is-visible { transform: translateX(0); }

/* ---------- Decorative gradient blobs ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  animation: blob-float 14s ease-in-out infinite;
}
.blob-gold {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(184,146,63,0.55) 0%, rgba(184,146,63,0) 70%);
  top: -120px;
  right: -100px;
}
.blob-navy {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(30,58,99,0.6) 0%, rgba(30,58,99,0) 70%);
  bottom: -160px;
  left: -140px;
  animation-delay: -6s;
}
.blob-gold-soft {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(184,146,63,0.35) 0%, rgba(184,146,63,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.blob-dark-1 { top: -80px; left: -80px; transform: none; }
.blob-dark-2 { bottom: -100px; right: -80px; top: auto; left: auto; transform: none; animation-delay: -8s; }

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.06); }
}
.blob-gold-soft { animation: blob-float-center 14s ease-in-out infinite; }
@keyframes blob-float-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -54%) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---------- Layout helpers ---------- */
.section {
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-inner.narrow {
  max-width: 760px;
}
.center-text { text-align: center; }
.section-tint { background: var(--grey-100); }
.section-dark {
  background: var(--navy-950);
  color: var(--white);
}
.section-final {
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
}
.section-final .btn-gold { margin-top: 8px; position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.center-text .eyebrow { justify-content: center; }
.eyebrow::before {
  content: "";
  flex: 0 0 12px;
  width: 12px;
  height: 3px;
  background: var(--gold-600);
  transform: translateY(-3px);
}
.eyebrow-light { color: var(--gold-100); }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--navy-950);
  margin: 0 0 24px;
}
.section-title-light { color: var(--white); }

.lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--navy-800);
  margin: 0 0 20px;
  max-width: 62ch;
}
.center-text .lede { margin-left: auto; margin-right: auto; }
.lede-light { color: var(--grey-100); }

.body-copy {
  font-size: 16px;
  color: var(--grey-600);
  max-width: 66ch;
  margin: 0 0 20px;
}

.statement {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--navy-900);
  margin-top: 32px;
}
.statement-light { color: var(--gold-100); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--navy-950);
  color: var(--white);
  border-color: var(--navy-950);
}
.btn-primary:hover { background: var(--navy-800); border-color: var(--navy-800); }

.btn-gold {
  background: var(--gold-600);
  color: var(--navy-950);
  border-color: var(--gold-600);
  box-shadow: 0 8px 24px -8px rgba(184,146,63,0.6);
}
.btn-gold:hover { background: var(--gold-700); border-color: var(--gold-700); box-shadow: 0 12px 28px -6px rgba(184,146,63,0.7); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

/* =======================================================
   HEADER
   ======================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 27, 51, 0.92);
  backdrop-filter: blur(6px);
  transition: background var(--transition-base), padding var(--transition-base), box-shadow var(--transition-base);
}
.site-header.is-scrolled {
  background: var(--navy-950);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header.is-scrolled .header-inner { padding: 12px 24px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; transition: height var(--transition-base); }
.site-header.is-scrolled .brand-logo { height: 34px; }
.brand-fallback {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-fallback span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-100);
}

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 36px; justify-content: center; }
.main-nav a {
  color: var(--grey-100);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 2px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-600);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  animation: slide-down 220ms var(--ease-reveal);
}
@keyframes slide-down {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 17px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-cta { width: 100%; }

/* =======================================================
   HERO
   ======================================================= */
.hero {
  position: relative;
  min-height: 640px;
  min-height: clamp(560px, 92vh, 880px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10,27,51,0.78) 0%, rgba(10,27,51,0.88) 55%, rgba(10,27,51,0.97) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}
.hero-kicker {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin: 0 0 20px;
}
.hero-title {
  font-size: clamp(38px, 6.5vw, 68px);
  line-height: 1.1;
  margin: 0 0 24px;
  max-width: 18ch;
}
.hero-title-break { display: block; color: var(--gold-100); }
.hero-lede {
  font-size: clamp(17px, 2vw, 20px);
  max-width: 46ch;
  color: var(--grey-100);
  margin-bottom: 28px;
}
.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold-100);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.hero-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 44px;
}
.hero-tagline .dot { color: var(--gold-600); margin: 0 8px; }
.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  z-index: 1;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold-100);
  border-radius: 2px;
  animation: scroll-cue-move 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-move {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 20px; }
  100% { opacity: 0; top: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; }
}
@media (max-width: 640px) {
  .scroll-cue { display: none; }
}

/* =======================================================
   COUNTDOWN / RELAUNCH SECTION
   ======================================================= */
.countdown-section {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  padding: 88px 24px;
  overflow: hidden;
}
.countdown-section .section-title { position: relative; z-index: 1; margin-bottom: 40px; }
.countdown {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 84px;
}
.countdown-value {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 58px);
  font-variant-numeric: tabular-nums;
  color: var(--gold-100);
  line-height: 1;
  display: inline-block;
}
.countdown-value.countdown-pulse {
  animation: countdown-pulse 420ms ease-out;
}
@keyframes countdown-pulse {
  0% { transform: scale(1.18); color: var(--white); }
  100% { transform: scale(1); color: var(--gold-100); }
}
.countdown-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-top: 8px;
}
.countdown-sep {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  color: var(--gold-600);
  transform: translateY(-6px);
}
.countdown-message {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  color: var(--gold-100);
  padding: 20px 0;
}

/* =======================================================
   PILLAR GRID (Where Faith Meets Excellence)
   ======================================================= */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 12px;
  padding: 32px 22px;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -20px rgba(10,27,51,0.35);
  border-color: var(--gold-600);
}
.pillar-card h3 {
  font-size: 19px;
  color: var(--navy-950);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 14px;
  color: var(--grey-600);
}

.vision-banner {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  color: var(--navy-900);
  text-align: center;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--grey-300);
}

/* =======================================================
   SPLIT LAYOUT (Church to Marketplace)
   ======================================================= */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.split-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 48px -24px rgba(10,27,51,0.4);
}

/* =======================================================
   MODEL GRID (Built for a Changing World)
   ======================================================= */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 12px;
  padding: 28px 22px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -20px rgba(10,27,51,0.35);
  border-color: var(--gold-600);
}
.model-card h3 {
  font-size: 18px;
  color: var(--navy-950);
  margin-bottom: 12px;
}
.model-card p {
  font-size: 14px;
  color: var(--grey-600);
  line-height: 1.6;
}

/* =======================================================
   GLOBAL VISION (dark section)
   ======================================================= */
.transform-list {
  margin: 32px 0 0;
  border-left: 2px solid var(--gold-600);
  padding-left: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.transform-list li {
  font-family: var(--font-heading);
  font-size: clamp(19px, 2.4vw, 24px);
  color: var(--white);
  padding: 8px 0;
}

/* =======================================================
   WHAT'S COMING
   ======================================================= */
.coming-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.coming-list li {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-950);
  letter-spacing: 0.02em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}
.coming-list li:hover {
  transform: translateY(-3px);
  border-color: var(--gold-600);
  box-shadow: 0 12px 24px -14px rgba(10,27,51,0.3);
}

/* =======================================================
   INTEREST LIST FORM
   ======================================================= */
.interest-form {
  background: var(--white);
  border: 1px solid var(--grey-300);
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 24px 48px -32px rgba(10,27,51,0.3);
}
.form-row { margin-bottom: 22px; display: flex; flex-direction: column; }
.form-row label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-950);
  margin-bottom: 8px;
}
.required { color: #A23B3B; }
.optional { font-weight: 400; color: var(--grey-600); }

.form-row input,
.form-row select {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-row input:focus,
.form-row select:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(184,146,63,0.2);
  outline: none;
}
.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"] {
  border-color: #A23B3B;
}
.field-error {
  color: #A23B3B;
  font-size: 13px;
  margin-top: 6px;
  min-height: 16px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit { width: 100%; margin-top: 8px; }
.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}
.form-status.is-success {
  background: #E7F3EA;
  color: #256A3A;
  border: 1px solid #B9DDC3;
}
.form-status.is-error {
  background: #FBEAEA;
  color: #A23B3B;
  border: 1px solid #F0C4C4;
}

/* =======================================================
   FINAL STATEMENT
   ======================================================= */
.section-final .lede { color: var(--grey-100); margin-left: auto; margin-right: auto; }
.final-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin-bottom: 36px;
}

/* =======================================================
   FOOTER
   ======================================================= */
.site-footer {
  background: var(--navy-950);
  color: var(--grey-300);
  padding: 56px 24px 28px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { height: 34px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-100);
  margin-bottom: 12px;
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p { margin-bottom: 4px; font-size: 14px; }
.footer-brand a:hover { color: var(--gold-100); }
.footer-links {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  font-size: 14px;
}
.footer-links a:hover { color: var(--gold-100); }
.footer-copyright {
  max-width: var(--max-width);
  margin: 24px auto 0;
  font-size: 13px;
  color: var(--grey-600);
}

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1024px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .split-layout { grid-template-columns: 1fr; }
  .split-media img { height: 320px; }
  .blob { display: none; }
}

@media (max-width: 860px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .hero-content { padding: 120px 20px 64px; }
  .pillar-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .model-grid { grid-template-columns: 1fr; }
  .countdown { gap: 6px; }
  .countdown-unit { min-width: 72px; }
  .countdown-label { font-size: 10px; letter-spacing: 0.06em; }
  .countdown-sep { display: none; }
  .interest-form { padding: 26px 20px; }
  .footer-inner { flex-direction: column; }
  .coming-list { gap: 8px; }
  .coming-list li { padding: 10px 18px; font-size: 13px; }
}

@media (max-width: 400px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
