.gift-cards-block {
    --color-button: #E86A4A;
    --color-white: #FFFFFF;
    --font-family: 'Verdana', Geneva, sans-serif;
    --card-width: 357px;
    --card-height: 435px;
    --card-gap: 20px;
    font-family: var(--font-family);
    box-sizing: border-box;
    width: 100%;
}
.gift-cards-block *,
.gift-cards-block *::before,
.gift-cards-block *::after {
    box-sizing: border-box;
}
.gift-cards__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--card-gap);
    width: 100%;
}
.gift-card {
    width: var(--card-width);
    flex-shrink: 0;
}
.gift-card__container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    width: 100%;
    height: var(--card-height);
    background: linear-gradient(127.82deg, #569DAA -2.58%, #87CBB9 75.67%, #B9EDDD 147.22%);
    border-radius: 15px;
}
.gift-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
    height: 100%;
}
.gift-card__image {
    width: 230px;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.gift-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gift-card__placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 14px;
}
.gift-card__title {
    width: 100%;
    max-width: 317px;
font-family: 'Verdana';
font-style: normal;
font-weight: 700;
font-size: 18px;
line-height: 19px;
color: #FFFFFF;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0;
    min-height: 59px;
}
.gift-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 46px;
    background: var(--color-button);
    box-shadow: 0px 1.85px 7.38px rgba(39, 39, 39, 0.2);
    border-radius: 7px;
    text-decoration: none;
    font-family: var(--font-family);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--color-white);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.gift-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(39, 39, 39, 0.3);
}
.gift-card__button:active {
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .gift-cards-block {
        --card-width: 320px;
        --card-height: 400px;
        --card-gap: 15px;
    }
    .gift-card__image {
        width: 200px;
        height: 200px;
    }
    .gift-card__title {
        font-size: 16px;
        min-height: 50px;
    }
}
@media (max-width: 767px) {
    .gift-cards-block {
        --card-width: 100%;
        --card-height: auto;
        --card-gap: 15px;
    }
    .gift-cards__wrapper {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }
    .gift-card {
        max-width: 357px;
        width: 100%;
    }
    .gift-card__container {
        min-height: 400px;
        padding: 15px;
    }
    .gift-card__image {
        width: auto;
        height: auto;
    }
    .gift-card__title {
        font-size: 16px;
        line-height: 18px;
        min-height: auto;
    }
    .gift-card__content {
        gap: 15px;
    }
}
.gift-cards-block.alignwide .gift-cards__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.gift-cards-block.alignfull .gift-cards__wrapper {
    max-width: none;
    padding: 0 20px;
}
.editor-styles-wrapper .gift-cards-block {
    max-width: 100%;
}
.gift-cards-block + .gift-cards-block {
    margin-top: 30px;
}
