body {
  font-family: 'Roboto', 'Georgia', serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #e9e9e9;
  margin: 0;
  padding: 0;
}
.newsletter-container {
  max-width: 1200px;
  margin: 20px auto;
  background: #ffffff;
  padding: 20px 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


body {
    font-family: 'Roboto', 'Georgia', serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #e9e9e9;
    margin: 0;
    padding: 0;
  }
  .newsletter-container {
    max-width: 1200px;
    margin: 20px auto;
    background: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .header {
    text-align: center;
    border-bottom: 3px double #1a1a1a;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }
  #main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 4em;
    margin: 0;
  }
  .subtitle {
    font-size: 1.4em;
    font-style: italic;
    color: #444;
    margin-top: 5px;
    line-height: 1.4;
  }
  .subtitle a {
    color: #005a9c;
    text-decoration: none;
  }
   .subtitle a:hover {
    text-decoration: underline;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8em;
    font-weight: 700;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: left;
  }
  .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
  }
  .story {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
  }
  .story h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 8px;
    color: #000;
    line-height: 1.3;
  }
  .metadata {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
  }
  .metadata span {
    font-weight: 500;
  }
  .story p {
    font-size: 1em;
    margin-bottom: 12px;
    margin-top: 0;
  }
  .story a {
    color: #005a9c;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
  }
  .story a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .content-grid {
      grid-template-columns: 1fr;
    }
    #main-title {
        font-size: 3em;
    }
    .section-title {
        font-size: 2.2em;
    }
  }
