body {
      background: #fff;
      color: #222;
      font-family: 'Roboto', Arial, sans-serif;
      margin: 0;
      padding: 0;
    }
    .news-section {
      max-width: 850px;
      margin: 50px auto;
      padding: 0 16px 40px 16px;
    }
    .news-header {
      text-align: center;
      margin-bottom: 38px;
      padding-top: 20px;
    }
    .news-title {
      font-family: 'Oswald', Arial, sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: #111;
      letter-spacing: 2px;
      margin-bottom: 6px;
      display: inline-block;
      border-bottom: 4px solid #222;
      padding-bottom: 6px;
    }
    .news-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      justify-content: center;
    }
    .news-card {
      background: #fff;
      border: 1.5px solid #222;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      max-width: 370px;
      min-width: 270px;
      flex: 1 1 320px;
      padding: 28px 26px 22px 26px;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .news-card:hover {
      box-shadow: 0 8px 32px rgba(0,0,0,0.14);
      transform: translateY(-6px) scale(1.025);
      border-color: #000;
      background: #f6f6f6;
    }
    .news-date {
      font-size: 1.08rem;
      color: #fff;
      background: #222;
      display: inline-block;
      padding: 2px 14px;
      border-radius: 8px;
      font-family: 'Oswald', Arial, sans-serif;
      letter-spacing: 1px;
      margin-bottom: 12px;
      font-weight: 600;
      box-shadow: 0 1px 4px #0002;
    }
    .news-headline {
      font-size: 1.32rem;
      font-weight: 700;
      color: #111;
      margin-bottom: 8px;
      font-family: 'Oswald', Arial, sans-serif;
      letter-spacing: 0.5px;
      line-height: 1.25;
    }
    .news-summary {
      font-size: 1.05rem;
      color: #444;
      margin-bottom: 0;
      line-height: 1.55;
      flex: 1 0 auto;
    }
    @media (max-width: 700px) {
      .news-flex {
        flex-direction: column;
        gap: 18px;
      }
      .news-card {
        max-width: 100%;
        min-width: 0;
        padding: 20px 14px 16px 14px;
      }
    }
    @media (max-width: 500px) {
      .news-title {
        font-size: 1.5rem;
        border-bottom-width: 2px;
      }
      .news-card {
        font-size: 0.98rem;
      }
    }