.news-detail {
    margin-top: 150px;
    margin-bottom: 160px;
}

.news__title {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 120px;
    font-weight: 500;
    line-height: 0.8;
    margin-bottom: 60px;
}


.wrap-img {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    margin-bottom: 32px;
}

.news-detail > .wrap-img {
    height: 500px;
    margin-bottom: 56px;
    border-radius: 12px;
}

.wrap-img img {
    max-width: 100% !important;
    max-height: 100% !important;;
    width: 100% !important;;
    height: 100% !important;;
    object-fit: cover !important;;
    transition: transform 0.3s ease-in-out;
}

.wrap-img:hover img {
    transform: scale(1.02);
}

.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    color:#6C6C6C;
    font-size: 14px;
    line-height: 22.4px;
}

.badge {
    border-radius: 100px;
    border: 1px solid  #6C6C6C;
    padding: 2px 12px 3px 12px;
    white-space: nowrap;
}

.news__content-wrapper {
    max-width: 50%;
    margin-left: auto;
}

.news__subtitle {
    margin-top: 48px;
    margin-bottom: 24px;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

ul, .news__list {
    padding-left: 16px;
}

li, .news__list li {
    padding-left: 8px;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.news-detail p, .news-detail .news__content {
    font-size: 18px;
    line-height: 1.6;
}

.news__content-wrapper .wrap-img {
    height: 293px;
}

.recent-news {
    margin-bottom: 160px;
}

.recent-news .news__title {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 40px;
}

.recent-news .button {
    margin-top: 40px;
}

.blur-bg {
    width: 600px;
    height: 400px;
    position: absolute;
    top: 40px;
    right: 0;
    left: unset;
    background: #5317FF;
    opacity: 0.6;
}

.blur-bg-small {
    top: 30%;
}

@media only screen and (max-width: 992px) {
    .container {
        padding: 0 24px !important;
    }

    .news__title {
        font-size: 56px;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .news-detail > .wrap-img {
        height: 360px;
    }

    .news__content-wrapper {
        max-width: 100%;
    }

    .recent-news .news__title {
        font-size: 36px;
        line-height: 1.2;
    }
}