.holiday-format {
    margin: 80px 0 0 0;
    position: relative;
    z-index: 4;
}

.holiday-format__inner {
    position: relative;
    padding: 0;
    background: transparent;
}

.holiday-format__header {
    max-width: 520px;
    margin: 0 auto 35px auto;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -.04em;
    text-align: center;
    color: #222;
}

.holiday-format__header span {
    margin-top: 10px;
    display: inline-block;
    border-radius: 1131.427px;
    background: linear-gradient(1deg, #7B57F6 3.49%, rgba(123, 87, 246, 0.59) 109.04%);
    transform: rotate(-1.936deg);
    padding: 2px 22px 14px;
    color: white;
}

.holiday-format__description {
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -.03em;
    text-align: center;
    color: #222;
}

.holiday-format__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.holiday-format-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(128, 94, 246, .12);
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.holiday-format-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(111, 77, 228, .14);
    border-color: rgba(128, 94, 246, .26);
    color: inherit;
    text-decoration: none;
}

.holiday-format-card__image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #ece8f8;
}

.holiday-format-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.holiday-format-card:hover .holiday-format-card__image img {
    transform: scale(1.04);
}

.holiday-format-card__body {
    display: grid;
    grid-template-columns: 44px 1fr 28px;
    gap: 14px;
    align-items: center;
    min-height: 116px;
    padding: 18px 18px 20px;
}

.holiday-format-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    color: #fff;
    background: linear-gradient(45deg, #7B57F6 3.49%, rgba(123, 87, 246, 0.59) 109.04%);
    flex-shrink: 0;
}

.holiday-format-card__icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.holiday-format-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.holiday-format-card__title {
    display: block;
    margin: 0 0 6px;
    font-family: "Hagrid Trial", Inter, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -.04em;
    color: #805ef6;
    white-space: nowrap;
}

.holiday-format-card__text {
    display: block;
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -.03em;
    color: #222;
}

.holiday-format-card__arrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #805ef6;
    flex-shrink: 0;
}

.holiday-format-card__arrow svg {
    display: block;
    width: 14px;
    height: 14px;
}

.holiday-format__help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 1000px;
    padding: 15px 18px 15px 22px;
    background: #fff;
    border: 1px solid rgba(128, 94, 246, .14);
    box-shadow: 0 10px 24px rgba(111, 77, 228, .06);
}

.holiday-format__help-text {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -.03em;
    color: #414141;
}

.holiday-format__help-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    flex: 0 0 42px;
    background: #f5f3f9;
    color: #805ef6;
}

.holiday-format__help-icon svg {
    display: block;
    width: 22px;
    height: 22px;
}

.holiday-format__button {
    min-width: 238px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    border: none;
    padding: 13px 28px;
    background: linear-gradient(45deg, #7B57F6 3.49%, rgba(123, 87, 246, 0.59) 109.04%);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    cursor: pointer;
    transition: opacity .2s ease;
}

.holiday-format__button:hover {
    opacity: .92;
}

@media (max-width: 1199px) {
    .holiday-format__list {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .holiday-format {
        margin: 60px 0 0 0;
    }

    .holiday-format__description {
        max-width: 400px;
    }

    .holiday-format__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .holiday-format__list {
        grid-template-columns: 1fr;
    }

    .holiday-format__help {
        flex-direction: column;
        align-items: stretch;
        border-radius: 24px;
    }

    .holiday-format__button {
        width: 100%;
    }

    .holiday-format-card__body {
        grid-template-columns: 42px 1fr 24px;
        min-height: 104px;
        padding: 16px;
    }

    .holiday-format-card__icon {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 575px) {
    .holiday-format__header {
        font-size: 32px;
    }

    .holiday-format__description {
        margin-bottom: 40px;
    }

    .holiday-format-card__title {
        font-size: 18px;
    }

    .holiday-format-card__text {
        font-size: 13px;
    }

    .holiday-format__help-text {
        align-items: flex-start;
        font-size: 14px;
    }
}