:root {
  --bg: #f5f5f3;
  --panel: #ffffff;
  --text: #1f1d1a;
  --muted: #5c5650;
  --line: #d9d3cb;
  --accent: #d7901f;
  --accent-dark: #9f6410;
  --soft: #fff6dd;
  --navy: #1a4d8f;
  --radius: 2rem;
  --shadow: 0 14px 40px rgba(21, 18, 13, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e2dc;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.brand-text {
  font-size: clamp(1.1rem, 2.3vw, 1.7rem);
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0a02b, #cf8316);
  display: inline-block;
}

.brand-cross {
  position: absolute;
  inset: 0;
}

.brand-cross::before,
.brand-cross::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 999px;
}

.brand-cross::before {
  width: 3px;
  height: 28px;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
}

.brand-cross::after {
  width: 18px;
  height: 3px;
  left: 50%;
  top: 17px;
  transform: translateX(-50%);
}

.brand-base {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 18px;
  height: 10px;
  border-radius: 999px 999px 0 0;
  background: rgba(20, 59, 110, 0.9);
}

.menu-toggle {
  display: none;
  border: 1px solid #ddd7cf;
  background: #fff;
  border-radius: 0.9rem;
  padding: 0.65rem 0.8rem;
  cursor: pointer;
  font-size: 1.1rem;
}

.menu-list {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-list a {
  display: inline-block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.9rem;
  color: #3b3935;
  font-size: 0.95rem;
}

.menu-list a:hover,
.menu-list .current-menu-item > a,
.menu-list .current_page_item > a {
  background: #1d1b18;
  color: #fff;
}

.site-main { padding-bottom: 4rem; }
.section { padding: 4.5rem 0 0; }

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero-home { min-height: calc(100vh - 82px); }
.hero-inner { min-height: 70vh; }

.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
}

.hero-content.center {
  text-align: center;
  width: 100%;
}

.hero-content.left {
  max-width: 840px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 1.02;
  margin: 0;
  text-shadow: 0 5px 18px rgba(0,0,0,0.32);
}

.hero p {
  font-size: 1.16rem;
  max-width: 780px;
}

.social-badge {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  margin: 0 auto 1.5rem;
  font-weight: 800;
}

.scroll-prompt {
  display: inline-flex;
  margin-top: 3rem;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
}

.scroll-prompt .circle {
  width: 4rem;
  height: 4rem;
  border: 2px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.panel,
.content-card,
.contact-form-card,
.contact-copy,
.page-intro,
.single-article,
.video-feature,
.prayer-block {
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.panel,
.content-card,
.page-intro,
.single-article,
.prayer-block { padding: 2.2rem; }

.image-panel {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.believe-panel {
  background: linear-gradient(135deg, rgba(162,210,239,1) 0%, rgba(242,232,219,1) 100%);
}

.image-card {
  width: calc(100% - 2rem);
  min-height: 310px;
  border-radius: 1.5rem;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.14));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.image-card h2 { font-size: clamp(3.4rem, 9vw, 5.4rem); margin: 0; font-weight: 300; }
.copy-panel h2,
.page-intro h1,
.single-header h1,
.content-card h2,
.video-feature h2,
.prayer-block h2,
.contact-copy h1,
.contact-form-card h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0 0 1rem; }

.copy-panel p,
.page-intro p,
.content-card p,
.video-feature p,
.prayer-block p,
.contact-copy p,
.contact-copy li,
.single-content,
.blog-body p { color: var(--muted); font-size: 1.06rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

.button.dark { background: #111; color: #fff; }
.button.light { background: #fff; border-color: var(--line); color: #222; }
.button.outline { background: transparent; border-color: #8f8a82; color: #222; }
.button-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.3rem; }

.ultimate-section .copy-panel { background: transparent; box-shadow: none; border: 0; padding-left: 0; }
.question-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
  padding: 0;
}
.question-list li { margin-bottom: 0.6rem; font-size: 1.08rem; }

.book-panel { background: linear-gradient(180deg, #6ccc3c 0%, #35a04d 42%, #060706 100%); }
.book-mockup {
  width: min(360px, 100%);
  border-radius: 1.4rem;
  padding: 2rem 1.6rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.02));
  color: #111;
  text-align: center;
}
.book-title { font-size: clamp(2.3rem, 7vw, 4.6rem); font-weight: 300; line-height: 0.9; text-transform: uppercase; }
.book-author { margin-top: 1rem; font-size: 1.8rem; }
.book-marks { margin-top: 3rem; display: flex; justify-content: center; gap: 0.4rem; font-size: 4rem; font-weight: 700; }
.book-marks span:nth-child(1) { color: #ff473d; }
.book-marks span:nth-child(2) { color: #2f72ff; }
.book-marks span:nth-child(3) { color: #a2df33; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); }
.slider-head { align-items: end; }
.slider-controls { display: flex; gap: 0.6rem; }
.slider-btn,
.dot {
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.slider-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.8rem;
}

.quote-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quote-card {
  min-height: 270px;
  border-radius: 1.6rem;
  padding: 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(0,0,0,0.32)), radial-gradient(circle at top, #b8e8ec 0%, #44667b 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.55;
  transform: scale(0.98);
  transition: 0.25s ease;
}
.quote-card.is-active { opacity: 1; transform: scale(1); }
.quote-card:nth-child(2) { background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(0,0,0,0.36)), radial-gradient(circle at top, #7baddc 0%, #2b335e 100%); }
.quote-card:nth-child(3) { background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(0,0,0,0.34)), radial-gradient(circle at top, #ddeabf 0%, #648064 100%); }
.quote-card:nth-child(4) { background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(0,0,0,0.36)), radial-gradient(circle at top, #f4d58d 0%, #9c5f1f 100%); }
.quote-card h3 { margin: 0 0 0.6rem; font-size: 1.7rem; }
.slider-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1rem; }
.dot { width: 0.78rem; height: 0.78rem; border-radius: 50%; }
.dot.is-active { background: #181614; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.blog-card {
  background: var(--panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.blog-thumb img,
.blog-thumb { width: 100%; height: 250px; object-fit: cover; display: block; }
.placeholder-thumb { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.25)), radial-gradient(circle at top, #b8e0f2 0%, #6087b0 100%); }
.placeholder-thumb.warm { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.33)), radial-gradient(circle at center, #f3c173 0%, #593721 100%); }
.placeholder-thumb.sunset { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.33)), radial-gradient(circle at top, #ffb06a 0%, #516285 100%); }
.blog-body { padding: 1.8rem; }
.blog-body h2,
.blog-body h3 { margin: 0 0 0.9rem; font-size: 1.6rem; line-height: 1.2; }

.video-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.2rem;
  background: #161410;
  color: #fff;
}

.video-feature p { color: #d1c9be; }
.video-placeholder {
  min-height: 260px;
  border-radius: 1.6rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  display: grid;
  place-items: center;
  text-align: center;
}
.play-icon { font-size: 2.6rem; color: #ffd06f; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}
.eyebrow.dark {
  background: var(--soft);
  color: var(--accent-dark);
  border-color: #f0ddb2;
}

.card-grid { display: grid; gap: 1.4rem; }
.card-grid.two-up { grid-template-columns: repeat(2, 1fr); }
.card-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.accent-card { background: #fff; }
.warm-card { background: var(--soft); border-color: #eedaa8; }
.prayer-block { background: #171511; color: #fff; }
.prayer-block p { color: #d6cec3; }
.prayer-copy {
  margin-top: 1.4rem;
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
}
.contact-copy,
.contact-form-card { padding: 2.2rem; }
.contact-copy { background: linear-gradient(180deg, #fff3cf 0%, #fffdfa 100%); }
.contact-copy ul { padding-left: 1.2rem; }
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea,
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #cfc8be;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  font: inherit;
  background: #fff;
}
.contact-form textarea,
.wpcf7-form textarea {
  min-height: 180px;
  border-radius: 1.5rem;
}

.page-intro { padding: 2.2rem; }
.page-copy { margin-top: 1rem; }
.article-shell { max-width: 900px; }
.single-header .meta { color: #746d65; margin-top: -0.2rem; }
.single-thumb { margin: 1.4rem 0; overflow: hidden; border-radius: 1.5rem; }
.single-content > *:first-child { margin-top: 0; }

.site-footer {
  margin-top: 4rem;
  background: #161410;
  color: #ece4da;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
}
.footer-inner h2 { margin: 0 0 0.6rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; align-items: flex-start; }
.footer-links a { color: #fff; }

@media (max-width: 1100px) {
  .menu-toggle { display: inline-block; }
  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .menu-list { flex-direction: column; align-items: stretch; }
}

@media (min-width: 1101px) {
  .primary-nav { display: block !important; position: static; }
}

@media (max-width: 900px) {
  .section-split,
  .video-feature,
  .card-grid.two-up,
  .card-grid.three-up,
  .contact-shell,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .quote-slider { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 1.2rem, 1200px); }
  .panel, .content-card, .page-intro, .single-article, .prayer-block, .contact-copy, .contact-form-card { padding: 1.4rem; }
  .hero-home { min-height: calc(90vh - 82px); }
}
.hero-video-section {
  width: 100%;
  margin: -2.5rem 0 0;
  padding: 0 0 1.5rem;
  position: relative;
  z-index: 4;
}

.hero-video-shell {
  width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
  border-radius: 2rem;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  aspect-ratio: 16 / 9;
}

.hero-video-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

@media (max-width: 768px) {
  .hero-video-section {
    margin-top: -1rem;
    padding-bottom: 1rem;
  }

  .hero-video-shell {
    width: calc(100% - 1rem);
    border-radius: 1.25rem;
  }
}
.journey-image-panel {
  padding: 0;
}

.journey-image-card {
  padding: 1rem;
  background: linear-gradient(180deg, #d7ebf6 0%, #ece7df 100%);
  border-radius: 2rem;
  overflow: hidden;
  height: 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.journey-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 1.5rem;
}

@media (max-width: 768px) {
  .journey-image-card {
    padding: 0.75rem;
    border-radius: 1.4rem;
  }

  .journey-image {
    min-height: 320px;
    border-radius: 1rem;
  }
}
.questions-book-panel {
  padding: 0;
}

.questions-book-card {
  padding: 1.5rem;
  border-radius: 2rem;
  overflow: hidden;
  height: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.questions-book-image {
  display: block;
  max-width: 100%;
  max-height: 560px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.questions-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: #111111;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, background 0.18s ease;
}

.questions-cta:hover {
  background: #000000;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.questions-cta:visited,
.questions-cta:focus,
.questions-cta:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .questions-book-card {
    padding: 1rem;
    min-height: 420px;
    border-radius: 1.4rem;
  }

  .questions-book-image {
    max-height: 360px;
  }

  .questions-cta {
    width: auto;
  }
}

.homepage-featured-videos {
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.slider-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.slider-header .section-header p {
  margin-top: 0.5rem;
  color: #6b7280;
}

.featured-slider-controls {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.featured-slider-btn {
  width: 3rem;
  height: 3rem;
  border: 1px solid #d6d3d1;
  border-radius: 999px;
  background: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.featured-slider-btn:hover {
  transform: translateY(-1px);
  background: #f7f7f7;
}

.featured-slider-shell {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.featured-slider-shell::-webkit-scrollbar {
  display: none;
}

.featured-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1.5rem) / 2);
  gap: 1.5rem;
}

.featured-video-slide {
  scroll-snap-align: start;
  min-width: 0;
}

.featured-video-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.featured-video-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.featured-video-copy h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.featured-video-copy p {
  margin: 0.45rem 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.featured-video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.featured-video-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .featured-slider-track {
    grid-auto-columns: 100%;
  }

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

.videos-page-template {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.videos-page-hero p {
  margin-top: 0.5rem;
  color: #6b7280;
}

.video-group-section + .video-group-section {
  margin-top: 3.5rem;
}

.video-group-heading p {
  margin-top: 0.4rem;
  color: #6b7280;
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.video-card-body h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.video-card-body p {
  margin: 0.45rem 0 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.video-card-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  aspect-ratio: 16 / 9;
  background: #000;
}

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

.video-card-play {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.86);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .video-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .video-card-grid {
    grid-template-columns: 1fr;
  }
}
.whats-next-diagonal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.whats-next-copy-box,
.whats-next-image-box {
  background: #ffffff;
  border: 1px solid #d6d3d1;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.whats-next-copy-box {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whats-next-copy-box h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.06;
}

.whats-next-copy-box p {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
}

.whats-next-image-box {
  padding: 0;
}

.whats-next-grid-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .whats-next-diagonal-grid {
    grid-template-columns: 1fr;
  }

  .whats-next-copy-box,
  .whats-next-image-box,
  .whats-next-grid-image {
    min-height: 320px;
  }

  .whats-next-copy-box {
    padding: 1.5rem;
  }
}