.modal-news {
    opacity: 0;
    visibility: hidden;
}

.modal-news.show {
    opacity: 1;
    visibility: visible;
}

.modal-news .modal-content {
    display: grid;
    gap: 30px;
}

.modal-news .modal-content img {
    width: 100%;
    height: 45vh;
    object-fit: cover;
}

.modal-news .modal-content h2 {
    font-family: 'Circe ExtraBold', sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: #fff;
    text-align: center;
}

.modal-news .modal-content p {
    font-family: 'Circe Regular', sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: #fff;
    line-height: 150%;
}

