.event-page {
    margin-top: 156px;
    padding-bottom: 200px;
}

.event-page__inner {
    gap: 32px;
}

.event-page__image {
    width: 480px;
    height: 680px;
    border-radius: 16px;
    flex-shrink: 0;
}

.event-page__image-img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: contain;
}

.event-page__info {
    width: 100%;
    padding: 32px;
    border-radius: 16px;
    background: var(--color-tertiary-light);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.event-page__text {
    letter-spacing: 0.1px;
}

.event-page__text a {
    color: var(--color-accent);
}

.event-page__info-description p a {
    color: var(--color-accent);
}

.event-page__info-description a {
    color: var(--color-accent);
}

.event-page__info-description a:hover {
    color: var(--color-accent-light);
}

.event-page__info-description p a:hover {
    color: var(--color-accent-light);
}

.event-page__ticket-block {
    margin-top: 24px;
    gap: 24px;
}

.event-page__ticket {
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
    padding: 16px 12px;
    border-radius: 16px;
    background: var(--color-tertiary-light);
    overflow: hidden;
}

.event-page__ticket:before, .event-page__ticket:after {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-tertiary);
}

.event-page__ticket:before {
    left: -16px;
}

.event-page__ticket:before, .event-page__ticket:after {
    right: -16px;
}

.event-page__ticket-subtitle--active {
    color: var(--neon);
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 4px
}

.event-page__ticket-subtitle--active:after {
    content: url("../../img/link-icon.svg");
    line-height: 0;
}

.event-page__ticket-subtitle--active:hover {
    color: var(--neon-light);
}

.event-page__title {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.event-page__title-place:before {
    content: url("../../img/place-icon.svg");
    height: 100%;
    margin-right: 12px;
    line-height: 0;
}

.event-page__title-time:before {
    content: url("../../img/calendar-icon.svg");
    height: 100%;
    margin-right: 12px;
    line-height: 0;
}

.event-page__lineup {
    margin-top: 56px;
}

.event-page__lineup-title-text:before {
    content: url("../../img/stars-icon.svg");
    height: 100%;
    margin-right: 12px;
    line-height: 0;
}

.event-page__lineup-content {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
    align-items: flex-start;
}

.event-page__artist-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.event-page__artist-item:hover .event-page__artist-name {
    color: var(--color-accent-light);
}

.event-page__artist-item--disabled {
    pointer-events: none;
}

.event-page__artist-image {
    width: 173px;
    height: 173px;
    border-radius: 50%;
    overflow: hidden;
}

.event-page__artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-page__artist-info {
    margin-top: 8px;
}

.event-page__artist-name {
    transition: 0.2s;
}

@media (max-width: 992px) {
    .event-page {
        padding-bottom: 160px;
    }

    .event-page__artist-image {
        width: 130px;
        height: 130px;
    }

    .event-page__artist-info {
        margin-top: 14px;
    }
}

@media (max-width: 1199px) {
    .event-page__inner {
        gap: 30px;
    }

    .event-page__image {
        width: 370px;
        height: 525px;
    }
}

@media (max-width: 920px) {
    .event-page {
        margin-top: 112px;
    }

    .event-page__inner {
        flex-direction: column;
    }

    .event-page__image {
        width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 767px) {
    .event-page {
        padding-bottom: 96px;
    }
    .event-page__ticket-block {
        flex-direction: column;
    }

    .event-page__ticket {
        width: 100%;
    }

    .event-page__lineup-content {
        gap: 24px;
    }

    .event-page__artist-image {
        width: 124px;
        height: 124px;
    }
}

@media (max-width: 375px) {
    .event-page {
        margin-top: 112px;
    }

    .event-page__image {
        max-height: 385px;
    }

    .event-page__info {
        padding: 24px;
        gap: 24px;
    }

    .event-page__inner {
        gap: 16px;
    }

    .event-page__ticket-block {
        margin-top: 16px;
        gap: 16px;
    }

    .event-page__lineup-content {
        margin-top: 24px;
    }

    .event-page__artist-info {
        margin-top: 10px;
    }
}