.news-container {
    width: calc(100% - 200px);
    margin: 60px auto;
}
a{
    text-decoration: none !important;
    color: black !important;

}
a:hover, a:focus{
    text-decoration: underline !important;
}
.news-container h2 {
    font-family: Archivo;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 34px !important; /* 34 instead of 50 to maintain gap*/
}
.news-container p {
    font-family: Archivo;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center; 
    margin-bottom: 50px;  
    color: rgba(0, 0, 0, 1);
}
.vertical-slide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.vertical-item{
    width: 100%;
}
.news-swiper-container {
    position: relative;
    height: auto;
    margin: 0 auto;
    padding: 0;
    max-width: 1240px;
}
.news-swiper-container .swiper {
    width: 100%;
    height: 100%;
}
.swiper-wrapper:first-child {
    padding: 0 !important;
}
.news-swiper-container .swiper-pagination {
    position: relative !important;
    margin-top: 48px;
    padding: 13.5px 0;
    line-height: 100%;
    bottom: 0 !important;
    /* margin-left:529px */
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal{
    width:100% !important
}
.news-swiper-container .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    /* margin: 0 12px !important; */
    margin: 0 0 0 12px!important;
    opacity: 1;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
    width: 76px !important;
    border-radius: 10px;
    background: linear-gradient(90deg, #B8E5FA 50%, #FFE000 100%);
}
.news-img {
    height: 234px;
    width: auto;
    border-radius: 30px;
}
.news-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.news-name {
    margin-top: 20px;
}
.news-name h3 {
    font-family: Archivo;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    color: rgba(117, 117, 117, 1);
}
.news-name p {
    font-family: Archivo;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 1);
    text-align: left;
    margin:  0px 0 !important;
}
.news-name .desktop-text {
    font-family: Archivo;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    margin: 0;
    color: rgba(117, 117, 117, 1);
}
.news-name .mobile-text{
    display:none;
}
.news-desc{
    display:none;
}

@media (max-width: 1024px) {
    .news-container {
        width: calc(100% - 39px);
        margin: 32px auto 34px;
    }
    .news-container h2 {
        font-weight: 600;
        font-size: 26px;
        margin-bottom: 16px !important;
    }
    .news-swiper-container {
        max-width: 400px;
    }
    .news-swiper-container .swiper-pagination {
        margin-top: 10px;
        padding: 15px 0;
    }
    .news-img {
        height: 350px;
        border-bottom-right-radius: unset;
        border-bottom-left-radius: unset;
    }
    .news-name {
        background: #F9F9F9;
        padding: 17px 20px;
        margin: 0;
    }
    .news-name p{
        margin: 8px 0 !important;
    }
    .news-name .mobile-text{
        display: block;
        font-family: Archivo;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0;
        margin: 0;
        color: rgba(117, 117, 117, 1);
    }
    .news-name .desktop-text{
        display:none;
    }
    .news-img img {
        height: 100%;
        width: 100%;
        object-position: center 30%;
        border-bottom-right-radius: unset;
        border-bottom-left-radius: unset;
    }
    .news-swiper-container .swiper-pagination-clickable .swiper-pagination-bullet{
        background: #082D354D;
    }
    .news-swiper-container .swiper-pagination-clickable .swiper-pagination-bullet-active {
        background: linear-gradient(90deg, #B8E5FA 50%, #FFE000 100%);
    }
}