/* Svetlana Vanyo — Modern Redesign */

:root {
  --navy: #0c1b2e;
  --navy-light: #152a42;
  --aqua: #00b4d8;
  --aqua-dark: #0096c7;
  --gold: #c9a227;
  --cream: #f7f9fc;
  --white: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(12, 27, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(12, 27, 46, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'DM Sans', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1rem; }

a {
  color: var(--aqua-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--aqua); }

img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(var(--max-width), 100% - 2.5rem);
  margin-inline: auto;
}

/* ── Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(12, 27, 46, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(12, 27, 46, 0.98);
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand:hover { color: var(--white); }

.brand img {
  height: 32px;
  width: auto;
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--aqua);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(0, 180, 216, 0.15);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}

.nav-toggle svg { display: block; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(12, 27, 46, 0.92) 0%, rgba(12, 27, 46, 0.7) 50%, rgba(0, 150, 199, 0.25) 100%),
    url('../_images/carousel-IMG_1202.png') center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--aqua);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-badge img { height: 18px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--aqua);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--aqua);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
}

.btn-primary:hover {
  background: #33c5e0;
  color: var(--navy);
  box-shadow: 0 8px 28px rgba(0, 180, 216, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--gold));
  opacity: 0.35;
  filter: blur(24px);
}

.hero-image {
  position: relative;
  width: min(380px, 100%);
  margin-inline: auto;
  border-radius: 50%;
  border: 4px solid rgba(0, 180, 216, 0.4);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
  object-fit: cover;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua-dark);
  margin-bottom: 0.75rem;
}

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--aqua-dark);
}

.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.65); max-width: 520px; margin: 0 auto 2rem; }

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

.gallery img:hover {
  transform: scale(1.05);
  filter: brightness(1);
  z-index: 1;
  position: relative;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3rem;
  background: var(--navy);
  color: var(--white);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255, 255, 255, 0.65); max-width: 600px; }

/* ── Content layout ── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.content-grid.reverse { grid-template-columns: 340px 1fr; }

.prose { max-width: 720px; }
.prose ul { padding-left: 1.25rem; }
.prose li { margin-bottom: 0.5rem; color: var(--text-muted); }
.prose li strong { color: var(--text); }

.side-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ── Pricing cards ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.3);
}

.pricing-card.featured {
  border-color: var(--aqua);
  background: linear-gradient(180deg, rgba(0, 180, 216, 0.04) 0%, var(--white) 100%);
}

.pricing-card .price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0;
}

.pricing-card .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .price-alt {
  margin: -0.5rem 0 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  background: var(--aqua);
  border-radius: 50%;
}

/* ── Timeline / story ── */
.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.story-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-images.single { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }

.accomplishment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.accomplishment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accomplishment-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.accomplishment-list li:last-child { border-bottom: none; }

.former-name {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.6);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-heading {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-links a:hover { color: var(--aqua); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-social a:hover { color: var(--aqua); }

/* ── Swim Stars ── */
.star-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.star-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.25);
}

.star-card.reverse {
  grid-template-columns: 1fr 280px;
}

.star-card.reverse .star-photo { order: 2; }
.star-card.reverse .star-body { order: 1; }

.star-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  background: var(--navy-light);
}

.star-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.star-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--aqua-dark);
  margin-bottom: 0.5rem;
}

.star-body h2 { margin: 0 0 0.75rem; }

.star-body p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.star-achievements {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.star-achievements li {
  background: rgba(0, 180, 216, 0.08);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 180, 216, 0.15);
}

.star-achievements a { color: var(--aqua-dark); font-weight: 600; }

/* ── Motivational Times ── */
.motiv-intro {
  max-width: 760px;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.filter-field label,
.filter-field .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.modern-select,
.input-group input,
.input-group select {
  width: 100%;
  appearance: none;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modern-select:focus,
.input-group input:focus,
.input-group select:focus {
  outline: none;
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.motivationalTimes {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 2rem;
}

.motivationalTimes h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.motiv-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 720px;
}

.motiv-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.motiv-table .distances th {
  background: var(--navy-light);
  font-size: 0.78rem;
  font-weight: 500;
}

.motiv-table td {
  text-align: right;
  padding: 0.45rem 0.5rem;
  border-bottom: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}

.motiv-table .levelHeading {
  text-align: left;
  font-weight: 700;
}

.motiv-table tr:nth-child(even) { background: #f8fafc; }
.motiv-table .B .levelHeading { color: #334155; }
.motiv-table .BB .levelHeading { color: #2563eb; }
.motiv-table .A .levelHeading { color: #16a34a; }
.motiv-table .AA .levelHeading { color: #7c3aed; }
.motiv-table .AAA .levelHeading { color: #dc2626; }
.motiv-table .AAAA .levelHeading { color: #991b1b; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin: 2rem 0;
  overflow: hidden;
}

.info-card-header {
  background: rgba(0, 180, 216, 0.08);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.info-card-title {
  color: var(--navy);
  text-decoration: none;
}

.info-card-title h3 { margin: 0; font-size: 1.1rem; }

.info-panel,
.converter-card-body {
  padding: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-copy p { color: var(--text-muted); font-size: 0.95rem; }

.percentile-table {
  width: min(280px, 100%);
  min-width: 0;
  margin: 1.5rem auto;
}

.percentile-table th,
.percentile-table td,
.percentile-table .levelHeading {
  text-align: center;
}

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.converter-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

#timeToConvertText {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.converter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.time-input .input-group {
  display: flex;
  align-items: stretch;
}

.input-prefix {
  background: var(--navy);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.55rem 0.65rem;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
}

.time-input input {
  width: 52px !important;
  border-radius: 0 10px 10px 0 !important;
  text-align: center;
}

.converterPunctuation {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
}

.converter-field {
  flex: 1 1 220px;
}

.converter-field .input-group {
  display: flex;
  width: 100%;
}

.converter-field .modern-select,
.converter-field select {
  border-radius: 0 10px 10px 0;
  flex: 1;
}

#convertButton {
  min-width: 120px;
}

#convertedTimeClass {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
}

#convertedTimeText {
  font-weight: 600;
  color: var(--text-muted);
}

#convertedTime {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

/* ── Prototype banner ── */
.prototype-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-desc { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image { width: min(260px, 70vw); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .accomplishment-grid { grid-template-columns: 1fr; }
  .star-card,
  .star-card.reverse { grid-template-columns: 1fr; }
  .star-card.reverse .star-photo { order: -1; }
  .star-photo { max-width: 280px; margin-inline: auto; }
  .filter-row { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0;
  }

  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.75rem 1rem; }
}

@media (max-width: 500px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .story-images { grid-template-columns: 1fr; }
}
