.concert {
    margin-top: 20px;
}

.img-attribs h1 {
    font-size: 3rem;
    margin-top: 0;
    color: var(--light-grey);
    margin: 0 10rem;
}

.concert .publish-date {
    margin-top: 40px;
    text-transform: lowercase;
    color: var(--light-text);
    font-size: 14px;
    text-align: right;
}

.concert .img-attribs {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    position: relative;
    min-height: 800px;
    overflow: hidden;
    align-items: center;
}

.concert .img-attribs>div:first-child {
    width: 100%;
    position: relative;
    z-index: 2;
    min-height: 400px;
    padding: 2% 20px;
    text-align: center;
}

.article-attribs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5%;
    margin-top: 20px;
    color: var(--light-grey);
    font-size: 1.4rem;
    font-weight: 100;
    line-height: 1.1;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 800px;
    width: 1160px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.image-container img {
    width: 100%;
    height: auto;
    transform: translateY(100%);
    animation: scrollUp 60s linear infinite;
}

.img-attribs:hover .image-container img {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% {
        transform: translateY(-30%);
    }

    100% {
        transform: translateY(-70%);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.com-content-article__body {
    padding: 24px 0;
}

span.rekl {
    font-size: 12px;
    color: var(--light-text);
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
}

.article-source-url-bottom span.rekl {
    position: relative;
    bottom: unset;
}

button.accent {
    color: var(--primary-bg);
    background-color: var(--secondary-accent);
    box-shadow: none;
    border: 1px solid var(--secondary-accent);
    padding: 10px 15px;
    display: block;
    margin: 56px auto;
    text-transform: uppercase;
}

a.b_btn.accent:link,
a.b_btn.accent:visited {
    color: var(--light-grey);
    background-color: var(--accent-color);
    text-decoration: none;
    padding: 5px 10px;
}

a.b_btn.accent:hover {
    background-color: var(--secondary-accent);
}


button.accent:hover {
    background-color: var(--secondary-accent);
    color: var(--light-grey);
    cursor: pointer;
}

/******* Мероприятия рядом ********/

.dop-articles.near .articles-display .grid-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
    color: #575757;
}

.dop-articles.near .articles-display .r-more a,
.dop-articles.near .articles-display a {
    color: #575757;
    text-transform: unset;
}

.dop-articles.near .articles-display .r-more {
    margin: 0;
}

.dop-articles.near .articles-display .article {
    padding-bottom: 0;
}

.dop-articles.near .articles-display h4 {
    margin: 0;
}

/***** Обратный отсчёт ********/
.countdown-block {
    text-align: center;
    margin: 30px 0;
    padding: 100px 20px;
    height: 800px;
    display: grid;
    background: linear-gradient(to top, #e57f32, #b9673000);
    align-items: center;
    justify-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.countdown-title {
    margin: 0 0 10px 0;
    font-size: 2.2rem;
}

.countdown-subtitle {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: bold;
}

.countdown-text {
    margin: 20px 0 15px;
    font-size: 1.4rem;
    color: #fff;
    font-weight: bold;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 2.5rem;
    font-weight: bold;
}

.countdown-item {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.countdown-item .label {
    display: block;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: normal;
}

.countdown-place {
    margin-top: 20px;
    font-size: 1.3rem;
}

.countdown-finished {
    font-size: 2rem;
    color: #ff4444;
    font-weight: bold;
    padding: 20px;
}

@media (max-width: 768px) {
    .countdown-timer {
        gap: 10px;
        font-size: 2rem;
    }

    .countdown-item {
        padding: 10px 15px;
        min-width: 80px;
    }

    .countdown-title {
        font-size: 1.8rem;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .article-attribs {
        font-size: 1.3rem;
    }

    .img-attribs h1 {
        font-size: 1.6rem;
        margin: auto;
    }

    .concert .img-attribs {
        flex-direction: column-reverse;
        min-height: 90vh;
    }

    .concert .img-attribs>div:first-child {
        margin-left: unset;
        padding: 10% 5%;
        min-height: 90vh;
    }

    .article-attribs {
        gap: 10%;
    }

    .image-container {
        max-height: 100%;
        margin-bottom: 24px;
    }

    .image-container img.lazyload.loaded {
        position: relative;
        left: -30%;
        animation: scrollUp 20s linear infinite;
    }

    @keyframes scrollUp {
        0% {
            transform: translateY(0%);
        }

        100% {
            transform: translateY(-10%);
        }
    }
}