.focus-ticker__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.focus-ticker__image {
    flex: 1;
    max-width: 30rem;
    position: relative;
    z-index: 1;
}

.focus-ticker__image .video {
    aspect-ratio: 300/550;
}

.focus-ticker__content {
    align-items: flex-start;
    gap: 6rem;
}

.focus-ticker__track {
    overflow: hidden;
    height: 17.5rem;
    position: relative;
}

.focus-ticker__track::before,
.focus-ticker__track::after {
    content: "";
    display: block;
    width: 100%;
    height: 35%;

    background: linear-gradient(180deg, #FFFFFF, rgba(255, 255, 255, 0));

    position: absolute;
    top: -1rem;
    z-index: 1;
}

.focus-ticker__track::after {
    top: auto;
    bottom: -1rem;
    rotate: 180deg;
}

.focus-ticker__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: ticker-scroll var(--duration) linear infinite;
}

.focus-ticker__item {
    display: flex;
    align-content: center;
    gap: 1rem;
    color: var(--color-gray-light);
    transition: all 1s ease;
}

.focus-ticker__item.active {
    color: var(--color-default);
}

.focus-ticker__item:not(.active)::before {
    opacity: 0;
}

.focus-ticker__fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 1;

    -webkit-backdrop-filter: blur(0.1px);
    backdrop-filter: blur(0.1px);
}

.low-power-mode .focus-ticker__fallback {
    display: block;
}

.low-power-mode .focus-ticker__image .video {
    opacity: 0;
}

@keyframes ticker-scroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

@media screen and (max-width: 767.9px) {
    .focus-ticker__inner {
        flex-direction: column;
    }

    .focus-ticker__image {
        order: -1;
    }
}

@media screen and (max-width: 575.9px) {

}