.section__news {
    padding: 20px;
    background-color: #0E0F10;
    margin-top: 30px;
    border-radius: 10px;
}

.news__article {
    background-color: #0f1011;
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.news__article:hover {
    transform: translateY(-5px); 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}

.news__title {
    font-size: 1.6rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.news__date {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.news__description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

.news__link {
    font-size: 1.1rem;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.news__link:hover {
    text-decoration: underline;
}

.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-color: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    width: 80%;
    position: relative;
    animation: popupAnimation 0.4s ease-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popup__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
}

.popup.show {
    display: flex;
    opacity: 1;
}

@keyframes popupAnimation {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
