/* ============================================================
   VSK Hausordnung – Frontend
   ============================================================ */

.vsk-ho {
    box-sizing: border-box;
    font-family: inherit;
    padding: 8px 0;
}

.vsk-ho *,
.vsk-ho *::before,
.vsk-ho *::after {
    box-sizing: inherit;
}

/* ── Grid ───────────────────────────────────────────────────── */
.vsk-ho__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

/* ── Karte ──────────────────────────────────────────────────── */
.vsk-ho__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vsk-ho__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

/* ── Karten-Header ──────────────────────────────────────────── */
.vsk-ho__card-top {
    background: var(--vsk-ho-light, #FEF3C7);
    padding: 1.5rem 1.5rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Nummern-Kreis */
.vsk-ho__num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--vsk-ho-accent, #F59E0B);
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    font-family: system-ui, -apple-system, sans-serif;
}

/* Emoji */
.vsk-ho__emoji {
    font-size: 52px;
    line-height: 1;
    user-select: none;
}

/* ── Karten-Inhalt ──────────────────────────────────────────── */
.vsk-ho__card-body {
    padding: 1.1rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vsk-ho__title {
    font-size: 16px;
    font-weight: 800;
    color: #1E293B;
    margin: 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.vsk-ho__title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--vsk-ho-accent, #F59E0B);
    opacity: 0.6;
}

.vsk-ho__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0.35rem 0 0;
}

/* ── Leer-Zustand ───────────────────────────────────────────── */
.vsk-ho__empty {
    color: #94A3B8;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 480px) {
    .vsk-ho__grid {
        grid-template-columns: 1fr;
    }
    .vsk-ho__card-top {
        padding: 1.25rem;
    }
    .vsk-ho__emoji {
        font-size: 44px;
    }
    .vsk-ho__num {
        width: 44px;
        height: 44px;
        font-size: 19px;
    }
}
