.card {
    height: 350px;
    border: 0;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

#carouselNews {
    margin-top: 5%;
}

#news {
    margin-bottom: 140px;
}

@media (max-width: 991px) {
    #news {
        margin-bottom: 100px;
    }
}

.news__title {
    font-weight: 700;
    font-size: clamp(32px, 3vw, 36px);
    margin-bottom: 0;
    color: #000;
}

.card-img-block {
    width: 100%;
    height: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

#news .swiper-wrapper {
    padding-top: 0;
    padding-bottom: 20px;
}

.card-img-top {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: all 0.3s ease;
}

.card__title {
    font-weight: 600;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.card-body {
    padding: 20px 0 10px 0;
    display: flex;
    flex-direction: column;
}

.card__label {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.card__time {
   color: #38C4BD;
   font-size: 12px;
   font-weight: 600;
   margin-top: auto; 
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background-color: #38C4BD;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: -80px;
}

.swiper-button-prev {
    right: 68px;
    left: auto;
}


.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px;
}

.swiper-container {
    position: relative;
}

.news__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.carousel-navigarion {
    display: flex;
    gap: 24px;
    align-items: center;
}

.carousel-navigation__prev, .carousel-navigation__next {
    cursor: pointer;
    background-color: #38C4BD;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='18' viewBox='0 0 11 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 17L9.5 9L1.5 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");;
}

.carousel-navigation__prev {
    transform: rotate(180deg);
}

.swiper-button-disabled {
    background-color: #C4C4C4 ;
}


@media (max-width: 320px) {
    .card {
        width: 100% !important
    }
}

