.hero a.button.primary.primary {
    width: 51%;
    padding: 8px;
}


/* ========================================
   Home Hero Badge
   ======================================== */

p.custom-print-preview-badge.gepers-hero {
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0px 0px 14px 0px;
    padding: 4px 14px;
    border-radius: 999px;
    background: #0d2818;
    font-size: var(--p-size-extrasm) !important;
    font-weight: 600;
    opacity: 0.9;
    box-shadow: 0 8px 20px rgba(24, 49, 83, 0.12);
    color: white !important;
}

p.custom-print-preview-badge.gepers-hero::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--usp-dot-color);
    box-shadow: 0 0 0 0 rgba(63, 160, 59, 0.45);
    animation: gepers-pulse 1.8s ease-out infinite;
    flex: 0 0 6px;
}

@keyframes gepers-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 160, 59, 0.45);
    }

    70% {
        box-shadow: 0 0 0 9px rgba(63, 160, 59, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(63, 160, 59, 0);
    }
}



/* ========================================
   Home Hero Layout
   ======================================== */

.hero .section-bg.fill {
    border-bottom: 1px solid;
    border-color: var(--border-color);
}

/* ========================================
   Home Hero Button
   ======================================== */

.hero a.button.success.primaryyellow {
    width: 51%;
    padding: 8px;
}


/* ========================================
   Home Video
   ======================================== */

.image_radius {
    position: relative;
    width: 100%;
    isolation: isolate;
}

.no-controls-video {
    width: 100%;
    height: 34em;
    display: block;
    object-fit: cover;
    border-radius: var(--box-radius-extralg);
    box-shadow: 0px 5px 25px 0px #0d28183d;
}

.no-controls-video::-webkit-media-controls {
    display: none !important;
}

/* ========================================
   Home  Video Bubbles
   ======================================== */

.image_radius__bubble {
    position: absolute;
    left: -39px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.60);
    color: #132922;
    font-size: var(--p-size-extrasm);
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 14px 30px rgba(13, 40, 24, 0.14);
    backdrop-filter: blur(6px);
}


.image_radius__bubble::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #3fa03b;
    font-size: 14px;
    flex: 0 0 28px;
}

.image_radius__bubble--personalized {
    top: 24px;
}

.image_radius__bubble--personalized::before {
    content: '🖼️';
}

.image_radius__bubble--preview {
    top: 84px;
}

.image_radius__bubble--preview::before {
    content: '👀';
}

.image_radius__bubble--effect {
    top: 144px;
}

.image_radius__bubble--effect::before {
    content: '✨';
}

/* ========================================
   Home Hero  Responsive
   ======================================== */

@media (max-width: 849px) {
    .hero p {
    margin-bottom: 15px;
}
    .gap_hero {
        padding-top: 0px !important;
    }

    .no-controls-video {
        height: 28em;
        margin-top: 2rem;
    }

}

@media (max-width: 640px) {
    .no-controls-video {
        height: 22em;
    }

    .image_radius__bubble {
        gap: 8px;
        font-size: 13px;
    }

    .image_radius__bubble::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
        flex-basis: 24px;
    }

    .image_radius__bubble {
        left: -14px;
    }

    .image_radius__bubble--personalized {
        top: 14px;
    }

    .image_radius__bubble--preview {
        top: 60px;
    }

    .image_radius__bubble--effect {
        top: 106px;
    }
}
