.holidays-wrapper {
    padding: 5rem 0;
    .intro {
        margin-bottom: 5rem;
    }
    .video-player {
        object-fit: cover;
    }
}

.holiday-feed {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    .item {
        flex: 1 0 auto;
        max-width: 30%;
        aspect-ratio: 1/.85;
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 1rem;
        text-decoration: none !important;
        border-radius: var(--bs-border-radius);
        overflow: hidden;
        margin-bottom: 2rem;
        &::before,
        &::after {
            content: "";
            display: block;
            position: absolute;
            z-index: 2;
            /* inset: 0; */
            top: 20%;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            opacity: .6;
            background: linear-gradient(to bottom,rgba(5,13,50,0) 0%,rgba(5,13,50,1) 100%);
            transition: all .3s ease-in-out;
        }
        &::after {
            opacity: 0;
            background: linear-gradient(to bottom,rgba(5,13,50,0) 0%,rgba(5,13,50,1) 100%);
        }
        .title {
            position: relative;
            z-index: 3;
            width: 100%;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 1rem;
            h3 {
                color: var(--bs-light);
                font-size: clamp(1rem, 0.834rem + 0.5312vw, 1.25rem);
                margin-bottom: 0;
                max-width: 50%;
            }
            > svg {
                flex: 1 0 54px;
                max-width: 54px;
                max-height: 54px;
                transition: all .2s ease-in-out;
                circle,
                path {
                    stroke: #F3F5F8;
                }
            }
        }
        .image {
            position: absolute;
            z-index: 1;
            inset: 0;
            > img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }
        &:hover {
            &::after {
                opacity: 1;
            }
            .title {
                > svg {
                    transform: rotate(-45deg);
                    circle {
                        stroke: #CFFC51;
                        fill: #CFFC51;
                    }
                    path {
                        stroke: #121317;
                    }
                }
            }
        }
    }
}