

/* Start:/local/templates/music/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?17742740866478*/
.article-redesign {
    border-bottom: 1px solid #000;
    padding-bottom: 68px;
    margin-bottom: 80px;
    width: 100vw;
}

.article-redesign__header {
    position: relative;
    padding: 42px 14px;
    color: #fff;
}

.article-redesign__header:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.50);
}

.article-redesign__header-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.article-redesign__header-title {
    font-size: 26px;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.article-redesign__header-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: uppercase;
}

.article-redesign__header-picture {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.article-redesign__header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-redesign__content-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 44px;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px; /* 140% */
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    background: #000;
}

.article-redesign__body {
    padding: 24px 14px;
    color: #000;
}

.article-redesign__tags {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.article-redesign__tags-btn {
    display: block;
    text-align: center;
    width: fit-content;
    padding: 8px 16px;
    border: 1px solid #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    text-transform: uppercase;
    color: #000;
}

.article-redesign__menu {
    padding: 24px 14px;
    background: #fff;
    position: fixed;
    z-index: 100;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.article-redesign__menu.opened {
    left: 0;
}

.article-redesign__menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.article-redesign__menu-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px; /* 140% */
    text-transform: uppercase;
}

.article-redesign__menu-close {
    cursor: pointer;
    position: relative;
    width: 28px;
    height: 28px;
}

.article-redesign__menu-close:after,  .article-redesign__menu-close:before{
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
    width: 3px;
    border-radius: 3px;
    height: 22px;
    content: "";
    background: #000;
}

.article-redesign__menu-close:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.article-redesign__menu-close:before{
    transform: translate(-50%, -50%) rotate(-45deg);
}

.article-redesign__menu-item {
    display: block;
    margin-bottom: 24px;
    color: #4F9EF8;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
    text-transform: uppercase;
}

.article-redesign__date {
    color: rgba(0, 0, 0, 0.50);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 16px;
    margin-bottom: 24px;
    display: block;
}

.article-redesign__block {
    margin-bottom: 40px;
    border-bottom: 1px solid #000;
    padding-bottom: 40px;
    scroll-margin-top: 100px;
}

.article-redesign__block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.article-redesign__block-title {
    font-size: 20px;
    line-height: 28px; /* 140% */
    text-transform: uppercase;
    margin-bottom: 40px;
}

.article-redesign__block-text {
    font-size: 16px;
    line-height: 24px; /* 150% */
}

.article-redesign__block-text p {
    margin-bottom: 20px;
}

.article-redesign__block-text p:last-child {
    margin-bottom: 0;
}

.article-redesign__block-text .italic {
    font-style: italic;
}

.article-redesign__block-text b, .article-redesign__block-text strong {
    font-weight: 600;
}

.article-redesign__block-text a {
    text-decoration: underline;
    color: inherit;
}

.article-redesign__block-text a:hover {
    text-decoration: none;
}

.article-detail__img img{
    max-width: 100%;
}

@media (min-width: 768px) {
    .article-redesign__menu {
        top: 40px;
    }
}

@media (min-width: 1080px) {
    .article-redesign__header-back {
        display: block;
        position: absolute;
        left: 60px;
        top: 26px;
        z-index: 3;
        width: 40px;
        height: 40px;
        padding: 5px;
        background: url("/local/templates/music/images/chevron-left.svg") no-repeat 50% 50% #fff;
        background-size: 100% 100%;
    }

    .article-redesign__header {
        padding: 48px 0;
        min-height: 320px;
        display: flex;
        align-items: center;
    }

    .article-redesign__content-btn {
        display: none;
    }

    .article-redesign__body {
        display: grid;
        grid-template-columns: 1fr 325px;
        grid-template-areas: "left right";
        column-gap: 135px;
        padding: 40px;
        position: relative;
    }

    .article-redesign__right {
        grid-area: right;
    }

    .article-redesign__right-wrap {
        position: sticky;
        top: 20px;
    }

    .article-redesign__left {
        grid-area: left;
    }

    .article-redesign__menu {
        position: static;
        left: auto;
        top: auto;
        padding: 0;
        width: auto;
        height: auto;
        overflow-y: visible;
    }

    .article-redesign__menu-close {
        display: none;
    }

    .article-redesign__tags {
        margin-bottom: 32px;
    }

    .article-redesign__menu-header {
        margin-bottom: 12px;
    }

    .article-redesign__menu-item {
        margin-bottom: 8px;
    }

    .article-redesign__block-title {
        font-size: 24px;
    }
}

@media (min-width: 1200px) {
    .article-redesign__header-text {
        padding-right: 80px;
        max-width: 68%;
    }

    .article-redesign__header-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .article-redesign__header-subtitle {
        font-size: 20px;
        line-height: 28px;
    }
}

@media (min-width: 1440px) {
    .article-redesign__body {
        max-width: 78%;
        margin-left: auto;
        margin-right: 0;
    }
}

/* End */


/* Start:/local/templates/music/components/bitrix/news.list/articles/style.css?1774274086450*/
@media (min-width: 768px) {
    .article-interesting__list {
        display: grid;
        gap: 16px;
        grid-template-columns: 1fr 1fr;
    }

    .article-interesting {
        padding-right: 30px;
    }
}

@media (min-width: 1200px) {
    .article-interesting__list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1440px) {
    .article-interesting__list {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* End */
/* /local/templates/music/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?17742740866478 */
/* /local/templates/music/components/bitrix/news.list/articles/style.css?1774274086450 */
