    /* Hero Banner */
    .stories-hero {
      position: relative;
      height: 40vh;
      background: url("images/stories-banner.jpg") center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }
    .stories-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
    }
    .stories-hero h1 {
      position: relative;
      z-index: 1;
      font-size: 2.2rem;
    }

    /* Stories Section */
    .stories-section {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
    }
    .story {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
    }
    .story img {
      width: 100%;
      max-width: 300px;
      object-fit: cover;
    }
    .story-content {
      flex: 1;
      padding: 20px;
    }
    .story-content h3 {
      color: #a80000;
      margin-top: 0;
    }
    .story-content p {
      margin: 10px 0;
      line-height: 1.6;
    }
    @media (max-width: 768px) {
      .story { flex-direction: column; }
      .story img { max-width: 100%; }
    }
