:root {
    --stories-size: 86px;
    --stories-gap: 1rem;
    --stories-ring: 3px;
    --stories-surface: rgba(8, 12, 20, 0.4);
    --stories-surface-strong: rgba(8, 12, 20, 0.82);
    --stories-line: rgba(255, 255, 255, 0.1);
    --stories-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
    --stories-progress-bg: rgba(255, 255, 255, 0.18);
    --stories-progress-fill: #ffffff;
    --stories-ring-live: conic-gradient(from 210deg, #f8b400, #ffd766, #fff4c6, #f8b400);
}

html.stories-open,
body.stories-open {
    overflow: hidden;
    overscroll-behavior: none;
}

body.stories-open {
    touch-action: none;
}

.hero__single {
    align-content: center;
}

.hero.hero--video > .container.hero__single {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    padding-inline: 0.625rem;
}

.hero__stories {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    pointer-events: none;
    justify-self: center;
    align-self: start;
    margin-inline: auto;
}

.hero__content--compact {
    width: min(760px, 100%);
    position: relative;
    z-index: 3;
    justify-self: center;
    margin-inline: auto;
}

.stories-surface {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    position: relative;
    pointer-events: none;
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
}

.stories-surface::before {
    display: none;
}

.stories-surface__head,
.stories-phone__top,
.stories-phone__bottom,
.stories-phone__caption,
.stories-phone__profile,
.stories-surface__controls {
    display: flex;
    align-items: center;
}

.stories-surface__head {
    display: none;
}

.stories-surface__copy {
    min-width: 0;
}

.stories-surface__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 180, 0, 0.28);
    background: rgba(248, 180, 0, 0.12);
    color: #ffe18b;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stories-surface__text {
    margin: 0.7rem 0 0;
    color: rgba(245, 247, 251, 0.78);
    font-size: 0.95rem;
}

.stories-surface__controls {
    gap: 0.55rem;
    flex-shrink: 0;
}

.stories-surface__control,
.stories-phone__icon {
    position: relative;
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.stories-surface__control:hover,
.stories-surface__control:focus-visible,
.stories-phone__icon:hover,
.stories-phone__icon:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(248, 180, 0, 0.42);
    background: rgba(248, 180, 0, 0.12);
}

.stories-surface__control:disabled {
    opacity: 0.38;
    cursor: default;
    transform: none;
}

.stories-row-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    pointer-events: none;
    padding-inline: 0;
    overflow: hidden;
}

.stories-row-wrap::before,
.stories-row-wrap::after {
    display: none;
}

.stories-row-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 12, 20, 0.78), rgba(8, 12, 20, 0));
}

.stories-row-wrap::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(8, 12, 20, 0.78), rgba(8, 12, 20, 0));
}

.stories-row {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    pointer-events: auto;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--stories-gap);
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.15rem 0;
    margin-inline: auto;
    scrollbar-width: none;
    cursor: grab;
    scroll-behavior: smooth;
    scroll-padding-inline: clamp(1rem, 5vw, 4rem);
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: pan-x;
}

.stories-row.is-centered {
    justify-content: center;
    overflow-x: hidden;
}

.stories-row::-webkit-scrollbar {
    display: none;
}

.stories-row.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.stories-row.is-dragging .stories-card {
    cursor: grabbing;
}

.stories-card {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: clamp(var(--stories-size), 7.5vw, 102px);
    display: grid;
    justify-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    text-align: center;
    touch-action: manipulation;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: transparent;
}

.stories-card *,
.stories-card img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.stories-card:focus-visible .stories-card__ring {
    box-shadow: 0 0 0 4px rgba(248, 180, 0, 0.18);
}

.stories-card__ring {
    position: relative;
    width: var(--stories-size);
    height: var(--stories-size);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    padding: var(--stories-ring);
    overflow: hidden;
    background: var(--stories-ring-live);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.stories-card__ring::before {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stories-card:hover .stories-card__ring {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.stories-card.is-seen .stories-card__ring {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.9), rgba(100, 116, 139, 0.9));
}

body .stories-stage .stories-card.is-seen .stories-card__ring,
body.viremo-page--pro-diamond .stories-stage .stories-card.is-seen .stories-card__ring,
body.viremo-page--platin-royal .stories-stage .stories-card.is-seen .stories-card__ring,
body.viremo-page--ultimate .stories-stage .stories-card.is-seen .stories-card__ring {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.94), rgba(71, 85, 105, 0.96));
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.24);
    filter: saturate(0.72);
}

