.news-hero {
    margin-bottom: 2.75rem;
    max-width: 40rem;
  }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    letter-spacing: -0.035em;
    font-weight: 800;
    margin-bottom: 0.85rem;
  }

  .lead {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.55;
  }

  .news-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .news-row {
    display: grid;
    grid-template-columns: 11rem 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.6rem;
    border-radius: 1.35rem;
    text-decoration: none;
    background: var(--island-soft);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, border-color 0.2s, box-shadow 0.25s;
  }

  .news-row:hover {
    transform: translateY(-2px);
    border-color: rgba(65, 160, 255, 0.35);
    box-shadow: 0 12px 30px rgba(11, 31, 51, 0.06);
  }

  time {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand);
    padding-top: 0.2rem;
  }

  .news-row h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    color: var(--ink);
  }

  .news-row p {
    color: var(--muted);
    line-height: 1.5;
  }

  .empty {
    padding: 1.5rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid var(--line);
    color: var(--muted);
  }

  @media (max-width: 700px) {
    .news-row {
      grid-template-columns: 1fr;
      gap: 0.5rem;
    }
  }


  .news-container {
    max-width: 760px;
    margin: 0 auto 2rem;
  }

  .back-link {
    display: inline-block;
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .back-link:hover {
    color: var(--brand-bright);
    transform: translateX(-4px);
  }

  .article-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .article-meta {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .article-date {
    color: var(--brand);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .article-badge {
    background: rgba(65, 160, 255, 0.12);
    color: var(--brand-deep);
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.78rem;
    font-weight: 700;
  }

  .article-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0;
    width: 100%;
  }

  .article-description {
    font-size: 1.2rem;
    line-height: 1.55;
    color: var(--muted);
    border-left: 4px solid var(--brand-bright);
    padding-left: 1.25rem;
    margin: 0;
    width: 100%;
  }

  .article-content {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #334155;
    border-top: 1px solid var(--line);
    padding-top: 2.25rem;
  }

  .article-content p {
    margin-bottom: 1.5rem;
  }

  .article-content a {
    color: var(--brand);
    font-weight: 600;
  }

  .article-content h2,
  .article-content h3 {
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    margin: 2rem 0 0.75rem;
    color: var(--ink);
  }
