      /* Featured Article */
      .featured-section { padding: 0 0 80px; }
      .featured-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid var(--border);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s;
      }
      .featured-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); }
      .featured-img { background: var(--blue-light); min-height: 340px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; }
      .featured-img svg { width: 60px; height: 60px; color: var(--blue); opacity: 0.3; }
      .featured-img p { font-size: 13px; color: var(--text-muted); font-weight: 500; }
      .featured-content { padding: 40px 40px 40px 0; display: flex; flex-direction: column; justify-content: center; }
      .featured-badge { display: inline-block; background: var(--cta); color: #fff; padding: 4px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; width: fit-content; }
      .featured-content h3 { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; line-height: 1.2; }
      .featured-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
      .featured-meta { font-size: 13px; color: var(--text-muted); font-weight: 400; }
      .featured-meta span { color: var(--blue); font-weight: 500; }

      /* News Grid */
      .news-section { padding: 80px 0 100px; background: rgba(255, 255, 255, 0.05); }
      .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
      .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
      .news-card { background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: all 0.4s; }
      .news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15); }
      .news-thumb { height: 200px; background: var(--blue-light); display: flex; align-items: center; justify-content: center; position: relative; }
      .news-thumb svg { width: 40px; height: 40px; color: var(--blue); opacity: 0.25; }
      .news-category { position: absolute; top: 16px; left: 16px; background: rgba(15, 23, 41, 0.7); color: #fff; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; backdrop-filter: blur(8px); }
      .news-body { padding: 24px; }
      .news-body h3 { font-family: "Playfair Display", serif; font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; line-height: 1.3; }
      .news-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
      .news-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); }
      .news-meta .read-more { color: var(--blue); font-weight: 600; text-decoration: none; transition: color 0.3s; }
      .news-meta .read-more:hover { color: #fff; }

      /* Media Mentions */
      .media-section { padding: 100px 0; }
      .media-header { text-align: center; max-width: 550px; margin: 0 auto 48px; }
      .media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .media-card { display: flex; gap: 20px; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: all 0.3s; }
      .media-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); }
      .media-logo { width: 60px; height: 60px; background: var(--blue-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
      .media-logo svg { width: 24px; height: 24px; color: var(--blue); }
      .media-info h4 { font-family: "Playfair Display", serif; font-size: 16px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 4px; }
      .media-info .source { font-size: 12px; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
      .media-info p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

      @media (max-width: 768px) {
        .featured-card, .news-grid, .media-grid { grid-template-columns: 1fr; }
        .featured-content { padding: 24px; }
        .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
      }
