.banner {
    background-image: url("https://res.cloudinary.com/dre3wdpfu/image/upload/v1761318259/Screenshot_2025-10-24_201757_w1c8ad.png");
    height: 70vh;
    background-repeat: no-repeat;
    background-size: contain;
}

.text {
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 10vh 5vw 1vh 5vw;
    font-size: 2.5vh;
}

.sections {
    background-color: white;
    padding: 5vh 5vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3vw;
}

.section {
    display: flex;
    flex-direction: column;
    width: 12vw;
}

.name {
    color: black;
    font-weight: bold;
    font-size: 15px;
}

.date {
    color: gray;
    font-weight: bold;
    font-size: 10px;
}

.namesection {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 15px;
}

.spotlight {
    width: 302px;
}

.spotlightimg {
    width: 100%;
    height: 160px;
}

.pageno {
    background-color: white;
    display: flex;
    justify-content: center;
}

.pageno ul {
    display: flex;
    list-style-type: none;
    gap: 6vw;
}

.pageno ul li {
    color: black;
    font-weight: bold;
}

.btn {
    background-color: red;
    font-weight: bold;
    padding: 2vh 2vw;
    width: fit-content;
}

.button {
    background-color: white;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 576px) {
    .sections {
        gap: 2vw;
    }

    .section {
        width: 44vw;
    }

    .banner {
        height: 17vh;
    }
}