.news .title {
    margin-top: 75px;
    margin-bottom: 50px;
}

.news .title h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 27px;
}

.news .title .date {
    color: #6d6d6d;
}

.news .content {
    line-height: 45px;
    font-size: 25px;
}

.news .content p {
    margin-bottom: 40px;
}

.news .image-grid {
    width: 986px;
    height: 917.66px;
    margin: 50px auto;
    border: 1px solid #b9b5b3;
    padding: 5px;
}

.news .image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 57px 0px 84px;
}

.news .page-btn {
    width: 36px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border: 1px solid #001555;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #001555;
}

.news .pagination .text {
    color: #6d6d6d;
    font-size: 25px;
}

.news .page-btn:hover {
    background-color: #001555;
    color: #fff;
}

.news .page-btn.prev {
    margin-left: 20px;
    margin-right: 19px;
}

.news .page-btn.next {
    margin-right: 20px;
}

@media (max-width: 768px) {
    .news .title {
        margin-top: 0px;
        margin-bottom: 15px;
    }

    .news .title h2 {
        font-size: 16px;
    }

    .news .title .date {
        font-size: 12px;
    }

    .news .content {
        margin-bottom: 0px;
        line-height: 26px;
        font-size: 13px;
    }

    .news .content p {
        margin-bottom: 12px;
    }

    .news .image-grid {
        width: 220px;
        height: 220px;
        margin: 15px auto;
    }

    .news .pagination {
        margin: 20px 0px 0px;
    }

    .news .page-btn {
        width: 30px;
        height: 16px;
    }

    .news .page-btn span {
        font-size: 14px !important;
    }

    .news .pagination .text {
        font-size: 13px;
    }

    .news .page-btn.prev {
        margin-left: 12px;
        margin-right: 12px;
    }

    .news .page-btn.next {
        margin-right: 12px;
    }
}