.hero-newsroom {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-newsroom .hero-bg {
    position: absolute;
    inset: 0;
    will-change: transform;
}

.hero-newsroom .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1,4,10,0.7) 0%, rgba(1,4,10,0.9) 100%);
}

.light .hero-newsroom .hero-overlay {
    background: linear-gradient(180deg, rgba(245,247,249,0.7) 0%, rgba(245,247,249,0.92) 100%);
}

.news-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(45,193,255,0.08);
    border-color: rgba(45,193,255,0.2);
}

.light .news-card {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.08);
}

.light .news-card:hover {
    box-shadow: 0 20px 60px rgba(46,102,212,0.1);
    border-color: rgba(46,102,212,0.2);
}

.filter-pill {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-pill:hover, .filter-pill.active {
    opacity: 1;
    border-color: #45c1ff;
    background: rgba(45,193,255,0.1);
    color: #45c1ff;
}

.light .filter-pill {
    border: 1px solid rgba(0,0,0,0.1);
}

.light .filter-pill:hover, .light .filter-pill.active {
    border-color: #2e66d4;
    background: rgba(46,102,212,0.1);
    color: #2e66d4;
}

.blog-card-img {
    overflow: hidden;
}

.blog-card-img img {
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.newsletter-section {
    background: linear-gradient(135deg, rgba(46,102,212,0.15), rgba(45,193,255,0.08), rgba(1,4,10,0.9));
    border-top: 1px solid rgba(45,193,255,0.1);
    border-bottom: 1px solid rgba(45,193,255,0.1);
}

.light .newsletter-section {
    background: linear-gradient(135deg, rgba(46,102,212,0.08), rgba(45,193,255,0.05), rgba(245,247,249,0.95));
    border-top: 1px solid rgba(46,102,212,0.1);
    border-bottom: 1px solid rgba(46,102,212,0.1);
}
