/* =========================================================
   hilfe.css
   Hilfeseite / Videoübersicht
   ========================================================= */

.page-hilfe .content {
    max-width: 1100px;
    padding: 40px 24px;
}

.page-hilfe .hilfe-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-hilfe .hilfe-header h1 {
    margin-bottom: 16px;
}

.page-hilfe .hilfe-intro {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin: 0 auto;
    max-width: 700px;
    line-height: 1.6;
}

.page-hilfe .hilfe-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-hilfe .hilfe-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    width: 450px;
    max-width: 100%;
}

.page-hilfe .hilfe-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.page-hilfe .hilfe-card-body {
    padding: 20px;
}

.page-hilfe .hilfe-card-body h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    text-align: left;
}

.page-hilfe .hilfe-card-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.page-hilfe .hilfe-download-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    color: var(--color-success);
    text-decoration: none;
    font-weight: 600;
}

.page-hilfe .hilfe-download-link:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .page-hilfe .content {
        padding: 24px 16px;
    }

    .page-hilfe .hilfe-header {
        margin-bottom: 28px;
    }

    .page-hilfe .hilfe-grid {
        gap: 20px;
    }
}