.news-page {
    padding: 140px 20px 100px;
    background: #f6f3ee;
    min-height: 100vh;
}

.news-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    margin-bottom: 70px;
    font-weight: bold;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 35px;
    background: #fff;
    padding: 35px 45px;
    margin-bottom: 24px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .07);
    transition: .3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    color: #0f5b6b;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-title a {
    color: #0f5b6b;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
}

@media(max-width:768px) {

    .news-page {
        padding: 100px 15px 60px;
    }

    .news-title a {
        font-size: 18px;
    }

}

.news-detail {
    background: #fff;
    padding: 60px 50px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .07);
    border: 1px solid rgba(201, 168, 106, .25);
}

.news-detail h1 {
    font-size: 36px;
    margin: 15px 0 30px;
    color: #222;
}

.news-content {
    line-height: 2.3;
    font-size: 17px;
    color: #444;
}

.back-link {
    margin-top: 50px;
}

.back-link a {
    color: #0f5b6b;
    font-weight: bold;
}

@media(max-width:768px) {
    .news-detail {
        padding: 35px 22px;
    }

    .news-detail h1 {
        font-size: 26px;
    }

    .news-content {
        font-size: 15px;
    }
}

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.custom-pagination a,
.custom-pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    background: #fff;
    color: #0f5b6b;
    border: 1px solid rgba(201, 168, 106, .35);
}

.custom-pagination .active {
    background: #0f5b6b;
    color: #fff;
}

.custom-pagination .disabled {
    opacity: .4;
}

.section.narrow {
    padding: 140px 20px 100px;
    background: #f6f3ee;
}

.section.narrow h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.news-list {
    max-width: 900px;
    margin: 0 auto;
}

.news-list .news-item {
    display: flex;
    align-items: center;
    gap: 35px;
    background: #fff;
    padding: 28px 35px;
    margin-bottom: 22px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    text-decoration: none;
    color: #222;
}

.news-list .news-item time {
    color: #0f5b6b;
    font-weight: 800;
    font-size: 18px;
    min-width: 120px;
}

.news-list .news-item p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.custom-pagination a,
.custom-pagination span {
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    background: #fff;
    color: #0f5b6b;
    border: 1px solid rgba(201, 168, 106, .35);
}

.custom-pagination .active {
    background: #0f5b6b;
    color: #fff;
}

.custom-pagination .disabled {
    opacity: .4;
}



@media(max-width:768px) {
    .news-list .news-item {
        display: block;
        padding: 24px;
    }

    .news-list .news-item time {
        display: block;
        margin-bottom: 10px;
    }

    .news-list .news-item p {
        font-size: 18px;
    }
}