.section__news {
    margin: 10px 6% 120px;
    padding: 0;
    background: transparent;
}

.news__article {
    background: var(--glassBackground);
    border: 1px solid var(--borderGlass);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadowSm);
    padding: 22px 24px;
    margin-bottom: 18px;
    transition: var(--transitionMedium);
    position: relative;
    overflow: hidden;
}
.news__article::before{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--colorMainGradient);
    opacity: 0;
    transition: var(--transitionMedium);
}
.news__article:hover::before{ opacity: 1; }

.news__article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadowMd);
}

.news__title {
    font-size: 1.6rem;
    color: var(--colorHeading);
    font-weight: 700;
    margin-bottom: 8px;
}

.news__date {
    font-size: 0.95rem;
    color: var(--colorTextDark);
    margin-bottom: 10px;
}

.news__description {
    font-size: 1.05rem;
    color: var(--colorText);
    margin-bottom: 15px;
}

.news__link {
    display: inline-block;
    font-size: 1.0rem;
    color: #fff;
    background: var(--colorMainGradient);
    text-decoration: none;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 10px;
}

.news__link:hover {
    filter: brightness(1.05);
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup__content {
    background: var(--glassBackground);
    color: var(--colorText);
    border: 1px solid var(--borderGlass);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    max-width: 720px;
    width: 86%;
    position: relative;
    animation: popupAnimation 0.35s ease-out;
    box-shadow: var(--shadowLg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.popup__content h2{ color: var(--colorHeading); font-weight: 800; letter-spacing: -0.01em; margin: 0 24px 8px 0; font-size: 1.4rem; }
.popup__content p{ color: var(--colorText); font-size: 1rem; line-height: 1.6; }

.popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--borderGlass);
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--colorHeading);
    transition: var(--transitionFast);
}
.popup__close:hover{ background: rgba(255,255,255,0.12); }

.popup.show {
    display: flex;
    opacity: 1;
}

@keyframes popupAnimation {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero spacing overrides for updates page */
.section__header{ margin: 16px 6% 12px; min-height: auto; }
.header__description{ margin-top: 6px; }
