    :root {
      --bg: #f6f2ea;
      --paper: #fffdf9;
      --ink: #1f1a17;
      --muted: #6c625a;
      --accent: #8b5e3c;
      --accent-dark: #5e3d28;
      --line: #ddd3c7;
      --shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    * { box-sizing: border-box; }

    .summary-container {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.7;
    }

    .summary-container h1 {
      color: var(--paper);
    }

    .summary-container h2 {
      color: #d9a02f;
    }

    .summar-container blockquote {
      margin: 0;
      padding: 1.5rem;
      border-left: 5px solid var(--accent);
      background: #f7efe6;
      border-radius: 14px;
      font-size: 1.15rem;
      color: #42362d;
    }

    .hero {
      min-height: 35vh;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 3rem 1.25rem;
      color: white;
      background:
        linear-gradient(rgba(22, 18, 14, 0.55), rgba(22, 18, 14, 0.7)),
        url('https://gtsacademy.com/wp-content/uploads/2026/04/sermon-img001.webp') center/cover no-repeat;
    }

    .hero-inner {
      max-width: 900px;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.8rem;
      opacity: 0.9;
      margin-bottom: 1rem;
    }


    .hero p {
      max-width: 700px;
      margin: 1.5rem auto 0;
      font-size: 1.15rem;
    }

    .container {
      width: min(1100px, calc(100% - 2rem));
      margin: 0 auto;
    }

    .intro-card {
      background: var(--paper);
      margin-top: -60px;
      position: relative;
      z-index: 2;
      border-radius: 24px;
      padding: 2rem 2rem 1rem;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
    }

    .section {
      padding: 2rem 0;
    }

    .section-title {
      font-size: 2rem;
      margin: 0 0 1rem;
      color: var(--accent-dark);
    }

    .lead {
      font-size: 1.12rem;
      color: var(--muted);
      max-width: 780px;
    }

    .image-card img,
    .wide-image img {
      width: 100%;
      display: block;
      border-radius: 22px;
      box-shadow: var(--shadow);
      object-fit: cover;
    }

    .wide-image { padding-bottom: 20px; }

    .image-card img { min-height: 380px; }
    .wide-image img { min-height: 430px; }

    .panel {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .voices {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .voice-card {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }

    .voice-card h3 {
      margin-top: 0;
      color: var(--accent-dark);
    }

    .miracles {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .miracle {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 1rem 1.1rem;
      text-align: center;
      font-weight: 600;
    }

    .steps {
      counter-reset: step;
      display: grid;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .step {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 1rem 1.2rem;
      box-shadow: var(--shadow);
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      flex: 0 0 42px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--accent);
      color: white;
      font-weight: 700;
    }

    .closing {
      text-align: center;
      padding: 3rem 1.25rem 1.5rem;
      color: white;
      background:
        linear-gradient(rgba(44, 28, 18, 0.7), rgba(44, 28, 18, 0.8)),
        url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    }

    .closing h2 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
    }

    .closing p {
      max-width: 760px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    @media (max-width: 900px) {
      .grid-2,
      .voices,
      .miracles {
        grid-template-columns: 1fr;
      }

      .intro-card {
        margin-top: -40px;
      }
    }