.mob-video {
    position: relative;
    overflow: hidden;
    background: #080909;
    color: #fff;
}

.mob-video__layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(420px, 42vw, 680px);
    align-items: center;
    gap: clamp(34px, 5vw, 84px);
    width: 100%;
    min-height: 720px;
    padding: clamp(54px, 7vw, 88px) clamp(24px, 6vw, 112px);
    overflow: hidden;
    border-radius: 0;
    background:
        radial-gradient(circle at 87% 10%, rgba(237, 29, 36, .2), transparent 34%),
        radial-gradient(circle at 76% 46%, rgba(237, 29, 36, .12), transparent 28%),
        #080909;
}

.mob-video__content {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: 610px;
}

.mob-video__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    margin-bottom: 20px;
    padding: 9px 26px;
    border: 1px solid rgb(75 228 222 / 0.7);
    border-radius: 10px;
    background: rgba(237, 29, 36, .08);
    color: #4ec9c1;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.mob-video__badge span {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 8px rgba(237, 29, 36, .12);
}

.mob-video__title {
    max-width: 560px;
    margin: 0 0 28px;
    font-size: clamp(40px, 4.5vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.mob-video__title span {
    display: block;
}

.mob-video__title span:nth-child(n+2) {
    color: #e46468;
}

.mob-video__text {
    max-width: 610px;
    margin: 0 0 42px;
    color: rgba(255, 255, 255, .56);
    font-size: 22px;
    font-weight: 700;
}

.mob-video__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 260px;
    min-height: 72px;
    margin: 0 0 58px;
    padding: 18px 32px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        opacity .25s ease;
}

.mob-video__cta:hover {
    transform: translateY(-2px);
    border-color: rgba(237, 29, 36, .6);
    background: rgba(237, 29, 36, .14);
}

.mob-video__cta:focus-visible,
.mob-video__play:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 6px;
}

.mob-video__cta svg {
    width: 18px;
    height: 22px;
    color: #f12027;
}

.mob-video__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 620px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mob-video__stats li {
    min-width: 0;
    padding: 0 28px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.mob-video__stats li:first-child {
    padding-left: 0;
    border-left: 0;
}

.mob-video__stats strong,
.mob-video__stats span {
    display: block;
}

.mob-video__stats strong {
    color: #fff;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 900;
    line-height: 1;
}

.mob-video__stats span {
    margin-top: 10px;
    color: rgba(255, 255, 255, .42);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.28;
    text-transform: uppercase;
}

.mob-video__frame {
    position: relative;
    z-index: 2;
    justify-self: stretch;
    width: 100%;
    height: min(76vh, 720px);
    min-height: 600px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
    background:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        #161817;
}

.mob-video__frame::before,
.mob-video__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity .35s ease;
}

.mob-video__frame::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(237, 29, 36, .24), transparent 22%),
        linear-gradient(180deg, rgba(5, 7, 10, .3) 0%, transparent 32%, rgba(5, 7, 10, .34) 100%);
}

.mob-video__frame::after {
    background: rgba(7, 8, 8, .36);
}

.mob-video__brand {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 12px 26px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .74);
    color: rgba(255, 255, 255, .74);
    font-size: 18px;
    font-weight: 800;
    transition: opacity .35s ease;
}

.mob-video__brand img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    object-fit: contain;
}

.mob-video__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    opacity: .72;
}

.mob-video__shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .12) 44%, transparent 58%);
    transform: translateX(-58%);
    transition: opacity .35s ease;
}

.mob-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 144px;
    height: 144px;
    border: 0;
    border-radius: 50%;
    background: #f12027;
    color: #fff;
    cursor: pointer;
    box-shadow:
        0 0 0 32px rgba(237, 29, 36, .18),
        0 0 0 64px rgba(237, 29, 36, .08),
        0 24px 70px rgba(237, 29, 36, .34);
    transform: translate(-50%, -50%);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        opacity .25s ease,
        visibility .25s ease;
}

.mob-video__play:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow:
        0 0 0 36px rgba(237, 29, 36, .2),
        0 0 0 72px rgba(237, 29, 36, .1),
        0 28px 78px rgba(237, 29, 36, .42);
}

.mob-video__play svg {
    width: 34px;
    height: 40px;
    margin-left: 8px;
}

.mob-video__duration {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 4;
    padding: 10px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .72);
    color: rgba(255, 255, 255, .74);
    font-size: 20px;
    font-weight: 900;
    transition: opacity .35s ease;
}

.mob-video__layout.is-playing .mob-video__frame::before,
.mob-video__layout.is-playing .mob-video__frame::after,
.mob-video__layout.is-playing .mob-video__shine,
.mob-video__layout.is-playing .mob-video__brand,
.mob-video__layout.is-playing .mob-video__duration,
.mob-video__layout.is-playing .mob-video__play {
    opacity: 0;
    visibility: hidden;
}

.mob-video__layout.is-playing .mob-video__cta {
    opacity: .44;
}

.mob-video__layout.is-playing .mob-video__media {
    opacity: 1;
}

@media (max-width: 1180px) {
    .mob-video__layout {
        grid-template-columns: 1fr;
        justify-items: center;
        min-height: 0;
        text-align: left;
    }

    .mob-video__content {
        width: 100%;
        max-width: 760px;
        justify-self: start;
    }

    .mob-video__title {
        overflow-wrap: normal;
    }

    .mob-video__frame {
        justify-self: center;
        width: min(100%, 560px);
        height: auto;
        aspect-ratio: 3 / 4;
        min-height: 600px;
    }
}

@media (max-width: 768px) {
    .mob-video {
        margin-top: -24px;
    }

    .mob-video__layout {
        gap: 12px;
        padding: 42px 22px;
        border-radius: 22px;
    }

    .mob-video__badge {
        margin-bottom: 34px;
        padding: 8px 18px;
        font-size: 16px;
    }

    .mob-video__title {
        font-size: 36px;
    }

    .mob-video__text {
        margin-bottom: 32px;
        font-size: 18px;
    }

    .mob-video__cta {
        min-width: 0;
        width: 100%;
        min-height: 62px;
        margin-bottom: 40px;
    }

    .mob-video__stats {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .mob-video__stats li,
    .mob-video__stats li:first-child {
        padding: 0 0 0 18px;
        border-left: 1px solid rgba(255, 255, 255, .14);
    }

    .mob-video__stats strong {
        font-size: 34px;
    }

    .mob-video__stats span {
        font-size: 15px;
    }

    .mob-video__frame {
        width: min(100%, 360px);
        min-height: 480px;
        border-radius: 22px;
        background-size: 46px 46px;
    }

    .mob-video__brand {
        top: 18px;
        left: 18px;
        min-height: 46px;
        padding: 10px 16px;
        font-size: 16px;
    }

    .mob-video__play {
        width: 104px;
        height: 104px;
        box-shadow:
            0 0 0 24px rgba(237, 29, 36, .18),
            0 0 0 48px rgba(237, 29, 36, .08),
            0 20px 58px rgba(237, 29, 36, .32);
    }

    .mob-video__play svg {
        width: 28px;
        height: 34px;
    }

    .mob-video__duration {
        right: 18px;
        bottom: 18px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .mob-video__layout {
        padding: 36px 16px;
    }

    .mob-video__title {
        font-size: 30px;
    }

    .mob-video__frame {
        min-height: 420px;
    }
}
