/* ==========================================================================
   Hero Homepage – Button Group (Mobile Optimierung)
   ========================================================================== */

.fil-hero-homepage .button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Mobile: Buttons exakt untereinander ausrichten */
@media (max-width: 640px) {
    .fil-hero-homepage .button-group .button {
        width: 100%;
        max-width: 260px;   
        text-align: center;
        margin: 0;         
    }
}

/* Desktop / Tablet weiterhin nebeneinander */
@media (min-width: 641px) {
    .fil-hero-homepage .button-group {
        flex-direction: row;
        align-items: flex-start;
    }
}