/* ════════════════════════════════════════════════
   SECTION-BASIS  (.wy-section)
   Genutzt von: allen Section-Components
   ════════════════════════════════════════════════ */

.wy-section {
    max-width: 100%;
    padding: var(--wy-section-padding);
}

.wy-section-desc {
    font-size: 1rem;
    color: var(--wy-color-slate);
    max-width: 600px;
    margin: -1.5rem auto 2.5rem;
    text-align: center;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   GEMEINSAMES KARTEN-GRID  (.wy-cards-grid)
   Genutzt von: [wy_angebote_section], [wy_cross_links_section]
   ════════════════════════════════════════════════ */

.wy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 2rem;
    max-width: var(--wy-content-max-width);
    margin: 0 auto;
}
@media (max-width: 540px) {
    .wy-cards-grid { grid-template-columns: 1fr; }
}
