.cz-news__section {
    padding: 30px 0;
}

.cz-news__title {
    font-size: 40px;
    font-weight: 700 !important;
}

.cz-news__card-subtitle {
    height: 35px;
}

.cz-news__card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cz-news__card-info {
    padding: 16px 16px 32px 16px;
}

.cz-news__card-image {
    width: 100%;
    height: 326px;
    object-fit: cover;
    border-radius: 24px;
}

.cz-news-popup__card-image {
    width: 100%;
    /*height: 326px;*/
    object-fit: cover;
    border-radius: 24px;
}

.cz-news-popup__card-image {
    width: 100%;
    height: 326px;
    object-fit: cover;
    border-radius: 24px;
}

.cz-news__swiper-wrapper {
    height: auto !important;
    overflow: visible;
    padding: 30px 0;
}

.cz-news__swiper-button-next, .cz-news__swiper-button-prev {
    color: var(--primary-fc);
    background: var(--secondary-fc);
}

.cz-news__section .swiper-pagination-bullet {
    /*background: rgba(225, 159, 148, 0.4)*/
}

.cz-news__section .swiper-pagination-bullet-active {
    background: var(--secondary-fc);
}


@media only screen and (max-width: 920px) {
    .cz-news__content {
        margin-bottom: -55px;
    }
}

.news-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.popup-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    z-index: 10001;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    padding: 40px;
    overflow-y: auto;
    max-height: calc(90vh - 80px);
}

.popup-title {
    font-size: 24px;
    font-weight: 600;
    margin: 20px 0;
}

.popup-text p,
.popup-text b,
.popup-text  {
    font-size: 20px;
}

@media only screen and (max-width: 1120px) {
    .popup-title {
        font-size: 20px;
    }

    .popup-text p,
    .popup-text b,
    .popup-text  {
        font-size: 16px;
    }
}