.home-news.solklean-news-section {
    position: relative;
    overflow: hidden;
    padding: 76px 0 84px;
    background: radial-gradient(circle at 8% 92%, rgba(0, 167, 216, 0.12) 0 150px, transparent 151px), linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #eef5fb 100%);
}

    .home-news.solklean-news-section:before,
    .home-news.solklean-news-section:after {
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .home-news.solklean-news-section:before {
        right: 5%;
        top: 18px;
        width: 260px;
        height: 120px;
        opacity: 0.35;
        background-image: radial-gradient(circle, #00a7d8 2px, transparent 2.5px);
        background-size: 18px 18px;
    }

    .home-news.solklean-news-section:after {
        left: -120px;
        bottom: -110px;
        width: 330px;
        height: 330px;
        border-radius: 50%;
        background: rgba(0, 92, 168, 0.06);
    }

.home-news-container {
    position: relative;
    z-index: 1;
}

.home-news-heading {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.home-news-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #005ca8;
    font-family: "InterB", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
}

    .home-news-eyebrow span {
        width: 48px;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, #005ca8, #00a7d8);
    }

.home-news-heading h2 {
    margin: 0;
    color: #0f273f;
    font-family: "InterB", Arial, sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: 0;
}

.home-news-heading p {
    margin: 18px auto 0;
    color: #64748b;
    font-family: "InterR", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.home-news-empty {
    display: block;
    margin-top: 30px;
    text-align: center;
}

.home-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-auto-rows: 1fr;
    gap: 20px;
    margin-top: 42px;
}

.home-news-card {
    display: grid;
    grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
    gap: 24px;
    min-height: 220px;
    overflow: hidden;
    padding: 14px;
    border: 1px solid rgba(0, 92, 168, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

    .home-news-card:hover {
        transform: translateY(-6px);
        border-color: rgba(0, 167, 216, 0.32);
        box-shadow: 0 26px 60px rgba(0, 59, 130, 0.15);
    }

    .home-news-card:first-child {
        grid-row: span 3;
        grid-template-columns: 1fr;
        gap: 0;
        min-height: 560px;
        padding: 16px;
    }

.home-news-image {
    position: relative;
    display: block;
    min-height: 190px;
    overflow: hidden;
    border-radius: 16px;
    background: #eef5fb;
}

.home-news-card:first-child .home-news-image {
    min-height: 300px;
}

.home-news-image img {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.32s ease;
}

.home-news-card:hover .home-news-image img {
    transform: scale(1.07);
}

.home-news-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    min-width: 128px;
    padding: 13px 18px 14px;
    color: #ffffff;
    font-family: "InterB", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #005ca8, #00a7d8);
    clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 100%, 0 100%);
    opacity: 0;
}

.home-news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 14px 10px 14px 0;
}

.home-news-card:first-child .home-news-content {
    justify-content: flex-start;
    padding: 24px 18px 18px;
}

.home-news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 12px;
    color: #64748b;
    font-family: "InterSB", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

    .home-news-meta span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

    .home-news-meta i {
        color: #00a7d8;
    }

.home-news-content h3 {
    margin: 0;
    color: #0f273f;
    font-family: "InterB", Arial, sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: 0;
}

.home-news-card:first-child .home-news-content h3 {
    font-size: 28px;
    line-height: 1.25;
}

.home-news-content h3 a {
    color: inherit;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color 0.28s ease;
}

.home-news-card:hover .home-news-content h3 a {
    color: #005ca8;
}

.home-news-content p {
    margin: 12px 0 0;
    color: #64748b;
    font-family: "InterR", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home-news-card:first-child .home-news-content p {
    -webkit-line-clamp: 5;
    text-align: justify;
}

.home-news-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    margin-top: 18px;
    color: #0f273f;
    font-family: "InterB", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    transition: color 0.28s ease;
}

    .home-news-more span {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #ffffff;
        background: linear-gradient(135deg, #005ca8, #00a7d8);
        box-shadow: 0 12px 24px rgba(0, 92, 168, 0.22);
        transition: transform 0.28s ease, box-shadow 0.28s ease;
    }

    .home-news-more:after {
        content: "";
        width: 82px;
        height: 1px;
        margin-left: 8px;
        background: rgba(0, 92, 168, 0.4);
    }

    .home-news-more:hover {
        color: #005ca8;
    }

        .home-news-more:hover span {
            transform: translateX(4px);
            box-shadow: 0 14px 28px rgba(0, 167, 216, 0.28);
        }

.home-news-footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

    .home-news-footer a {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 0 24px;
        border-radius: 999px;
        color: #ffffff;
        font-family: "InterB", Arial, sans-serif;
        font-size: 15px;
        background: linear-gradient(135deg, #005ca8, #003b82);
        box-shadow: 0 14px 30px rgba(0, 59, 130, 0.24);
        transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    }

        .home-news-footer a:hover {
            color: #ffffff;
            transform: translateY(-3px);
            background: linear-gradient(135deg, #00a7d8, #005ca8);
            box-shadow: 0 18px 38px rgba(0, 92, 168, 0.3);
        }

@media (max-width: 1199px) {
    .home-news-grid {
        gap: 22px;
    }

    .home-news-content h3 {
        font-size: 21px;
    }
}

@media (max-width: 1023px) {
    .home-news.solklean-news-section {
        padding: 62px 0 66px;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-news-card,
    .home-news-card:first-child {
        grid-row: auto;
        grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
        min-height: 220px;
        gap: 20px;
    }

        .home-news-card:first-child .home-news-image {
            min-height: 190px;
        }

        .home-news-card:first-child .home-news-content {
            padding: 14px 10px 14px 0;
        }

            .home-news-card:first-child .home-news-content h3 {
                font-size: 23px;
            }
}

@media (max-width: 739px) {
    .home-news.solklean-news-section {
        padding: 48px 0 52px;
    }

    .home-news-eyebrow {
        gap: 9px;
        font-size: 13px;
    }

        .home-news-eyebrow span {
            width: 32px;
        }

    .home-news-heading h2 {
        font-size: 28px;
        line-height: 1.22;
    }

    .home-news.solklean-news-section:before {
        right: 5%;
        top: 18px;
        width: 150px;
        height: 73px;
        opacity: 0.35;
        background-image: radial-gradient(circle, #00a7d8 2px, transparent 2.5px);
        background-size: 18px 18px;
    }

    .home-news-heading p {
        font-size: 15px;
    }

    .home-news-grid {
        gap: 16px;
        margin-top: 30px;
    }

    .home-news-card,
    .home-news-card:first-child {
        gap: 0;
        min-height: auto;
        padding: 12px;
        border-radius: 18px;
    }

        .home-news-image,
        .home-news-card:first-child .home-news-image {
            width: 100%;
            min-height: 100%;
            aspect-ratio: 16 / 10;
            border-radius: 13px;
        }

        .home-news-content,
        .home-news-card:first-child .home-news-content {
            padding: 5px 8px 4px;
        }

    .home-news-meta {
        gap: 10px;
        font-size: 13px;
        display: none;
    }

    .home-news-content h3,
    .home-news-card:first-child .home-news-content h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .home-news-content p {
        font-size: 14px;
    }

    .home-news-card:first-child .home-news-content p {
        -webkit-line-clamp: 3;
        text-align: justify;
        margin-top: 5px;
    }

    .home-news-more {
        margin-top: 6px;
    }

    .home-news-content p {
        -webkit-line-clamp: 3;
        text-align: justify;
    }

    .home-news-more:after {
        width: 30px;
        margin-left: 0px;
    }

    .home-news-footer {
        margin-top: 24px;
    }

        .home-news-footer a {
            width: max-content;
            justify-content: center;
        }
}