.news-section {
    background-color: #dddddd;
    padding: 80px 20px;

}

.news-header1 {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
}

.news-header2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;

}

.news-title {
    font-size: 52px !important;
    color: #043263 !important;

}

.view-all {
    text-decoration: none;
    color: #043263;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #0f67c9;
}

.view-all::before {
    content: "→";
    margin-right: 5px;
}

.news-divider {
    width: 90%;
    max-width: 1200px;
    height: 1px;
    background-color: #043263;
    border: none;
    margin: 10px auto;
    margin-left: 10px;
}

.news-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-item {
    background: #dddddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    transition: transform 0.2s ease-in-out;
}

.news-item:hover {
    transform: scale(1.05);
}

.news-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    font-size: 16px;
    margin: 5px 10px;
    color: #003366;
    font-weight: bold;
}

.news-item p {
    font-size: 14px;
    color: gray;
    margin: 5px 10px 15px;
}

.news-gcs {
    font-size: 14px;
    font-weight: bold;
    color: #043263;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 10px;
    margin-left: 300px;

}

.news-title {
    font-size: 52px;
    font-weight: 800;
    color: #003368;
    margin: 0px;
    text-align: left;
    margin-bottom: 40px;
}

.news-gcs,
.news-title {
    margin-left: 0;
    padding-left: 20px;
}

.swiper-horizontal {
    margin-left: 0;
    padding-left: 20px;
    touch-action: pan-y;

}


.swiper-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 30px;
}


.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    z-index: 10;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}



.swiper-pagination-bullet {
    background: #003368;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #0f67c9;
}

.pagination {
    margin-top: 2rem;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
}

.pagination a.active {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

.news-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
}


.swiper-slide.news-item {
    width: 100% !important;
    max-width: calc((100% - 90px) / 4);
}

@media (max-width: 1024px) {
    .swiper-slide.news-item {
        max-width: calc((100% - 60px) / 3);
    }

    .news-title {
        font-size: 42px;
    }

    .news-header1,
    .news-header2 {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
    }

    .view-all {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .swiper-slide.news-item {
        max-width: calc((100% - 30px) / 2);
    }

    .news-title {
        font-size: 32px;
    }

    .news-gcs {
        font-size: 12px;
    }

    .news-item img {
        height: 160px;
    }

    .news-item h3 {
        font-size: 14px;
    }

    .news-item p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .swiper-slide.news-item {
        max-width: calc((100% - 30px) / 2);
    }

    .news-title {
        font-size: 24px;
    }
}