.bf-p-banner {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.bf-p-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-image: url('/images/content/black_fri_banner/bf_back.svg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: -1;
}

.bf-banner__wrapper {
    position: relative;
    padding-top: 125px;
    min-height: 340px;
}

.bf-banner__parallax {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 32px;
    margin-top: 64px;
    min-height: 600px;
}

.bf-headline-wrapper {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    pointer-events: none;
}

@keyframes bf-slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bf-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bf-p-headline {
    margin-top: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 40px;
    pointer-events: auto;
}

.bf-p-headline .bf-signature {
    font-size: 6rem;
    line-height: 7rem;
    font-weight: 800;
    background: linear-gradient(95.5deg, #F79900 10.42%, #FFCE7D 46.02%, #F79900 96.73%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: bf-fadeInUp 1s ease-out 0.4s both;
    margin: 0;
    white-space: nowrap;
}

.bf-p-headline .bf-signature-black {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: transparent;
    -webkit-text-stroke: 2px rgba(247, 153, 0, 1);
}

.bf-today-text {
    position: absolute;
    left: 10%;
    top: 75%;
    transform: translateY(-50%) rotate(0deg);
    z-index: 3;
    color: white;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
    line-height: 120%;
    text-align: left;
    pointer-events: auto;
    -webkit-text-stroke: 2px white;
    border: 1px solid white;
    border-radius: 12px;
    padding: 20px;
    opacity: 1;
    animation: bf-todayFadeInUp 1s ease-out 0.6s both;
}

@keyframes bf-todayFadeInUp {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 30px)) rotate(0deg);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(0deg);
    }
}

.bf-today-text div {
    white-space: nowrap;
}

.bf-p-description {
    font-size: 40px;
    font-weight: 700;
    line-height: 120%;
    margin-top: 365px;
    margin-left: 0;
    animation: bf-p-fadeInUpRotated 1s ease-out 0.8s both;
    background: linear-gradient(90.94deg, #F79900 -2.35%, #FFBE55 21.47%, #FBB139 56.18%, #F8BC59 82.59%, #F79900 105.38%);
    color: rgba(47, 44, 39, 1);
    padding: 8px 20px 6px;
    border-radius: 8px;
    display: inline-block;
    width: fit-content;
    pointer-events: auto;
    box-shadow: 0 0 0 7px rgba(247, 153, 0, 0.5);
}

@keyframes bf-p-fadeInUpRotated {
    from {
        opacity: 0;
        transform: translateY(30px) rotate(-9.44deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(-9.44deg);
    }
}

.bf-p-horse {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(2);
    z-index: 1;
    width: auto;
    height: auto;
    pointer-events: none;
    margin-top: 50px;
    animation: bf-horseFadeInUp 1s ease-out 0.7s both;
}

@keyframes bf-horseFadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px)) scale(2);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(2);
    }
}


@media (max-width: 768px) {
    .bf-p-banner {
        min-height: 100vh;
    }

    .bf-banner__wrapper {
        padding-top: 60px;
        min-height: auto;
    }

    .bf-banner__parallax {
        grid-template-columns: 1fr;
        margin-top: 20px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .bf-headline-wrapper {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        padding: 0 20px;
    }

    .bf-p-headline {
        margin-top: 0;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

    .bf-p-headline .bf-signature {
        font-size: 3.5rem;
        line-height: 3rem;
        white-space: normal;
    }

    .bf-today-text {
        position: relative;
        left: auto;
        top: 75px;
        transform: none;
        margin: 30px auto;
        font-size: 40px;
        padding: 15px;
        text-align: center;
        width: fit-content;
        border-radius: 4px;
    }

    .bf-today-text div {
        white-space: normal;
    }

    .bf-p-description {
        position: absolute;
        left: 50%;
        top: 90%;
        transform: translate(-50%, -50%) rotate(-9.44deg);
        font-size: 30px;
        margin: 0;
        padding: 6px 16px;
        box-shadow: 0 0 0 4px rgba(247, 153, 0, 0.5);
        z-index: 10;
        white-space: nowrap;
    }

    @keyframes bf-p-fadeInUpRotated {
        from {
            opacity: 0;
            transform: translate(-50%, calc(-50% + 30px)) rotate(-9.44deg);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) rotate(-9.44deg);
        }
    }

    .bf-p-horse {
        position: relative;
        left: auto;
        top: auto;
        transform: scale(3) translate(0, 0);
        margin-top: 100px;
        margin-left: 40px;
        margin-right: auto;
        width: 100%;
        max-width: 300px;
        display: flex;
        justify-content: center;
    }

    .bf-p-horse::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 55%;
        transform: translate(-50%, -50%);
        width: 200px;
        height: 200px;
        background-image: radial-gradient(circle closest-side, rgba(255, 255, 255, 0.8) 0%, transparent 75%);
        z-index: -1;
        pointer-events: none;
    }

    .bf-p-horse img {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
    }

    @keyframes bf-horseFadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px) scale(3);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(3);
        }
    }
}
