.budi-support-hero {
    position: relative;
    height: calc(100svh - var(--header-height, 0px));
    min-height: 0;
    overflow: hidden;
    border-radius: var(--budi-support-hero-radius, 0);
    background: var(--budi-support-hero-bg, #f3162d);
    color: var(--budi-support-hero-color, #fff);
    padding-inline: 20px;
}

.budi-support-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 55%) minmax(0, 45%);
    gap: clamp(24px, 4vw, 64px);
    width: 100%;
    max-width: 1440px;
    height: 100%;
    margin-inline: auto;
}

.budi-support-hero__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 1513.481px;
    height: 582.307px;
    border-radius: 1513.481px;
    background: rgba(255, 255, 255, 0.20);
    filter: blur(125px);
    pointer-events: none;
    transform: translate(-50%, -50%) rotate(-14.296deg);
}

.budi-support-hero *,
.budi-support-hero *::before,
.budi-support-hero *::after {
    box-sizing: border-box;
}

.budi-support-hero__media {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.2vw, 20px);
    height: 100%;
    min-height: 0;
    overflow: hidden;
    pointer-events: none;
}

.budi-support-hero__mobile-media {
    display: none;
}

.budi-support-hero__column {
    position: relative;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}

.budi-support-hero__track {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    will-change: transform;
    animation-duration: var(--budi-support-hero-scroll-duration, 36s);
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.budi-support-hero__track--up {
    animation-name: budi-support-hero-scroll-up;
}

.budi-support-hero__track--down {
    animation-name: budi-support-hero-scroll-down;
    transform: translate3d(0, -50%, 0);
}

.budi-support-hero__set {
    display: flex;
    flex-direction: column;
    gap: var(--budi-support-hero-image-gap, 18px);
    margin-bottom: var(--budi-support-hero-image-gap, 18px);
}

.budi-support-hero__slide {
    height: auto;
}

.budi-support-hero__image {
    display: block;
    width: 100%;
    aspect-ratio: 0.92 / 1;
    min-height: 360px;
    height: auto;
    object-fit: cover;
    border-radius: clamp(14px, 1.35vw, 24px);
}

.budi-support-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    text-align: center;
}

.budi-support-hero__content-inner {
    width: min(100%, 560px);
}

.budi-support-hero__title {
    margin: 0;
    color: inherit;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: normal;
}

.budi-support-hero__description {
    width: min(100%, 460px);
    margin: clamp(18px, 2vw, 28px) auto 0;
    color: inherit;
    font-size: 18px;
    line-height: 1.6;
}

.budi-support-hero__description p {
    margin: 0;
}

.budi-support-hero__actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: clamp(22px, 2.5vw, 34px);
}
 
.budi-support-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 15px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.budi-support-hero__button--primary {
    background: #fff;
    color: var(--budi-support-hero-accent, #e30612);
}

.budi-support-hero__button--primary:hover,
.budi-support-hero__button--primary:focus {
    color: var(--budi-support-hero-accent, #e30612);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(76, 0, 10, 0.18);
}

.budi-support-hero__button--secondary {
    background: #ffffff1a;
    border-color: #fff;
    color: #fff;
}

.budi-support-hero__button--secondary:hover,
.budi-support-hero__button--secondary:focus {
    background: #ffffff33;
    border-color: #fff;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(76, 0, 10, 0.18);
}

.budi-support-hero__scroll-cue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    animation: budi-support-hero-scroll-cue 1.4s ease-in-out infinite;
    pointer-events: none;
}

.budi-support-hero__scroll-cue svg {
    display: block;
}

@keyframes budi-support-hero-scroll-up {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(0, -50%, 0);
    }
}

@keyframes budi-support-hero-scroll-down {
    from {
        transform: translate3d(0, -50%, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes budi-support-hero-scroll-left {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes budi-support-hero-scroll-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes budi-support-hero-scroll-cue {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .budi-support-hero__image {
        min-height: 280px;
    }
}

@media (max-width: 991px) {
    .budi-support-hero__overlay {
        display: none;
    }

    .budi-support-hero {
        height: auto;
        min-height: 0;
        padding-bottom: 60px;
    }

    .budi-support-hero__inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        gap: 65px;
        height: 100%;
    }

    .budi-support-hero__media {
        display: none;
    }

    .budi-support-hero__mobile-media {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 135%;
        height: 494px;
        min-height: 0;
        margin-top: -34px;
        margin-left: -17%;
        overflow: hidden;
        pointer-events: none;
        transform: rotate(6deg);
        transform-origin: center;
    }

    .budi-support-hero__mobile-row {
        position: relative;
        height: calc((100% - 14px) / 2);
        overflow: visible;
    }

    .budi-support-hero__mobile-track {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        width: max-content;
        will-change: transform;
        animation-duration: var(--budi-support-hero-scroll-duration, 36s);
        animation-iteration-count: infinite;
        animation-timing-function: linear;
    }

    .budi-support-hero__mobile-track--left {
        animation-name: budi-support-hero-scroll-left;
    }

    .budi-support-hero__mobile-track--right {
        animation-name: budi-support-hero-scroll-right;
        transform: translate3d(-50%, 0, 0);
    }

    .budi-support-hero__mobile-set {
        display: flex;
        gap: 14px;
        margin-right: 14px;
    }

    .budi-support-hero__mobile-slide {
        flex: 0 0 auto;
        width: clamp(150px, 42vw, 220px);
    }

    .budi-support-hero__mobile-slide .budi-support-hero__image {
        aspect-ratio: 0.92 / 1;
        min-height: 0;
        height: 240px;
    }

    .budi-support-hero__content {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .budi-support-hero__mobile-media {
        gap: 10px;
        height: 490px;
    }

    .budi-support-hero__mobile-row {
        height: calc((100% - 10px) / 2);
    }

    .budi-support-hero__mobile-set {
        gap: 10px;
        margin-right: 10px;
    }

    .budi-support-hero__mobile-slide {
        width: clamp(132px, 44vw, 180px);
    }

    .budi-support-hero__title {
        font-size: clamp(30px, 9vw, 42px);
    }

    .budi-support-hero__description {
        font-size: 16px;
    }
}
