    :root {
      --bg: #faf5ef;
      --accent: #f97316;
      --accent-2: #0ea5e9;
      --text: #1f2933;
      --muted: #6b7280;
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      background: radial-gradient(circle at top left, #fffaf3, #f5eee4);
      color: var(--text);
    }

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

    a { color: inherit; text-decoration: none; }

    .container {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      padding: 1.5rem 1.5rem 3rem;
    }

    header {
      padding-top: 1rem;
      padding-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-logo {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      padding: 4px;
      background: radial-gradient(circle at 20% 0, #fef3c7, #fed7aa);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
    }

    .brand-logo img {
      border-radius: 999px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .brand-text-title {
      font-family: "Playfair Display", serif;
      font-weight: 700;
      font-size: 1rem;
    }

    .brand-text-sub {
      font-size: 0.76rem;
      color: var(--muted);
    }

    .back-link {
      font-size: 0.82rem;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 0.2rem;
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(255,255,255,0.7);
    }

    .back-link span {
      font-size: 0.9rem;
    }

    main {
      margin-top: 1.2rem;
      background: rgba(255,255,255,0.96);
      border-radius: 24px;
      box-shadow: 0 18px 45px rgba(15,23,42,0.18);
      overflow: hidden;
    }

    .story-image {
      max-height: 420px;
      overflow: hidden;
    }

    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-body {
      padding: 1.6rem 1.6rem 2rem;
    }

    .story-date {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      margin-bottom: 0.4rem;
    }

    .story-title {
      font-family: "Playfair Display", serif;
      font-size: 1.9rem;
      margin: 0 0 0.7rem;
    }

    .story-tagline {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1.4rem;
    }

    .story-tagline strong {
      color: var(--accent);
      font-weight: 600;
    }

    .story-text p {
      font-size: 0.98rem;
      line-height: 1.8;
      color: #111827;
      margin: 0 0 0.9rem;
    }

    .story-text p:last-child {
      margin-bottom: 0;
    }

    footer {
      margin-top: 1.5rem;
      font-size: 0.78rem;
      color: var(--muted);
      text-align: center;
    }

    @media (max-width: 600px) {
      .container {
        padding: 1rem 1rem 2.4rem;
      }
      .story-body {
        padding: 1.3rem 1.2rem 1.6rem;
      }
      .story-title {
        font-size: 1.6rem;
      }
    }
