
  .press-release-page {
    --navy: #102a43;
    --blue: #2563eb;
    --light: #f8fafc;
    --border: #e5e7eb;
    --text: #334155;
    --muted: #475569;
    --white: #ffffff;

    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.72;
  }

  .press-release-page * {
    box-sizing: border-box;
  }

  .press-release-page .container {
    width: min(1080px, 92%);
    margin: 0 auto;
  }

  .press-release-page h1,
  .press-release-page h2,
  .press-release-page h3 {
    margin: 0 0 18px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -0.03em;
  }

  .press-release-page h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
  }

  .press-release-page h2 {
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
  }

  .press-release-page p {
    margin: 0 0 20px;
    font-size: 18px;
    color: var(--muted);
  }

  .news-hero {
    padding: 105px 0 82px;
    background:
      radial-gradient(circle at 85% 20%, rgba(37, 99, 235, 0.35), transparent 32%),
      linear-gradient(135deg, #020617 0%, #0f172a 48%, #1e293b 100%);
    color: #ffffff;
  }

  .news-hero h1,
  .news-hero p,
  .news-hero .news-label,
  .news-hero .news-meta {
    color: #ffffff;
  }

  .news-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #dbeafe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .news-meta {
    margin-top: 24px;
    font-size: 15px;
    color: #dbeafe;
  }

  .news-hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 56px;
    align-items: center;
  }

  .news-image {
    padding: 14px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  }

  .news-hero .news-image {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
  }

  .news-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
  }

  .image-caption {
    margin-top: 12px;
    font-size: 14px;
    color: #64748b;
    text-align: center;
  }

  .news-hero .image-caption {
    color: #dbeafe;
  }

  .press-body {
    padding: 86px 0;
    background: #ffffff;
  }

  .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
  }

  .article-content {
    max-width: 760px;
  }

  .article-content p {
    font-size: 18px;
  }

  .article-image {
    margin: 34px 0 42px;
  }

  .event-card {
    position: sticky;
    top: 24px;
    padding: 30px;
    border-radius: 24px;
    background: var(--light);
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
  }

  .event-card h3 {
    margin-bottom: 22px;
    font-size: 24px;
  }

  .event-info-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
  }

  .event-info-item:last-child {
    border-bottom: none;
  }

  .event-info-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
    font-size: 15px;
  }

  .event-info-item span {
    color: var(--muted);
    font-size: 16px;
  }

  .closing-section {
    padding: 78px 0;
    background:
      linear-gradient(135deg, rgba(37, 99, 235, 0.26), transparent 45%),
      #0f172a;
    color: #ffffff;
    text-align: center;
  }

  .closing-section p {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    color: #dbeafe;
  }

  .contact-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 16px 38px;
    border-radius: 999px;
    background: #ffffff;
    color: #102a43;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 16px 36px rgba(0,0,0,0.22);
  }

  .contact-btn:hover {
    background: #eff6ff;
    color: var(--blue);
  }

  @media (max-width: 960px) {
    .news-hero-grid,
    .article-layout {
      grid-template-columns: 1fr;
    }

    .news-hero,
    .press-body,
    .closing-section {
      padding: 70px 0;
    }

    .event-card {
      position: static;
    }
  }