.stories-card.is-seen .stories-card__avatar {
    filter: grayscale(0.28) brightness(0.9);
}

.stories-card.is-seen .stories-card__title {
    color: rgba(203, 213, 225, 0.72);
}

.stories-card.is-empty {
    opacity: 0.76;
}

.stories-card.is-empty .stories-card__ring {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.92), rgba(51, 65, 85, 0.92));
}

.stories-card.is-empty:hover .stories-card__ring {
    transform: none;
    filter: none;
}

.stories-card.is-active .stories-card__ring {
    box-shadow: 0 10px 30px rgba(248, 180, 0, 0.24);
}

.stories-card__avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, 0.06);
}

.stories-card__title {
    display: block;
    width: 100%;
    margin-top: 0.58rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.01em;
    text-align: center;
    text-wrap: balance;
}

.stories-card__count {
    display: none;
}

.stories-card.is-active .stories-card__title {
    color: #ffffff;
}

.stories-modal {
    position: fixed;
    inset: 0;
    z-index: 1600;
    --stories-dismiss-progress: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.stories-modal.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.stories-modal:not(.is-active),
.stories-modal:not(.is-active) * {
    pointer-events: none !important;
}

.stories-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 14, 0.62);
    backdrop-filter: blur(14px) saturate(1.04);
    -webkit-backdrop-filter: blur(14px) saturate(1.04);
    filter: none;
    transform: none;
    opacity: calc(1 - (var(--stories-dismiss-progress) * 0.82));
    transition: opacity 0.18s ease;
}

.stories-modal__backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(255,255,255,0.07), transparent 42%),
        rgba(4, 8, 14, 0.26);
}

.stories-modal__player {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100svh;
    min-height: 100dvh;
    padding: clamp(0.35rem, 2vw, 1.2rem);
    overscroll-behavior: contain;
    overflow: hidden;
    box-sizing: border-box;
}

.stories-phone {
    position: relative;
    aspect-ratio: 9 / 16;
    width: min(420px, calc(100vw - 1.5rem), calc((100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.2rem) * 0.5625));
    max-width: calc(100vw - 1.5rem);
    height: auto;
    max-height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1.2rem);
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #030507;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.46);
    transition: transform 0.18s ease;
    touch-action: none;
    overscroll-behavior: contain;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    will-change: transform;
    margin: auto;
    box-sizing: border-box;
}

.stories-phone *,
.stories-phone img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}

.stories-phone__progress {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    gap: 0.35rem;
    pointer-events: none;
}

.stories-phone__progress-item {
    flex: 1;
    height: 3px;
    border-radius: 999px;
    background: var(--stories-progress-bg);
    overflow: hidden;
}

.stories-phone__progress-item span {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: var(--stories-progress-fill);
}

.stories-phone__top,
.stories-phone__bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    padding-inline: 1rem;
    pointer-events: auto;
}

.stories-phone__top {
    top: max(1.35rem, calc(env(safe-area-inset-top) + 0.58rem));
    justify-content: space-between;
    gap: 0.45rem;
    align-items: flex-start;
}

.stories-phone__profile {
    min-width: 0;
    max-width: calc(100% - 138px);
    gap: 0.56rem;
}

.stories-phone__profile img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.stories-phone__profile-copy {
    min-width: 0;
    display: grid;
    gap: 0.1rem;
}

.stories-phone__profile-copy strong,
.stories-phone__profile-copy span,
.stories-phone__caption-label,
.stories-phone__counter {
    color: #ffffff;
}

.stories-phone__profile-copy strong {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.84rem;
    line-height: 1.12;
}

.stories-phone__profile-copy span {
    display: none;
}

.stories-phone__actions {
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex: 0 0 auto;
    pointer-events: auto;
}

