.festival-event-page {
    width: 100%;
    max-width: 1440px;
    padding: 40px 20px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.festival-event {
    display: flex;
    gap: 20px;
    width: 100%;
}

.festival-event-page-pixels-1 {
    z-index: -1;
    right: 13%;
    top: -12%;
}

.festival-event-actions {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.01em;
    color: #fff;
}

.festival-event-favorite {
    display: flex;
    gap: 8px;
    width: fit-content;
    border-radius: 38px;
    padding: 12px;
    background: #fff;
    border: none;
    align-items: center;

    font-family: var(--font-family);
    font-weight: 700;
    font-size: 12px;
    line-height: 158%;
    letter-spacing: 0.02em;
    color: #44247a;
}

.festival-event-favorite:hover .heart-icon:after {
    opacity: 1;
}
.festival-event-favorite:hover .heart-icon:before {
    opacity: 0;
}

.festival-event__title {
    margin-top: 53px;
    margin-bottom: 59px;

    font-family: var(--second-family);
    font-weight: 800;
    font-size: 48px;
    line-height: 115%;
    text-transform: uppercase;
    color: #fff;
}

.festival-event-left {
    display: flex;
    flex-direction: column;
    align-self: stretch;
}
.festival-event-left,
.festival-event-right {
    flex: 1;
}

.festival-event-description {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    align-self: stretch;

    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    color: #383838;
}

.festival-event-image {
    height: 100%;
    max-height: 657px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

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

@media (max-width: 980px) {
    .festival-event-page-pixels-1 {
        display: none;
    }
    .festival-event-actions {
        flex-wrap: wrap;

        font-size: 12px;
    }
    .festival-event-favorite {
        width: 100%;
        max-width: 200px;
    }
    .festival-event__title {
        font-size: 28px;
    }
}

@media (max-width: 850px) {
    .festival-event {
        flex-direction: column;
    }
}
