.home-news-section {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    background: linear-gradient(115deg, #f6fbff 0%, #ffffff 46%, #eaf9fb 100%);
}

.home-news-section::before {
    content: '';
    position: absolute;
    top: 34px;
    right: max(24px, calc((100vw - 1320px) / 2));
    width: 150px;
    height: 150px;
    border: 28px solid rgba(37, 184, 197, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.home-news-container {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-news-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.home-news-actions {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-news-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25b8c5;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.home-news-eyebrow::before {
    content: '';
    width: 26px;
    height: 3px;
    border-radius: 999px;
    background-color: #25b8c5;
}

.home-news-heading h2 {
    color: #042d59;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.home-news-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25b8c5;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.home-news-all span {
    transition: transform 0.25s ease;
}

.home-news-all:hover {
    color: #042d59;
}

.home-news-all:hover span {
    transform: translateX(4px);
}

.home-news-shell {
    position: relative;
}

.home-news-swiper {
    padding: 10px 10px 24px;
}

.home-news-slide {
    height: auto;
}

.home-news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    border: 1px solid rgba(4, 45, 89, 0.08);
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 10px 24px rgba(4, 45, 89, 0.07);
    color: #042d59;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-news-card:hover {
    color: #042d59;
    border-color: rgba(37, 184, 197, 0.35);
    box-shadow: 0 14px 30px rgba(4, 45, 89, 0.1);
    transform: translateY(-5px);
}

.home-news-image {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #eaf9fb;
}

.home-news-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(0deg, rgba(4, 45, 89, 0.22), transparent);
    pointer-events: none;
}

.home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-news-card:hover .home-news-image img {
    transform: scale(1.05);
}

.home-news-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
}

.home-news-tag {
    width: fit-content;
    border-radius: 999px;
    background-color: rgba(37, 184, 197, 0.12);
    color: #25b8c5;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    padding: 9px 13px;
}

.home-news-content strong {
    display: -webkit-box;
    overflow: hidden;
    color: #042d59;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-news-link {
    margin-top: auto;
    color: #25b8c5;
    font-size: 15px;
    font-weight: 700;
}

.home-news-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-news-prev,
.home-news-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(4, 45, 89, 0.1);
    border-radius: 50%;
    background-color: #ffffff;
    color: #042d59;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-news-prev span,
.home-news-next span {
    display: block;
    font-size: 28px;
    line-height: 1;
    transform: translateY(-1px);
}

.home-news-prev:hover,
.home-news-next:hover {
    border-color: #25b8c5;
    background-color: #25b8c5;
    color: #ffffff;
}

.home-news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    width: auto !important;
    min-height: 20px;
}

.home-news-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    background-color: rgba(4, 45, 89, 0.22);
    opacity: 1;
}

.home-news-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background-color: #25b8c5;
}

@media (max-width: 768px) {
    .home-news-section {
        padding: 42px 0;
    }

    .home-news-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 26px;
    }

    .home-news-actions {
        width: 100%;
        justify-content: space-between;
    }

    .home-news-swiper {
        padding: 10px 8px 20px;
    }

    .home-news-heading h2 {
        font-size: 28px;
    }

    .home-news-card {
        min-height: 350px;
    }

    .home-news-content {
        padding: 20px;
    }

    .home-news-content strong {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .home-news-container {
        padding: 0 15px;
    }

    .home-news-card {
        min-height: 330px;
    }

    .home-news-actions {
        gap: 10px;
    }

    .home-news-all {
        font-size: 15px;
    }

    .home-news-prev,
    .home-news-next {
        width: 38px;
        height: 38px;
    }
}