.stories-phone__profile,
.stories-phone__cta {
    pointer-events: auto;
}

.stories-phone__profile {
    pointer-events: none;
}

.stories-phone__overlay-actions {
    position: absolute;
    top: max(1.05rem, calc(env(safe-area-inset-top) + 0.3rem));
    right: 1rem;
    z-index: 12;
    display: flex;
    gap: 0.5rem;
    pointer-events: auto;
}

.stories-phone__overlay-button {
    pointer-events: auto;
}

.stories-share-sheet[hidden] {
    display: none !important;
}

.stories-share-sheet {
    position: absolute;
    inset: auto 0 0;
    z-index: 18;
    display: grid;
    align-items: end;
    padding: 1rem;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.stories-share-sheet.is-open {
    opacity: 1;
    transform: translateY(0);
}

.stories-share-sheet__inner {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(7, 11, 20, 0.94);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(18px);
    padding: 0.9rem;
}

.stories-share-sheet__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.15rem 0.1rem 0.75rem;
    color: #fff;
}

.stories-share-sheet__head strong {
    font-size: 0.98rem;
    font-weight: 900;
}

.stories-share-sheet__close,
.stories-share-sheet__grid button {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.stories-share-sheet__close {
    width: 34px;
    height: 34px;
    border-radius: 999px;
}

.stories-share-sheet__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.stories-share-sheet__grid button {
    min-width: 0;
    min-height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    gap: 0.28rem;
    font-size: 0.68rem;
    font-weight: 800;
}

.stories-share-sheet__grid i {
    font-size: 1.1rem;
}

.stories-share-sheet__grid span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stories-phone__body {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    perspective: 1600px;
    perspective-origin: 50% 74%;
    transform-style: preserve-3d;
}

.stories-phone__stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform-style: preserve-3d;
    will-change: transform;
}

.stories-phone__chrome {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    z-index: 3;
}

.stories-phone__chrome .stories-phone__progress,
.stories-phone__chrome .stories-phone__top,
.stories-phone__chrome .stories-phone__bottom {
    z-index: 6;
}

.stories-phone__chrome--current {
    opacity: 1;
    pointer-events: auto;
}

.stories-phone__chrome--current .stories-phone__actions {
    visibility: hidden;
    pointer-events: none;
}

.stories-phone__chrome--preview {
    pointer-events: none;
}

.stories-phone__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transform: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: opacity 0.24s ease;
    will-change: transform, opacity;
    z-index: 1;
}

.stories-phone__media.is-visible {
    opacity: 1;
    transform: none;
}

.stories-phone__media--preview {
    z-index: 0;
    opacity: 0;
    filter: brightness(0.82);
    pointer-events: none;
}

.stories-phone__media--preview.is-visible {
    opacity: 1;
}

.stories-phone__media--ghost {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.stories-phone__media.is-channel-enter-next {
    transform: translateX(18%) scale(0.992);
}

.stories-phone__media.is-channel-enter-prev {
    transform: translateX(-18%) scale(0.992);
}

.stories-phone__media--ghost.is-channel-leave-next {
    animation: storiesChannelLeaveNext 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.stories-phone__media--ghost.is-channel-leave-prev {
    animation: storiesChannelLeavePrev 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.stories-phone.is-prism-swiping .stories-phone__body::after {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.08) 22%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.42) 100%);
}

.stories-phone.is-prism-swiping .stories-phone__media {
    transition: none;
}

.stories-phone.is-prism-swiping .stories-phone__stage {
    transition: none;
}

.stories-phone__body::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0%, rgba(0, 0, 0, 0.06) 22%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.stories-phone__zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36%;
    border: 0;
    background: transparent;
    z-index: 2;
    cursor: pointer;
    pointer-events: none;
}

.stories-phone__zone.is-prev {
    left: 0;
}

.stories-phone__zone.is-next {
    right: 0;
}

.stories-phone__zone:focus-visible::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.58);
}

.stories-phone__bottom {
    display: none;
    bottom: 0;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding-bottom: 1.2rem;
}

.stories-phone__caption {
    display: none;
}

.stories-phone__caption-label {
    font-size: 0.88rem;
    font-weight: 800;
}

