/* News page-specific styles */
.news-hero-bg {
    background-image: url('../images/hero-3.jpg');
}

.news-hero-title span {
    color: var(--primary-color);
}

.news-hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 300;
}

.news-page-wrapper {
    position: relative;
    overflow: hidden;
    padding: var(--section-padding);
}

.news-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.news-blob-primary {
    top: -5%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(22, 205, 233, 0.08);
    filter: blur(60px);
}

.news-blob-secondary {
    top: 20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(10, 14, 39, 0.06);
    filter: blur(80px);
}