/* ============================================================
   pages/home.css — Startseite /public/index.php (0.1.3.1)
   ------------------------------------------------------------
   0.1.3.1: "Willkommen" als richtige H1, persönlicher Gruß als
   Sub-Headline. Funktions-Übersicht als Card-Grid darunter.
============================================================ */

.home-welcome {
    margin: 0 0 4px 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--pub-text);
}

.home-greeting {
    margin: 0 0 24px 0;
    font-size: 1.1rem;
    color: var(--pub-text-muted);
    line-height: 1.4;
}

.home-greeting strong {
    color: var(--pub-brand);
    font-weight: 600;
}

/* Funktions-Cards (Bereiche, die User erreichen können) */
.home-features {
    margin-top: 8px;
}

.home-features h2 {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pub-text);
}

/* Card-Grid auf der Startseite — etwas knapper als pub-grid Default */
.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

/* Einzelne Feature-Card */
.home-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.home-feature .pub-card-icon {
    font-size: 1.8rem;
}

.home-feature .pub-card-body h3 {
    font-size: 1rem;
    margin: 0 0 4px 0;
    color: var(--pub-text);
}

.home-feature .pub-card-body p {
    font-size: 0.88rem;
    margin: 0;
}

/* ----------------------------------------------------------------
   Mobile
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
    .home-welcome { font-size: 1.55rem; }
    .home-greeting { font-size: 1rem; }
}