.stories-phone__counter {
    display: none;
}

.stories-phone__cta {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.75rem 1rem;
    min-width: 172px;
    border-radius: 999px;
    border: 1px solid rgba(248, 180, 0, 0.3);
    background: rgba(248, 180, 0, 0.16);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
    margin-inline: auto;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

@keyframes storiesChannelLeaveNext {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(-18%) scale(0.992);
    }
}

@keyframes storiesChannelLeavePrev {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(18%) scale(0.992);
    }
}

.stories-phone__cta:hover,
.stories-phone__cta:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(248, 180, 0, 0.5);
}

@media (max-width: 1100px) {
    .hero__stories {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 860px) {
    :root {
        --stories-size: 78px;
        --stories-gap: 0.85rem;
    }

    .stories-surface {
        padding: 0;
        border-radius: 24px;
    }

    .stories-surface__controls {
        display: none;
    }

    .stories-row-wrap::before,
    .stories-row-wrap::after {
        width: 24px;
    }

    .stories-phone {
        width: min(400px, calc(100vw - 0.8rem), calc((100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 0.9rem) * 0.5625));
        max-width: calc(100vw - 0.8rem);
        max-height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 0.9rem);
    }
}

@media (max-width: 640px) {
    :root {
        --stories-size: 74px;
        --stories-gap: 1rem;
        --stories-ring: 3px;
    }

    .hero.hero--video > .container.hero__single {
        width: 100%;
        padding-inline: 0.375rem;
    }

    .hero__stories {
        width: 100%;
        max-width: 100%;
    }

    .hero__single {
        width: 100%;
        justify-items: stretch;
    }

    .hero__content--compact {
        width: 100%;
        max-width: none;
        margin-inline: auto;
        justify-self: stretch;
    }

    .stories-surface {
        padding: 0;
        border-radius: 0;
        width: 100%;
        max-width: 100%;
    }

    .stories-row-wrap {
        justify-content: flex-start;
    }

    .stories-row {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .stories-surface__head {
        margin-bottom: 0.7rem;
    }

    .stories-surface__text {
        display: none;
    }

    .stories-row-wrap::before,
    .stories-row-wrap::after {
        display: none;
    }

    .stories-card__title {
        width: 72px;
        max-width: 72px;
        margin-inline: auto;
        font-size: 0.68rem;
    }

    .stories-card__ring::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: inherit;
        z-index: 2;
        pointer-events: none;
        -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
        mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 3px));
    }

    .stories-card__avatar {
        position: absolute;
        top: -30%;
        left: -30%;
        width: 160%;
        height: 160%;
        max-width: none;
        z-index: 1;
        transform: none;
    }

    .stories-phone {
        width: min(calc(100vw - 0.4rem), calc((100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 0.45rem) * 0.5625));
        max-width: calc(100vw - 0.4rem);
        max-height: calc(100svh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 0.45rem);
        border-radius: 24px;
    }

    .stories-modal__player {
        min-height: 100svh;
        min-height: 100dvh;
        padding:
            max(0.28rem, env(safe-area-inset-top))
            0.18rem
            max(0.28rem, env(safe-area-inset-bottom));
        align-items: center;
        justify-content: center;
    }

    .stories-phone__top,
    .stories-phone__bottom {
        padding-inline: 0.72rem;
    }

    .stories-phone__top {
        top: max(1.28rem, calc(env(safe-area-inset-top) + 0.5rem));
    }

    .stories-phone__profile {
        max-width: calc(100% - 126px);
        gap: 0.45rem;
    }

    .stories-phone__profile img {
        width: 32px;
        height: 32px;
    }

    .stories-phone__profile-copy strong {
        font-size: 0.76rem;
    }

    .stories-phone__actions {
        gap: 0.25rem;
    }

    .stories-phone__icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .stories-phone__cta {
        min-height: 40px;
        padding-inline: 0.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .stories-row,
    .stories-phone,
    .stories-phone__media,
    .stories-modal,
    .stories-surface__control,
    .stories-phone__cta,
    .stories-phone__icon,
    .stories-card__ring {
        transition: none;
    }
}
