/* Hilfebereich der Fotobox: Uebersicht, Anleitungen, haeufige Fragen. */

.help-hero {
    padding: 140px 0 56px;
    background: linear-gradient(180deg, var(--bg-gray) 0%, var(--bg-white) 100%);
}

.help-hero .container {
    max-width: 860px;
}

.help-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.help-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 18px;
}

.help-lead {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.help-breadcrumb {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.help-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.help-breadcrumb a:hover {
    color: var(--primary);
}

/* Uebersichtskarten */

.help-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.help-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: transform .25s var(--transition), box-shadow .25s var(--transition);
}

a.help-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.help-card-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.help-card h2,
.help-card h3 {
    font-size: 21px;
    margin: 0 0 10px;
    letter-spacing: -.01em;
}

.help-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.help-card-meta {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.help-card-static {
    cursor: default;
}

/* Anleitung */

.guide-page {
    padding: 0 0 40px;
}

.guide-page .container {
    max-width: 860px;
}

.guide-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin: 0 0 48px;
}

.guide-fact {
    padding: 20px 22px;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.guide-fact dt {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}

.guide-fact dd {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-primary);
}

.guide-part {
    margin: 0 0 12px;
    padding-top: 28px;
}

.guide-part h2 {
    font-size: 27px;
    letter-spacing: -.015em;
    margin: 0 0 8px;
}

.guide-part p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

.guide-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.guide-step {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.guide-step:last-child {
    border-bottom: none;
}

.guide-step figure {
    margin: 0 0 20px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.guide-step img {
    display: block;
    width: 100%;
    height: auto;
}

.guide-step h3 {
    font-size: 20px;
    margin: 0 0 8px;
    letter-spacing: -.01em;
}

.guide-step-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.guide-step-body + .guide-step-body {
    margin-top: 10px;
}

/* Hinweise */

.guide-hint {
    display: flex;
    gap: 14px;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    font-size: 15px;
    line-height: 1.6;
    margin: 24px 0;
}

.guide-hint-info {
    background: #eaf1ff;
    color: var(--text-primary);
}

.guide-hint-warn {
    background: #fdf3e0;
    color: var(--text-primary);
}

.guide-hint-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-top: 1px;
}

.guide-hint-info .guide-hint-icon {
    background: var(--primary);
}

.guide-hint-warn .guide-hint-icon {
    background: #b7791f;
}

/* Fehlerbilder */

.guide-trouble {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 16px;
}

.guide-trouble details {
    border-bottom: 1px solid var(--border);
}

.guide-trouble details:last-child {
    border-bottom: none;
}

.guide-trouble summary {
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}

.guide-trouble summary::-webkit-details-marker {
    display: none;
}

.guide-trouble summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-tertiary);
}

.guide-trouble details[open] summary::after {
    content: "\2212";
}

.guide-trouble .trouble-body {
    padding: 0 22px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.guide-trouble .trouble-body p {
    margin: 0 0 10px;
}

.guide-trouble .trouble-body p:last-child {
    margin-bottom: 0;
}

/* Fussbereich einer Anleitung */

.guide-footer {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-gray);
    border-radius: var(--radius-lg);
}

.guide-footer h2 {
    font-size: 19px;
    margin: 0 0 8px;
}

.guide-footer p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 6px;
}

.guide-source {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 18px;
}

.guide-source a {
    color: var(--text-secondary);
}

/* Sprungmarken */

.guide-toc {
    margin: 0 0 44px;
    padding: 22px 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.guide-toc h2 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin: 0 0 14px;
}

.guide-toc ol {
    margin: 0;
    padding-left: 20px;
    columns: 2;
    column-gap: 32px;
}

.guide-toc li {
    font-size: 15px;
    line-height: 1.9;
    break-inside: avoid;
}

.guide-toc a {
    color: var(--text-secondary);
    text-decoration: none;
}

.guide-toc a:hover {
    color: var(--primary);
}

/* Haeufige Fragen */

.faq-group {
    margin-bottom: 44px;
}

.faq-group h2 {
    font-size: 22px;
    margin: 0 0 16px;
    letter-spacing: -.01em;
}

@media (max-width: 700px) {
    .help-hero {
        padding: 118px 0 40px;
    }

    .guide-toc ol {
        columns: 1;
    }

    .guide-step {
        padding: 26px 0;
    }
}

@media print {
    .nav,
    .footer,
    .guide-toc,
    .help-breadcrumb {
        display: none;
    }

    .guide-step {
        break-inside: avoid;
    }
}

/* Hilfe-Nummer. Waehrend eines Events zaehlt, dass man sie sofort findet. */

.help-phone {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    margin: 18px 0 0;
    padding: 18px 22px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.help-phone-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    width: 100%;
}

.help-phone .protected-phone a {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}

.help-phone .protected-phone a:hover {
    text-decoration: underline;
}

.help-phone-note {
    font-size: 14px;
    color: var(--text-secondary);
}

.help-card .protected-phone a {
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    white-space: nowrap;
}
