
.days {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 13%;
}

.day {
    background: linear-gradient(151deg, #aa0606 0%, #000 100%);
    border-radius: 20px;
    border-top: 1px solid #F2D51D;
    border-right: 1px solid #F2D51D;
    width: 100%;
}

.day-num{
    font-weight: 500;
    font-size: 100px;
    line-height: 88%;
    text-transform: uppercase;
    margin-bottom: -12%;
    z-index: -1;
    position: relative;
    text-align: center;
    color: #000;
    -webkit-text-stroke: 1px #FFE11F;
    text-shadow: 0 0 33px rgba(255, 225, 31, 0.57);
}

.day-title {
    font-weight: 800;
    font-size: 16px;
    line-height: 113%;
    padding: 15px 15px 7px 15px;
    text-transform: uppercase;
    color: #ffe11f;
    font-family: sans-serif;
}

.day-text {
    font-weight: 500;
    font-size: 12.3px;
    padding: 0 15px;
    line-height: 114%;
    padding-bottom: 15px;
    color: #fff;
    list-style: none;
}


.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #fff;
    cursor: pointer;
    background: linear-gradient(203deg, #f19090 0%, #ff361e 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.play-btn-img {
    width: 12px;
    height: 12px;
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    background-image: url(../images/video-frame.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 2px;
}

.day-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}


.videoBlock-day-video {
    width: 100%;
    display: block;
    border-radius: 20px;
}


.days {
    flex-wrap: nowrap;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}


@media(max-width: 390px){
    .day-title {
        font-size: 14px;
        line-height: 113%;
        padding: 12px 12px 7px 12px;
    }

    .day-text {
        font-size: 11.3px;
        padding: 0 12px;
        line-height: 114%;
        padding-bottom: 12px;
    }
}