.banner {
    background-image: url('https://res.cloudinary.com/dre3wdpfu/image/upload/v1761283856/Screenshot_2025-10-24_105933_kqtndv.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: white;
    font-weight: bold;
    font-size: 15px;
}

.writer {
    color: gray;
    font-weight: bold;
    font-size: 10px;
}

.image {
    height: 30vh;
}

.namesection {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 15vh;
    background-color: #1e2029;
    padding: 15px;
}

.spotlight {
    width: 302px;
}

.spotlightimg {
    width: 100%;
    height: 160px;
}

.bar {
    display: flex;
    padding: 5vh 5vw;
    background-color: white;
}

.search,
.filter {
    display: flex;
    align-items: center;
    width: 50%;
}

.search {
    justify-content: start;
    border-bottom: 3px black solid;
}

.filter {
    justify-content: end;
    border-bottom: 3px #f2f2f2 solid;
}

.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;
}

@media screen and (max-width: 576px) {
    .image {
        height: 35vh;
    }

    .sections {
        gap: 2vw;
    }

    .section {
        width: 44vw;
    }

    .banner{
        height: 17vh;
    }
}