.news-detail-section {
    padding-top: 32px;
    padding-bottom: 54px;
    background: #F6F6F6;
    margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
    .news-detail-section__container {
        display: grid;
        grid-template-columns: 45% 1fr;
        column-gap: 30px;
    }
}

@media screen and (min-width: 1560px) {
    .news-detail-section__container {
        display: grid;
        grid-template-columns: 640px 35vw;
        column-gap: 90px;
    }
}

.news-detail-section__breadcrumbs {
    color: #6136CA;
    margin-bottom: 8px;
}

@media screen and (min-width: 1560px) {
    .news-detail-section__breadcrumbs {
        margin-bottom: 16px;
        padding-top: 32px;
    }
}

.news-detail-section__header {
    margin-bottom: 8px;
}

@media screen and (min-width: 768px) {
    .news-detail-section__header {
        grid-column: 1;
    }
}

@media screen and (min-width: 1560px) {
    .news-detail-section__header {
        margin-bottom: 32px;
    }
}

.news-detail-section__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #6136CA;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

@media screen and (min-width: 1560px) {
    .news-detail-section__title {
        font-size: 42px;
    }
}

.news-detail-section__date {
    font-size: 13px;
    font-weight: 500;
    color: #F9630E;
}

.news-detail-section__image {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    margin: 4vw 0;
}

.news-detail-section__image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: inherit;
}

.news-detail-section__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #FFDAC5;
    border-radius: inherit;
    transform: rotate(4deg);
    z-index: -1;
}

@media screen and (min-width: 768px) {
    .news-detail-section__image {
        margin: 60px 0 0 0;
        grid-column: 2;
        grid-row: 1 / 5;
        align-self: start;
        border-radius: 20px;
    }

    .news-detail-section__image::before {
        transform: rotate(5deg);
    }
}

@media screen and (min-width: 768px) {
    .news-detail-section__content {
        grid-column: 1;
    }
}

.news-detail-section__text {
    font-size: 13px;
    color: #6E6E6F;
    margin-bottom: 12px;
}

.news-detail-section__text p {
    margin: 0 0 2em 0;
}

.news-detail-section__text p + p {
    margin: 0;
}

@media screen and (min-width: 1560px) {
    .news-detail-section__text {
        margin-bottom: 32px;
    }
}

.news-detail-section__brands-slider {
    position: relative;
    left: -12px;
    width: 100vw;
    margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
    .news-detail-section__brands-slider {
        left: auto;
        width: auto;
    }
}

@media screen and (min-width: 1560px) {
    .news-detail-section__brands-slider {
        margin-bottom: 32px;
    }
}

.news-detail-section__brands-item {
    margin: 0 auto;
    width: 150px;
    height: 80px;
    border-radius: 20px;
    background: #ffffff;
    position: relative;
}

.news-detail-section__brands-item img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.news-detail-section__back-link {
    color: #6136CA;
    font-weight: 600;
    font-size: 16px;
    text-underline-offset: 3px;
}

@media screen and (min-width: 768px) {
    .news-detail-section {
        margin-bottom: 64px;
        padding-bottom: 90px;
    }
}
