.section-news-detail {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px;
    align-items: center;
}

.h1-news {
    text-align: center;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 20px;
}

.news-carousel {
    object-fit: cover;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, fit-content(100%));
    column-gap: 45px;
}

.news-slide {
    max-width: 720px;
    width: 100%;
    height: 400px;
    display: flex;
    overflow-x: scroll;
}

.news-slide::-webkit-scrollbar {
    display: none;
}

.news-carousel-opacity {
    opacity: 1;
}

.news_carousel_image {
    width: 100%;
}

.arrow {
    cursor: pointer;
    align-items: center;
    margin: auto;
}

.arrow-left {
    rotate: -90deg;
    grid-column-start: 1;
}

.arrow-right {
    rotate: 90deg;
    grid-column-start: 3;
}

.img-arrow {
    width: 30px;
    height: 30px;
}

.slide-circle {
    text-align: center;
    grid-column-start: 1;
    grid-column-end: -1;
    margin-top: 14px;
}

.circle {
    display: inline-block;
    cursor: pointer;
    height: 6px;
    width: 6px;
    margin: 0 2px;
    background-color: #cccccc;
    border-radius: 50%;
}

.circle-active {
    background-color: #000000;
}

.news-carousel-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.news-body {
    margin-top: 20px;
    font-weight: 400;
    font-size: 16px;
}

.div-image {
    flex-shrink: 0;
    width: 100%;
}

@media (max-width: 900px) {
    .h1-news {
        font-size: 35px;
    }
}

@media (max-width: 600px) {
    .h1-news {
        font-size: 32px;
    }
}