    /* Hero */
    .media-hero {
      background: linear-gradient(135deg, #0a1a0f 0%, #132e1f 50%, #1a4c33 100%);
      color: #fff;
      padding: 8rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .media-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 15% 40%, rgba(67,150,156,0.22), transparent 60%),
                  radial-gradient(circle at 85% 60%, rgba(78,205,196,0.16), transparent 60%);
      pointer-events: none;
    }
    .media-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      text-align: center;
    }
    .media-hero .section-label { color: #4ecdc4; letter-spacing: 3px; }
    .media-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0 0.75rem; }
    .media-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 720px; margin: 0 auto; }

    /* Tab switcher */
    .media-tabs {
      position: relative;
      display: flex;
      margin: 3rem auto 0;
      background: rgba(255,255,255,0.1);
      border-radius: 50px;
      padding: 0.35rem;
      width: fit-content;
    }
    .tab-slider {
      position: absolute;
      top: 0.35rem;
      left: 0.35rem;
      width: calc(50% - 0.35rem);
      height: calc(100% - 0.7rem);
      background: #fff;
      border-radius: 50px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    .media-tabs.tab-video .tab-slider {
      transform: translateX(100%);
    }
    .media-tab-btn {
      position: relative;
      z-index: 1;
      padding: 0.65rem 2rem;
      border: none;
      background: transparent;
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 50px;
      cursor: pointer;
      transition: color 0.3s;
      font-family: inherit;
    }
    .media-tab-btn.active {
      color: #1a4c33;
    }

    /* Tab panels */
    .media-panel { display: none; }
    .media-panel.active { display: block; }

    /* ===== NEWS STYLES ===== */
    .featured-news-section { padding: 4rem 0 2rem; }
    .featured-news {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 3rem;
      align-items: center;
      background: linear-gradient(135deg, #f5f9f7 0%, #e6f0eb 100%);
      border-radius: 20px;
      overflow: hidden;
      padding: 3rem;
      position: relative;
    }
    .featured-news::before {
      content: 'FEATURED';
      position: absolute;
      top: 1.5rem; left: 1.5rem;
      background: #1a4c33;
      color: #4ecdc4;
      padding: 0.35rem 0.85rem;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 2px;
    }
    .featured-news-visual {
      aspect-ratio: 4/3;
      background: linear-gradient(135deg, #1a4c33 0%, #2d7a4f 100%);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 6rem;
      color: rgba(255,255,255,0.9);
      box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }
    .featured-news-content .news-cat { color: var(--accent); font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; }
    .featured-news-content h2 { font-size: 1.75rem; line-height: 1.35; margin: 0.75rem 0 1rem; color: var(--text); }
    .featured-news-content .news-excerpt { color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.7; }
    .featured-news-meta { display: flex; gap: 1rem; align-items: center; color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
    .featured-news-meta .dot { width: 4px; height: 4px; background: var(--text-light); border-radius: 50%; }

    .news-filter {
      position: relative;
      display: flex; gap: 0.5rem; flex-wrap: wrap; padding: 0.5rem;
      background: #f5f7f6; border-radius: 50px; width: fit-content;
      margin: 0 auto 2.5rem;
    }
    .news-filter-slider {
      position: absolute;
      background: #1a4c33;
      border-radius: 50px;
      box-shadow: 0 4px 12px rgba(26,76,51,0.25);
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                  width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                  top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }
    .news-filter-btn {
      position: relative; z-index: 1;
      padding: 0.6rem 1.3rem; border: none; background: transparent;
      color: var(--text-light); font-weight: 600; font-size: 0.9rem;
      border-radius: 50px; cursor: pointer; transition: color 0.25s; font-family: inherit;
    }
    .news-filter-btn:hover { color: var(--text); }
    .news-filter-btn.active { color: #fff; }

    .news-section { padding: 2rem 0 5rem; }
    .news-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
    .news-section-head h2 { font-size: 1.8rem; margin: 0.5rem 0 0; }
    .news-section-head .section-label { color: var(--accent); font-weight: 700; }
    .news-count { color: var(--text-light); font-size: 0.95rem; }
    .news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.75rem; }
    .news-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex; flex-direction: column; text-decoration: none; color: inherit;
    }
    .news-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
    .news-card-visual {
      aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; color: rgba(255,255,255,0.92); position: relative;
    }
    .news-card-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.12)); }
    .news-card-body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
    .news-badge { display: inline-block; padding: 0.25rem 0.7rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.75rem; text-transform: uppercase; width: fit-content; }
    .badge-product { background: rgba(78,205,196,0.15); color: #0f7067; }
    .badge-partnership { background: rgba(255,152,0,0.15); color: #c97a00; }
    .badge-award { background: rgba(255,193,7,0.18); color: #b8860b; }
    .badge-tech { background: rgba(103,58,183,0.14); color: #5e35b1; }
    .badge-event { background: rgba(33,150,243,0.14); color: #1565c0; }
    .badge-company { background: rgba(76,175,80,0.14); color: #2e7d32; }
    .news-card h3 { font-size: 1.05rem; font-weight: 600; line-height: 1.45; color: var(--text); margin: 0 0 0.75rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .news-card p.excerpt { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin: 0 0 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .news-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(0,0,0,0.06); }
    .news-date { color: var(--text-light); font-size: 0.85rem; font-weight: 500; }
    .news-read-more { color: var(--accent); font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.25s; }
    .news-card:hover .news-read-more { gap: 0.6rem; }

    /* ===== VIDEO STYLES ===== */
    .featured-video {
      position: relative; max-width: 960px; margin: 3rem auto 0;
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
      aspect-ratio: 16/9; cursor: pointer; background: #000;
    }
    .featured-video img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
    .featured-video:hover img { transform: scale(1.04); }
    .featured-video .play-overlay {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.5)); transition: background 0.3s;
    }
    .featured-video:hover .play-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4)); }
    .featured-video .play-btn {
      width: 92px; height: 92px; border-radius: 50%; background: rgba(255,255,255,0.95);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 40px rgba(0,0,0,0.4); transition: transform 0.3s;
    }
    .featured-video:hover .play-btn { transform: scale(1.1); background: #fff; }
    .featured-video .play-btn::after {
      content: ''; width: 0; height: 0; border-style: solid;
      border-width: 18px 0 18px 28px; border-color: transparent transparent transparent #1a4c33; margin-left: 6px;
    }
    .featured-label {
      position: absolute; top: 1.25rem; left: 1.25rem;
      background: rgba(78,205,196,0.95); color: #0a1a0f;
      padding: 0.35rem 0.85rem; border-radius: 50px;
      font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; z-index: 2;
    }

    .video-section { padding: 5rem 0; }
    .video-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
    .video-section-head h2 { font-size: 1.8rem; margin: 0.5rem 0 0; }
    .video-section-head .section-label { color: var(--accent); font-weight: 700; }
    .video-count { color: var(--text-light); font-size: 0.95rem; }
    .video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.75rem; }
    .video-card {
      background: #fff; border-radius: 14px; overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.05);
      cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .video-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
    .video-thumb { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
    .video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
    .video-card:hover .video-thumb img { transform: scale(1.08); }
    .video-thumb .mini-play {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.45)); opacity: 0.95; transition: opacity 0.3s;
    }
    .video-card:hover .video-thumb .mini-play { opacity: 1; }
    .video-thumb .mini-play::before {
      content: ''; width: 56px; height: 56px; background: rgba(255,255,255,0.92);
      border-radius: 50%; position: absolute; transition: transform 0.3s;
    }
    .video-card:hover .video-thumb .mini-play::before { transform: scale(1.12); background: #fff; }
    .video-thumb .mini-play::after {
      content: ''; width: 0; height: 0; border-style: solid;
      border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #1a4c33;
      position: relative; z-index: 1; margin-left: 4px;
    }
    .video-info { padding: 1.1rem 1.25rem 1.25rem; }
    .video-category { display: inline-block; background: rgba(78,205,196,0.12); color: #1a4c33; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 0.5rem; text-transform: uppercase; }
    .video-title { font-size: 1rem; font-weight: 600; line-height: 1.4; color: var(--text); margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.8em; }

    .filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; padding: 0.5rem; background: #f5f7f6; border-radius: 50px; width: fit-content; margin-left: auto; margin-right: auto; }
    .filter-btn { padding: 0.6rem 1.3rem; border: none; background: transparent; color: var(--text-light); font-weight: 600; font-size: 0.9rem; border-radius: 50px; cursor: pointer; transition: all 0.25s; font-family: inherit; }
    .filter-btn:hover { color: var(--text); }
    .filter-btn.active { background: #1a4c33; color: #fff; box-shadow: 0 4px 12px rgba(26,76,51,0.25); }

    .video-modal {
      position: fixed; inset: 0; background: rgba(0,0,0,0.92);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      display: none; align-items: center; justify-content: center;
      z-index: 9999; padding: 2rem; animation: fadeIn 0.25s ease;
    }
    .video-modal.active { display: flex; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    .video-modal-content { position: relative; width: 100%; max-width: 1100px; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.8); }
    .video-modal-close { position: absolute; top: -48px; right: 0; background: transparent; border: none; color: #fff; font-size: 2rem; cursor: pointer; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
    .video-modal-close:hover { transform: rotate(90deg); }
    .video-modal iframe { width: 100%; height: 100%; border: 0; }

    @media (max-width: 860px) {
      .featured-news { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
      .featured-news-content h2 { font-size: 1.4rem; }
      .news-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .featured-video .play-btn { width: 72px; height: 72px; }
      .featured-video .play-btn::after { border-width: 14px 0 14px 22px; }
      .video-grid { grid-template-columns: 1fr; }
      .filter-tabs { width: 100%; justify-content: center; }
    }