.news-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-left {
    display: block;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #D9D9D9;
    flex-direction: column;
    gap: 10px;
}

    .news-left .news-date {
        font-weight: 600;
        font-size: 25px;
        margin: 0 0 5px 0;
        text-align: left;
    }

.news-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-right-top {
    display: block;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #D9D9D9;
    flex-direction: column;
    gap: 10px;
}

    .news-right-top .news-date {
        font-weight: 600;
        font-size: 25px;
        margin: 0 0 5px 0;
        text-align: left;
    }

/* General news card */
.news-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

    /* Dark overlay */
    .news-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

/* Centered title + button */
.news-center {
    position: relative;
    z-index: 2;
    max-width: 80%;
}

.news-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.4em;
    color: white;
}

.read-more {
    font-size: 10px;
    color: white;
    background: #0056d2;
    padding: 8px 15px;
    text-decoration: none;
    display: inline-block;
    font-weight: var(--font-weight-normal);
}

/* Specific sizes */
.big-card {
    min-height: 425px;
}

.right-top {
    min-height: 125px;
}

.news-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.news-bottom-left,
.news-bottom-right {
    display: block;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #D9D9D9;
    flex-direction: column;
    gap: 10px;
}

    .news-bottom-left .news-date,
    .news-bottom-right .news-date {
        font-weight: 600;
        font-size: 25px;
        margin: 0 0 5px 0;
        text-align: left;
    }

.small-card {
    min-height: 200px;
}

/* See More Button */
.btnSeeMore {
    display: block;
    width: 200px;
    margin: 20px auto 0;
    margin-bottom: 40px;
    text-align: center;
    font-size: 16px;
    color: black;
    background-color: #DFB512;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: var(--font-weight-normal);
}

.news-more-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

    .news-more-row .news-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        min-height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

    .news-more-row .news-container {
        display: block;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background: #D9D9D9;
        flex-direction: column;
        gap: 10px;
    }

    .news-more-row .news-date {
        font-weight: 600;
        font-size: 25px;
        margin: 0 0 5px 0;
        text-align: left;
    }

    .news-more-row .news-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }

/* Large Tablet (1024px and below) */
@media (max-width: 1024px) {
    #newssection > label {
        font-size: 40pt !important;
    }

    .news-more-row {
        grid-template-columns: repeat(3, 1fr);
    }

        .news-left .news-date,
        .news-right-top .news-date,
        .news-bottom-left .news-date,
        .news-bottom-right .news-date,
        .news-more-row .news-date {
            font-size: 22px;
        }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    #newssection > label {
        font-size: 35pt !important;
        padding: 0 20px;
    }

    #newsSection {
        padding: 0 20px !important;
    }

    .news-cards-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .news-right {
        gap: 15px;
    }

    .news-bottom-row {
        gap: 15px;
    }

    .big-card {
        min-height: 300px;
    }

    .right-top {
        min-height: 200px;
    }

    .small-card {
        min-height: 180px;
    }

    .news-left,
    .news-right-top,
    .news-bottom-left,
    .news-bottom-right,
    .news-more-row .news-container {
        padding: 15px;
    }

        .news-left .news-date,
        .news-right-top .news-date,
        .news-bottom-left .news-date,
        .news-bottom-right .news-date,
        .news-more-row .news-date {
            font-size: 20px;
        }

    .news-title {
        font-size: 16px;
    }

    .news-more-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .btnSeeMore {
        width: 180px;
        font-size: 15px;
    }
}

/* Mobile Landscape (640px and below) */
@media (max-width: 640px) {
    #newssection > label {
        font-size: 30pt !important;
    }

    .news-bottom-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-more-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .big-card {
        min-height: 250px;
    }

    .right-top {
        min-height: 180px;
    }

    .small-card {
        min-height: 160px;
    }

    .news-more-row .news-card {
        min-height: 160px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    #newssection > label {
        font-size: 28pt !important;
        padding: 0 15px;
    }

    #newsSection {
        padding: 0 15px !important;
    }

    .news-cards-container {
        gap: 12px;
    }

    .news-right {
        gap: 12px;
    }

    .news-bottom-row {
        gap: 10px;
    }

    .news-more-row {
        gap: 10px;
    }

        .news-left,
        .news-right-top,
        .news-bottom-left,
        .news-bottom-right,
        .news-more-row .news-container {
            padding: 12px;
        }

            .news-left .news-date,
            .news-right-top .news-date,
            .news-bottom-left .news-date,
            .news-bottom-right .news-date,
            .news-more-row .news-date {
                font-size: 18px;
            }

    .news-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .news-more-row .news-title {
        font-size: 14px;
    }

    .read-more {
        font-size: 9px;
        padding: 6px 12px;
    }

    .big-card {
        min-height: 220px;
    }

    .right-top {
        min-height: 160px;
    }

    .small-card {
        min-height: 140px;
    }

    .news-more-row .news-card {
        min-height: 140px;
    }

    .btnSeeMore {
        width: 160px;
        font-size: 14px;
        padding: 8px;
        margin-bottom: 30px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    #newssection > label {
        font-size: 24pt !important;
        padding: 0 10px;
    }

    #newsSection {
        padding: 0 10px !important;
    }

    .news-left,
    .news-right-top,
    .news-bottom-left,
    .news-bottom-right,
    .news-more-row .news-container {
        padding: 10px;
    }

        .news-left .news-date,
        .news-right-top .news-date,
        .news-bottom-left .news-date,
        .news-bottom-right .news-date,
        .news-more-row .news-date {
            font-size: 16px;
        }

    .news-title {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .news-more-row .news-title {
        font-size: 13px;
    }

    .read-more {
        font-size: 8px;
        padding: 5px 10px;
    }

    .big-card {
        min-height: 200px;
    }

    .right-top {
        min-height: 140px;
    }

    .small-card {
        min-height: 120px;
    }

    .news-more-row .news-card {
        min-height: 120px;
    }

    .btnSeeMore {
        width: 140px;
        font-size: 13px;
        padding: 7px;
        margin-bottom: 25px;
    }

    .news-center {
        max-width: 90%;
    }
}
