
  .imf-news-hero-lines {
    background: #ffffff;
    color: #0F2B42;
    padding: 2rem 0;
    margin-bottom: 2.5rem;
    font-family: 'Inter', -apple-system, sans-serif;
  }
  .imf-news-hero-lines__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .imf-news-hero-lines__header {
    margin-bottom: 1.5rem;
  }
  .imf-news-hero-lines__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F2B42;
    margin: 0 0 0.5rem 0;
  }
  .imf-news-hero-lines__desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6B6B6B;
    margin: 0;
  }
  .imf-news-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .imf-news-hero-card {
    background: #ffffff;
    border: 1px solid #E2DDD6;
    border-radius: 8px;
    padding: 1.25rem;
    text-decoration: none;
    color: #0F2B42;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
  }
  .imf-news-hero-card:hover {
    border-color: #D4782F;
    box-shadow: 0 4px 16px rgba(15,43,66,0.06);
    transform: translateY(-2px);
  }
  .imf-news-hero-card__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6B6B6B;
    margin-bottom: 0.4rem;
  }
  .imf-news-hero-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  .imf-news-hero-card__arrow {
    font-size: 0.85rem;
    color: #D4782F;
    font-weight: 700;
  }
  @media (max-width: 991px) {
    .imf-news-hero-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .imf-news-hero-grid {
      grid-template-columns: 1fr;
    }
    .imf-news-hero-lines {
      padding: 1.5rem 0;
    }
  }
