.block-title {
    color: #42331A;
    position: relative;
}

.block-title>div:first-child {
    font-weight: 200;
    font-size: 36px;
    letter-spacing: 3px;
    line-height: 40px;
}

.block-title>div:first-child span {
    font-weight: 600;
}

.block-title>div:last-child {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (min-width: 992px) {
    .block-title>div:first-child {
        font-size: 48px;
        line-height: 57px;
    }

    .block-title>div:last-child {
        font-size: 20px;
        letter-spacing: 5px;
    }
}

#news-list {
    padding-top: 30px;
}
.news-list-categories {
    padding: 30px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.news-list-category {
    display: block;
    width: 168px;
    height: 35px;
    border: 1px solid #C3772E;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    color: #C3772E;
    margin-bottom: 0;
    transition: all 0.3s ease;
    line-height: 12px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
}

.news-list-category.active,
.news-list-category:hover {
    background-color: #C3772E;
    color: #FFFFFF;
}

@media (min-width: 992px) {
    #news-list {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .news-list-categories {
        padding-top: 50px;
        display: block;
    }
    .news-list-category {
        width: 130px;
        margin-bottom: 10px;
    }
    .news-items {
        padding-bottom: 40px;
    }
}

.news-item {
    height: 470px;
    background-color: #FFFFFF;
    position: relative;
    margin-bottom: 40px;
    transition: all 0.6s ease;
}

.news-item-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center center;
    transition: transform 0.6s ease;
}

.news-item:hover {
    box-shadow: 0px 4px 17.1px 0px #00000038;
}

.news-item:hover .news-item-img img {
    transform: scale(1.1);
}

.news-item-title {
    font-weight: 700;
    font-size: 32px;
    padding: 10px 10px 8px;
    line-height: 38px;
}

.news-item-content {
    font-weight: 400;
    font-size: 16px;
    padding: 0px 10px;
}

.news-item-category {
    width: 92px;
    height: 25px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    background-color: #C3772E;
    color: #FFFFFF;
    line-height: 23px;
    margin: 15px 0 0 10px;
    text-align: center;
}

.news-item-date {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #07355C;
}

.news-item-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.news-item-circle {
    width: 40px;
    height: 40px;
    border: 1px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.news-item:hover .news-item-circle {
    border: 1px solid #07355C;
    background-color: #07355C;
}

.news-item-circle img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.6s ease;
}

.news-item-circle img.on {
    opacity: 0;
}

.news-item-circle img.off {
    opacity: 1;
}

.news-item:hover .news-item-circle img.on {
    opacity: 1;
}

.news-item:hover .news-item-circle img.off {
    opacity: 0;
}
@media (min-width: 992px) {
    .news-item-title {
        font-size: 28px;
        line-height: 32px;
    }

    .news-item-content {
        font-size: 14px;
        line-height: 20px;
    }
}
@media (min-width: 1200px) {
    .news-item-title {
        font-size: 30px;
        line-height: 35px;
    }

    .news-item-content {
        font-size: 15px;
        line-height: 22px;
    }
}
@media (min-width: 1400px) {
    .news-item-title {
        font-size: 32px;
        line-height: 38px;
    }

    .news-item-content {
        font-size: 16px;
    }
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 0px;
    position: relative;
    padding-bottom: 80px;
}
.pagination-item {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #07355C;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    transition: all 0.3s ease;
}
.pagination-item.active, .pagination-item:hover {
    background-color: #07355C;
    color: #FFFFFF;
}
.pagination-item-prev, .pagination-item-next {
    width: 40px;
    height: 40px;
    border: 1px solid #777878;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}
.pagination-item-prev {
    position: absolute;
    left: 0;
    top: -7px;
}
.pagination-item-next {
    position: absolute;
    right: 0;
    top: -7px;
}
.pagination-item-prev:hover, .pagination-item-next:hover {
    border: 1px solid #07355C;
}
.pagination-item-prev img, .pagination-item-next img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}
.pagination-item-prev img.off, .pagination-item-next img.off {
    opacity: 1;
}
.pagination-item-prev img.on, .pagination-item-next img.on {
    opacity: 0;
}
.pagination-item-prev:hover img.off, .pagination-item-next:hover img.off {
    opacity: 0;
}
.pagination-item-prev:hover img.on, .pagination-item-next:hover img.on {
    opacity: 1;
}
@media (min-width: 992px) {
    .pagination {
        gap: 15px;
        border-top: 1px solid #07355C;
        padding-top: 30px;
        padding-bottom: 0px;
    }
    .pagination-item-prev {
        left: 10%;
        top: 40%;
    }
    .pagination-item-next {
        right: 10%;
        top: 40%;
    }
}

.news-detail-keyvisual {
    height: 100px !important;
}
.news-detail-titles {
    padding-top: 10px;
    position: relative;
}
.news-detail-title {
    font-weight: 700;
    font-size: 31px;
    line-height: 40px;
    letter-spacing: 3px;
    padding-bottom: 20px;
}
.news-detail-date {
    font-family: 'DIN Pro', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 2px;
color: #07355C;
padding-bottom: 10px;
}
.news-detail-category {
    width: 92px;
    height: 25px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 25px;
    margin-top: 20px;
    padding: 0px;
}

.news-detail-cover-img {
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid #07355C;

}
.news-detail-cover-img img {
    width: 100%;
    object-fit: cover;
}
.news-detail-sizes {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: -4px;
    right: 20px;
}
.news-detail-size {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #07355C;
    font-weight: 600;
    border: 1px solid #07355C;
    text-align: center;
    line-height: 38px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.news-detail-size.sm {
    font-size: 16px;
}
.news-detail-size.lg {
    font-size: 20px;
}
.news-detail-size:hover {
    background-color: #07355C;
    color: #FFFFFF;
}
.news-detail-info-xs {
    position: relative;
}
.news-detail-content {
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #07355C;
}
.news-detail-content.lg {
    font-size: 20px;
}
@media (min-width: 992px) {
    .news-detail-keyvisual {
        height: 190px !important;
    }
    .news-detail-titles {
        padding-top: 200px;
    }
    .news-detail-date {
    font-size: 24px;
    letter-spacing: 3px;
    }
    .news-detail-title {
        font-size: 40px;
        line-height: 50px;
        letter-spacing: 3px;
        padding-bottom: 40px;
        border-bottom: 1px solid #07355C;
        height: 190px;
    }
    .news-detail-cover-img {
        padding-bottom: 0px;
        border-bottom: 0px;

    }
    .news-detail-cover-img img {
        position: absolute;
        top: -40px;
        left: 0;
    }
    .news-detail-category {
        width: 130px;
        height: 35px;
        border-radius: 20px;
        font-size: 14px;
        letter-spacing: 3px;
        line-height: 35px;
        margin-top: 20px;
    }
    .news-detail-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
.news-detail-back {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin: 0 auto;
    color: #07355C;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
}

.news-detail-back-btn {
    display: block;
    width: 40px;
    height: 40px;
    background-color: #07355C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s ease;
}

.news-detail-back-btn img {
    width: 24px;
    height: 24px;
}

.news-detail-back-btn:hover img {
    animation: arrow-left 1s;
}
