/* Hauptcontainer für die Kacheln (nebeneinander per Flexbox) */
.angebotsseite-wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 30px 0;
}

/* Gemeinsame Stile für beide Kacheln */
.angebotsseite-kachel {
    flex: 1;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Erste Kachel (leer / Textanzeige) */
.kachel-leer {
    color: #6c757d;
    font-style: italic;
}

/* Zweite Kachel (Willhaben) */
.kachel-willhaben {
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kachel-willhaben:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Link-Styling innerhalb der Willhaben-Kachel */
.willhaben-link {
    text-decoration: none;
    font-weight: 600;
    color: #0056b3;
    font-size: 1.1rem;
}

.willhaben-link:hover {
    text-decoration: underline;
}

/* Responsives Verhalten: Auf Smartphones untereinander anzeigen */
@media (max-width: 768px) {
    .angebotsseite-wrapper {
        flex-direction: column;
    }
}