.home-news {
    padding: 64px 0;
    background: #acd1ff;
}
.home-section-title {
    color: #ff8800;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}
.home-section-title strong {
    color: #013475;
}
.home-news__grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr 1fr;
    grid-template-rows: repeat(2, 322px);
    gap: 24px;
    margin-top: 40px;
    padding: 0 16px;
}

.home-news__featured {
    position: relative;
    grid-column: 2;
    grid-row: 1 / 3;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    background-color: #013475;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.home-news__featured-box {
    position: relative;
    margin: 0 20px 20px;
    padding: 24px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(3px);
}

.home-news__date {
    display: block;
    color: #ff8800;
    font-size: 16px;
    margin-bottom: 8px;
}

.home-news__featured-title {
    color: #013475;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 12px;
}

.home-news__excerpt {
    color: #454545;
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

.home-news__small {
    position: relative;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: #013475;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.home-news__small:nth-of-type(2) {
    grid-column: 1;
    grid-row: 1;
}

.home-news__small:nth-of-type(3) {
    grid-column: 1;
    grid-row: 2;
}

.home-news__small:nth-of-type(4) {
    grid-column: 3;
    grid-row: 1;
}

.home-news__small:nth-of-type(5) {
    grid-column: 3;
    grid-row: 2;
}

.home-news__date--small {
    position: absolute;
    top: 130px;
    left: 20px;
}

.home-news__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 52, 117, 0) 40%, rgba(1, 52, 117, 0.85) 100%);
}

.home-news__small-title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

/* Tablet */
@media (max-width: 1024px) {
    .home-news {
        padding: 48px 0;
    }

    .home-news__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .home-news__featured {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 360px;
    }

    .home-news__small:nth-of-type(2),
    .home-news__small:nth-of-type(3),
    .home-news__small:nth-of-type(4),
    .home-news__small:nth-of-type(5) {
        grid-column: auto;
        grid-row: auto;
        min-height: 240px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .home-section-title {
        padding: 0 16px;
    }
    .home-news {
        padding: 32px 0;
    }

    .home-news__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .home-news__featured {
        grid-column: 1;
        min-height: 320px;
    }

    .home-news__small:nth-of-type(2),
    .home-news__small:nth-of-type(3),
    .home-news__small:nth-of-type(4),
    .home-news__small:nth-of-type(5) {
        grid-column: 1;
        min-height: 200px;
    }

    .home-news__featured-box {
        margin: 0 12px 12px;
        padding: 16px;
    }

    .home-news__featured-title {
        font-size: 16px;
    }
}
