@charset "UTF=8";

@media screen and (min-width: 768px) {
    .main__title-img {
        position: absolute;
        height: 500px;
        top: -50px;
        object-position: center top;
    }
}

@media screen and (min-width: 960px) {
    .main__title-img {
        top: -80px;
        object-position: center top;
    }
}

.news {
    margin-top: 70px;
}

.news__year-list {
    display: flex;
    gap: 20px;
}

.news__year-item {
    font-size: 1.6rem;
    font-weight: 400;
    border-radius: 10%;
    border-bottom: none;
    padding: 0 5px;
}

.is-active {
    background-color: #B897BA;
    color: #FFF;
}

#news__list {
    margin-top: 40px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

button {
    font-size: 1.8rem;
    color: #B897BA;
    border-radius: 10%;
    padding: 0 10px;
}

button.is-active {
    background-color: #B897BA;
    color: #FFF;
}


@media screen and (min-width: 960px) {
    .news {
        margin-top: 120px;
    }
    .pagination-container {
        margin-top: 90px;
    }
}