.reels {
    width: max-content;
    max-width: 100%;
    color: #281D18;
    text-align: center;
    padding: 40px 18px;
    overflow: hidden;
    box-sizing: border-box;
}

.reels__subheading {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 22px;
    margin-bottom: 20px;
}

.reels__heading {
    font-family: 'Bounded';
    font-size: 48px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.reels__videos {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.reels__video {
    flex: 1;
    aspect-ratio: 0.55;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.reels__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reels__link {
    width: 295px;
    height: 45px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #281D18;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid #281D18;
    margin: 0 auto;
}

.reels__link:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #281D18;
    transform: scaleX(0);
    transform-origin: left;
    transition: all .4s ease;
}

.reels__link span {
    position: relative;
    z-index: 1;
    transition: all .4s ease;
}

.reels__link:hover:after {
    transform: scaleX(1);
}

.reels__link:hover span {
    color: #FFFEF9;
}

@media (max-width: 768px) {
    .reels {
        margin: 30px 0;
    }

    .reels__subheading {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .reels__heading {
        font-size: 20px;
        margin-bottom: 35px;
    }

    .reels__videos {
        gap: 10px;
        margin-bottom: 35px;
        padding: 0 15px;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .reels__video {
        width: 180px;
        min-width: 180px;
        border-radius: 7px;
    }

    .reels__link {
        width: 210px;
        height: 40px;
        font-size: 12px;
    }
}