@charset "UTF-8";
/* CSS Document */
  .story-shell {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background: #000;
      color: #eee;
    }

    .story-header-fixed {
      position: sticky;        /* stays at top while page scrolls */
      top: 0;
      z-index: 20;
      background: #000;
      border-bottom: 1px solid #333;
    }

    .story-header-inner {
      max-width: 600px;
      margin: 0 auto;
      padding: 10px 16px 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

.story-title {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
  color: #7b8b4a; /* olive green */
}

    .story-main {
      flex: 1;
      max-width: 600px;
      margin: 0 auto;
      padding: 16px 16px 32px;
      line-height: 1.7;
      font-size: 0.98rem;
    }

    .story-section {
      margin-bottom: 1.75rem;
    }

    .story-section h2 {
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }

    .story-key {
      color: greenyellow; /* subtle highlight */
    }

    .story-list {
      margin: 0.4rem 0 0.8rem;
      padding-left: 1.2rem;
    }

    .story-list li {
      margin: 0.15rem 0;
    }

    .story-footer {
      border-top: 1px solid #333;
      padding: 10px 16px 16px;
      text-align: center;
      font-size: 0.85rem;
    }

    .story-footer a {
      text-decoration: none;
    }

    /* Reuse your existing E-voice button styles; just add a tiny tweak */
    .story-voice-btn {
      white-space: nowrap;
    }

    /* Mobile tweak */
    @media (max-width: 600px) {
      .story-header-inner {
        flex-direction: column;
        align-items: flex-start;
      }
      .story-title {
        font-size: 1.2rem;
      }
      .story-main {
        font-size: 0.95rem;
      }
    }