/* ═══════════════════════════════════════════════════════════════
   startseite.css — Nur Seiten-eigene Styles, keine Duplikate
   Bindet ein: nachruf-normal.css, nachruf-motorrad.css,
               nachruf-promi.css, pfotenspur.css
   ═══════════════════════════════════════════════════════════════ */

:root {
    --start-sage:    #5c7a6e;
    --start-sage-d:  #3d5248;
    --start-red:     #8b3a3a;
    --start-bronze:  #a88860;
    --start-paw:     #7a5c3a;
    --start-dark:    #2a2420;
    --start-border:  #e4e0da;
    --start-muted:   #9a9a9a;
    --start-radius:  10px;
    --start-shadow:  0 2px 12px rgba(0,0,0,0.07);
    --start-shadow-h:0 12px 40px rgba(0,0,0,0.14);
    --start-trans:   0.3s ease;

    --border-light:   #e8e4e0;
    --accent-warm:    #c4956a;
    --accent-bronze:  #a88860;
    --accent-bronze-light: #c4a882;

}

/* ── HERO ─────────────────────────────────────────────────────── */
.start-hero {
    background: #f3f1ed;
    border-bottom: 1px solid var(--start-border);
    padding: 40px 0 5px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.start-hero::before {
    content: '';
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    width: max-600px; max-height: 600px;
    background: radial-gradient(ellipse, rgba(92,122,110,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.start-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--start-sage);
    text-transform: uppercase;
    margin-bottom: 20px;
    /* animation: startFadeUp 0.6s ease both; */
}

.start-hero-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 300;
    line-height: 1.15;
    color: #2a2a2a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    /* animation: startFadeUp 0.6s ease 0.1s both; */
}

.start-hero-title em { font-style: italic; font-weight: 400; color: var(--start-sage); }

.start-hero-sub {
    font-size: 17px;
    color: #5a5a5a;
    /* max-width: 520px; */
    margin: 0 auto 36px;
    line-height: 1.7;
    /* animation: startFadeUp 0.6s ease 0.2s both; */
}

.start-hero-zitat {
    display: inline-block;
    font-family: 'Newsreader', serif;
    font-style: italic;
    font-size: 15px;
    color: #9a9a9a;
    border-top: 1px solid var(--start-border);
    border-bottom: 1px solid var(--start-border);
    padding: 14px 32px;
    margin-bottom: 48px;
    /* animation: startFadeUp 0.6s ease 0.3s both; */
}

.start-hero-stats {
    display: flex;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--start-border);
    border-radius: var(--start-radius);
    overflow: hidden;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: var(--start-shadow);
    /* animation: startFadeUp 0.6s ease 0.4s both; */
}

.start-stat { flex: 1; padding: 20px 16px; text-align: center; border-right: 1px solid var(--start-border); transition: background var(--start-trans); }
.start-stat:last-child { border-right: none; }
.start-stat:hover { background: #f3f1ed; }
.start-stat-num { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 700; color: #2a2a2a; line-height: 1; margin-bottom: 4px; }
.start-stat-label { font-size: 11px; color: var(--start-muted); text-transform: uppercase; letter-spacing: 0.1em; }





/* ── INFO-BOX ─────────────────────────────────────────────────── */
.start-info-section { padding: 0px 0 20px; }

.start-info-box {
    background: #fff;
    border: 1px solid var(--start-border);
    border-radius: var(--start-radius);
    box-shadow: var(--start-shadow);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: hidden;
}

.start-info-item { padding: 36px 32px; border-right: 1px solid var(--start-border); position: relative; }
.start-info-item:last-child { border-right: none; }

.start-info-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--start-sage);
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.start-info-item:nth-child(2)::before { background: var(--start-red); }
.start-info-item:nth-child(3)::before { background: var(--start-bronze); }
.start-info-item:hover::before { transform: scaleX(1); }

.start-info-icon { font-size: 28px; margin-bottom: 14px; line-height: 1; }
.start-info-title { font-family: 'Newsreader', serif; font-size: 19px; font-weight: 600; color: #2a2a2a; margin-bottom: 10px; }
.start-info-text { font-size: 14px; color: #5a5a5a; line-height: 1.75; }

/* ── SECTION DIVIDER ──────────────────────────────────────────── */
.start-divider { display: flex; align-items: center; gap: 16px; padding: 10px 0 10px; }
.start-divider-line { flex: 1; height: 1px; background: var(--start-border); }
.start-divider-text { font-family: 'Newsreader', serif; font-size: 13px; font-style: italic; color: var(--start-muted); white-space: nowrap; }

/* ── SEKTIONEN-BLÖCKE ─────────────────────────────────────────── */
.start-sektion-block { margin-bottom: 64px; }

.start-sektion-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 2px solid var(--start-sage);
}
.start-sektion-block.motorrad .start-sektion-header { border-color: var(--start-red); }
.start-sektion-block.promi    .start-sektion-header { border-color: var(--start-bronze); }
.start-sektion-block.pfote    .start-sektion-header { border-color: var(--start-paw); }

.start-sektion-left { display: flex; align-items: center; gap: 14px; }

.start-sektion-icon {
    width: 48px; height: 48px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
    background: color-mix(in srgb, var(--start-sage) 12%, transparent);
}
.start-sektion-block.motorrad .start-sektion-icon { background: color-mix(in srgb, var(--start-red) 12%, transparent); }
.start-sektion-block.promi    .start-sektion-icon { background: color-mix(in srgb, var(--start-bronze) 12%, transparent); }
.start-sektion-block.pfote    .start-sektion-icon { background: color-mix(in srgb, var(--start-paw) 12%, transparent); }

.start-sektion-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--start-sage); margin-bottom: 2px; }
.start-sektion-block.motorrad .start-sektion-label { color: var(--start-red); }
.start-sektion-block.promi    .start-sektion-label { color: var(--start-bronze); }
.start-sektion-block.pfote    .start-sektion-label { color: var(--start-paw); }

.start-sektion-name { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 700; color: #2a2a2a; }

.start-sektion-mehr {
    font-size: 13px; font-weight: 600; color: var(--start-sage); white-space: nowrap;
    display: flex; align-items: center; gap: 6px; text-decoration: none;
    transition: gap var(--start-trans);
}
.start-sektion-block.motorrad .start-sektion-mehr { color: var(--start-red); }
.start-sektion-block.promi    .start-sektion-mehr { color: var(--start-bronze); }
.start-sektion-block.pfote    .start-sektion-mehr { color: var(--start-paw); }
.start-sektion-mehr:hover { gap: 10px; }

/* Grid-Override auf Startseite */
.start-sektion-block .cards-grid,
.start-sektion-block .grid-motorrad,
.start-sektion-block .grid-promi,
.start-sektion-block .grid-pfotenspur { grid-template-columns: repeat(4, 1fr); }




/* ── ZITAT-BANNER ─────────────────────────────────────────────── */
.start-zitat-banner { background: var(--start-dark); color: #e8e0d4; padding: 64px 0; text-align: center; }
.start-zitat-ornament { font-size: 32px; color: rgba(255,255,255,0.15); margin-bottom: 16px; font-family: 'Newsreader', serif; }
.start-zitat-text { font-family: 'Newsreader', serif; font-size: clamp(18px, 3vw, 26px); font-style: italic; font-weight: 300; line-height: 1.6; color: #e8e0d4; max-width: 680px; margin: 0 auto 12px; }
.start-zitat-autor { font-size: 13px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }

/* ── WIE ES FUNKTIONIERT ──────────────────────────────────────── */
.start-how-section { background: #f3f1ed; border-top: 1px solid var(--start-border); border-bottom: 1px solid var(--start-border); padding: 25px 0; }
.start-how-title { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 700; color: #2a2a2a; text-align: center; margin-bottom: 48px; }
.start-how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.start-how-step { text-align: center; }
.start-how-num { width: 44px; height: 44px; border-radius: 50%; background: var(--start-sage); color: #fff; font-family: 'Newsreader', serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.start-how-step-title { font-family: 'Newsreader', serif; font-size: 17px; font-weight: 600; color: #2a2a2a; margin-bottom: 8px; }
.start-how-step-text { font-size: 13px; color: #5a5a5a; line-height: 1.7; }

/* ── CTA ──────────────────────────────────────────────────────── */
.start-cta-section { padding: 80px 0; text-align: center; }
.start-cta-title { font-family: 'Newsreader', serif; font-size: clamp(26px, 4vw, 40px); font-weight: 300; color: #2a2a2a; margin-bottom: 12px; }
.start-cta-title em { font-style: italic; color: var(--start-sage); }
.start-cta-sub { font-size: 16px; color: #5a5a5a; margin-bottom: 32px; }
.start-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.start-btn-primary { background: var(--start-sage); color: #fff; padding: 14px 32px; border-radius: var(--start-radius); font-size: 15px; font-weight: 600; text-decoration: none; display: inline-block; transition: background var(--start-trans), transform var(--start-trans); }
.start-btn-primary:hover { background: var(--start-sage-d); transform: translateY(-2px); }

.start-btn-secondary { background: #fff; color: #2a2a2a; padding: 14px 32px; border-radius: var(--start-radius); font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; border: 1px solid var(--start-border); transition: border-color var(--start-trans), transform var(--start-trans); }
.start-btn-secondary:hover { border-color: var(--start-sage); transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.start-footer { background: #1e1c18; color: #ccc; padding: 56px 0 0; }
.start-footer-content { display: grid; grid-template-columns: 220px 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid #333; }
.start-footer-brand { font-family: 'Newsreader', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.start-footer-slogan { font-size: 13px; color: #777; font-style: italic; }
.start-footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.start-footer-col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin-bottom: 14px; }
.start-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.start-footer-links a { font-size: 14px; color: #777; text-decoration: none; transition: color var(--start-trans); }
.start-footer-links a:hover { color: #fff; }
.start-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.start-footer-copy { font-size: 13px; color: #555; }




/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { background: #1e1e1e; color: #ccc; padding: 56px 0 0; margin-top: 80px; }

.footer-content {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #333;
}

.footer-logo { height: 36px; width: auto; margin-bottom: 10px; }
.footer-logo text { fill: #ccc !important; }
.footer-logo path { fill: #ccc !important; }
.footer-slogan { font-size: 13px; color: #888; font-style: italic; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col-title { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #aaa; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: #888; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; }
.footer-copy { font-size: 13px; color: #666; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { font-size: 18px; opacity: 0.6; transition: opacity var(--transition); }
.footer-social a:hover { opacity: 1; }








/* ── ANIMATION ────────────────────────────────────────────────── */
@keyframes startFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .start-sektion-block .cards-grid,
    .start-sektion-block .grid-motorrad,
    .start-sektion-block .grid-promi,
    .start-sektion-block .grid-pfotenspur { grid-template-columns: repeat(4, 1fr); }
    
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .start-sektion-block .cards-grid,
    .start-sektion-block .grid-motorrad,
    .start-sektion-block .grid-promi,
    .start-sektion-block .grid-pfotenspur { grid-template-columns: repeat(3, 1fr); }
    .start-how-steps { grid-template-columns: repeat(2, 1fr); }
    .start-footer-content { grid-template-columns: 1fr; gap: 24px; }
    .start-footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .start-hero { padding: 52px 0 48px; }
    .start-info-box { grid-template-columns: 1fr; }
    .start-info-item { border-right: none; border-bottom: 1px solid var(--start-border); }
    .start-info-item:last-child { border-bottom: none; }
    .start-hero-stats { flex-direction: column; }
    .start-stat { border-right: none; border-bottom: 1px solid var(--start-border); }
    .start-stat:last-child { border-bottom: none; }
    .start-sektion-block .cards-grid,
    .start-sektion-block .grid-motorrad,
    .start-sektion-block .grid-promi,
    .start-sektion-block .grid-pfotenspur { grid-template-columns: repeat(1, 1fr); gap: 12px; }
    .start-how-steps { grid-template-columns: 1fr; gap: 24px; }

    .start-sektion-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    }
}


@media (max-width: 480px) {
    .footer-nav { grid-template-columns: 1fr 1fr; }
}













/* ── LIGHTBOX OVERLAY ──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;          /* ← none statt flex */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.lightbox-overlay.aktiv {
    display: flex;          /* ← flex beim Aktivieren */
    opacity: 1;
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.lightbox-schliessen {
    position: fixed;
    top: 16px;
    right: 20px;
    color: white;
    font-size: 36px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: none;
    font-family: inherit;
    opacity: 0.9;
}

.lightbox-schliessen:hover {
    opacity: 1;
}

/* Klickbar machen */
.detail-foto-wrap,
.bike-foto-wrap {
    cursor: zoom-in;
}





/* Sektion */
.bio-section { margin-bottom: 36px; }

.bio-section-title {
    font-family: 'Newsreader', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.bio-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Timeline */
.bio-timeline { list-style: none; padding-left: 24px; position: relative; }

.bio-timeline::before {
    content: '';
    position: absolute;
    left: 9px; top: 14px; bottom: 14px;
    width: 1px;
    background: var(--border-light);
}


.bio-timeline li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.bio-timeline li::before {
    content: '';
    position: absolute;
    left: -19px; top: 5px;
    width: 9px; height: 9px;
    background: var(--accent-bronze-light);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 1px var(--accent-bronze-light);
}

.timeline-year {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-bronze);
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.timeline-titel {
    font-size: 15px;
    color: var(--text-secondary);
}



.timeline-text {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Awards */
.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
}

.award-icon { font-size: 18px; flex-shrink: 0; }
.award-name { font-size: 14px; color: var(--text-primary); }
.award-year { font-size: 12px; color: var(--text-muted); }







/* ================================================================
   KONDOLENZBUCH — CSS für pforte-global.css
   ================================================================
   Einbinden in: pforte-global.css
   Gilt für alle Nachruf-Detail-Seiten
   ================================================================ */


/* ── KONDOLENZ FORMULAR ─────────────────────────────────────── */

.kondolenz-formular {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}

.kondolenz-formular-titel {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 18px;
}

.kondolenz-felder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.kondolenz-felder.drei {
    grid-template-columns: 1fr 1fr 1fr;
}

.kondolenz-feld-voll {
    grid-column: 1 / -1;
}

.kondolenz-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-secondary);
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.kondolenz-input:focus {
    outline: none;
    border-color: var(--accent-main);
    background: var(--bg-card);
}

.kondolenz-input::placeholder {
    color: var(--text-muted);
}

.kondolenz-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-secondary);
    resize: vertical;
    min-height: 110px;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.kondolenz-textarea:focus {
    outline: none;
    border-color: var(--accent-main);
    background: var(--bg-card);
}

.kondolenz-zeichenzaehler {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 4px;
    margin-bottom: 16px;
}

.kondolenz-zeichenzaehler.zu-kurz  { color: #c0392b; }
.kondolenz-zeichenzaehler.ok       { color: var(--accent-sage); }


.kondolenz-captcha-neu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    padding: 8px 8px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
    vertical-align: middle;
}
.kondolenz-captcha-neu:hover {
    border-color: var(--accent-main);
    color: var(--accent-main);
}
.kondolenz-captcha-neu-icon {
    font-size: 16px;
    display: inline-block;
    transition: transform 0.3s;
}
.kondolenz-captcha-neu:hover .kondolenz-captcha-neu-icon {
    transform: rotate(180deg);
}
















/* ── KONDOLENZ DANKE BOX ────────────────────────────────────── */
.kondolenz-danke {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 32px;
}

.kondolenz-danke-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.kondolenz-danke p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}














/* ── GRABBEIGABEN ────────────────────────────────────────────── */

.kondolenz-grabbeigaben {
    margin-bottom: 16px;
}

.kondolenz-grabbeigaben-titel {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-weight: 500;
}

.kondolenz-grabbeigaben-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.kondolenz-grabbeigabe-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 10px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    background: var(--bg-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    min-width: 56px;
}

.kondolenz-grabbeigabe-btn:hover {
    border-color: var(--accent-main);
    background: var(--bg-card);
}

.kondolenz-grabbeigabe-btn.selected {
    border-color: var(--accent-main);
    background: var(--bg-card);
    box-shadow: 0 0 0 2px var(--accent-main);
}

.kondolenz-grabbeigabe-emoji {
    font-size: 22px;
    line-height: 1;
}

.kondolenz-grabbeigabe-label {
    font-size: 10px;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}


/* ── CAPTCHA ─────────────────────────────────────────────────── */

.kondolenz-captcha-zeile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.kondolenz-captcha-box {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    padding: 8px 8px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    font-family: monospace;
    user-select: none;
    flex-shrink: 0;
}



.kondolenz-captcha-input {

    max-width: 100px;
    /* width: 120px; */
    padding: 10px 14px;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    /* text-transform: uppercase; */
    letter-spacing: 2px;
    background: var(--bg-card);
    color: var(--text-primary);
    border-color: var(--accent-main);
}

.kondolenz-captcha-input:focus {
    outline: none;
    border-color: var(--accent-main);
}

.kondolenz-captcha-hint {
    font-size: 11px;
    color: var(--text-muted);
}


/* ── HONEYPOT — VERSTECKT ────────────────────────────────────── */

.kondolenz-honeypot {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}


/* ── SUBMIT BUTTON ───────────────────────────────────────────── */

.kondolenz-submit-zeile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kondolenz-submit-btn {
    padding: 11px 24px;
    background: var(--accent-main);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}

.kondolenz-submit-btn:hover {
    opacity: 0.9;
}

.kondolenz-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.kondolenz-hinweis {
    font-size: 12px;
    color: var(--start-red);
    line-height: 1.4;
}


/* ── KONDOLENZ EINTRÄGE ─────────────────────────────────────── */

.kondolenz-liste {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kondolenz-eintrag {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: var(--shadow-card);
    transition: opacity 0.3s ease;
}

.kondolenz-eintrag-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.kondolenz-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-sage);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.kondolenz-meta {
    flex: 1;
}

.kondolenz-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.kondolenz-sub {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

.kondolenz-grabbeigabe-anzeige {
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.kondolenz-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── NEU EINGEREICHT — Wartend ──────────────────────────────── */

.kondolenz-eintrag--wartend {
    border-color: #e8c97a;
    background: #fffdf0;
    opacity: 0.85;
}

.kondolenz-wartend-hinweis {
    font-size: 11px;
    color: #a07800;
    margin-top: 10px;
    font-style: italic;
}


/* ── MOBILE ──────────────────────────────────────────────────── */

@media (max-width: 600px)
{
    .kondolenz-felder,
    .kondolenz-felder.drei {
        grid-template-columns: 1fr;
    }

    .kondolenz-submit-zeile {
        flex-direction: column;
        align-items: flex-start;
    }

    .kondolenz-submit-btn {
        width: 100%;
        text-align: center;
    }

    .kondolenz-captcha-zeile {
        flex-wrap: wrap;
    }
}

















/* ================================================================
   NACHRUF NICHT GEFUNDEN — InfoBox
   In: pforte-nachruf-global.css
   ================================================================ */

.nachruf-nicht-gefunden {
    max-width: 680px;
    margin: 10px auto 48px;
    text-align: center;
    padding: 0 20px;
}

.nachruf-nicht-gefunden-icon {
    font-size: 150px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.7;
}

.nachruf-nicht-gefunden-box {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
}

.nachruf-nicht-gefunden-titel {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.nachruf-nicht-gefunden-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.nachruf-nicht-gefunden-link {
    display: inline-block;
    padding: 10px 24px;
    background: var(--accent-main);
    color: white;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.nachruf-nicht-gefunden-link:hover {
    opacity: 0.9;
}

.nachruf-nicht-gefunden-hinweis {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
}

@media (max-width: 600px)
{
    .nachruf-nicht-gefunden-box  { padding: 24px 20px; }
    .nachruf-nicht-gefunden-titel { font-size: 18px; }
}

















/* ── VORSCHAU INFOBOX — nur für eingeloggten Ersteller ─────── */
.nachruf-vorschau-box {
    max-width: 960px;
    margin: 20px auto 28px;
    padding: 0 20px;
}

.nachruf-vorschau-box-inner {
    background: #fffdf0;
    border: 3px solid #c8a000;
    border-radius: 12px;
    padding: 22px 26px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(200, 160, 0, 0.15);
}

.nachruf-vorschau-box-icon {
    font-size: 40px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.nachruf-vorschau-box-content {
    flex: 1;
}

.nachruf-vorschau-box-titel {
    font-size: 17px;
    font-weight: 700;
    color: #a07800;
    margin-bottom: 10px;
}

.nachruf-vorschau-box-text {
    font-size: 14px;
    color: #000000;
    line-height: 1.7;
}

.nachruf-vorschau-box-text p {
    margin-bottom: 6px;
}

.nachruf-vorschau-box-text p:last-child {
    margin-bottom: 0;
}

.nachruf-vorschau-box-link {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 18px;
    background: #c8a000;
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.nachruf-vorschau-box-link:hover {
    background: #a07800;
}

@media (max-width: 600px)
{
    .nachruf-vorschau-box-inner {
        flex-direction: column;
        gap: 10px;
    }
}

/* ── NUR SIE BADGE ───────────────────────────────────────── */
.nur-sie-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    color: #888;
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 3px 10px;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    white-space: nowrap;
    animation: nur-sie-badge 1.5s ease infinite;
}

@keyframes nur-sie-badge {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}



/* ── KONDOLENZBUCH DEAKTIVIERT ──────────────────────────────── */
.kondolenz-deaktiviert {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7f5f3;
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.kondolenz-deaktiviert-icon {
    font-size: 28px;
    flex-shrink: 0;
    opacity: 0.6;
}

.kondolenz-deaktiviert-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.kondolenz-deaktiviert-text strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}






/* ── MEHR LADEN BUTTON ──────────────────────────────────────── */
.kondolenz-mehr-wrap {
    text-align: center;
    margin-top: 20px;
}

.kondolenz-mehr-btn {
    padding: 10px 24px;
    background: none;
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.kondolenz-mehr-btn:hover {
    border-color: var(--accent-main);
    color: var(--accent-main);
}

.kondolenz-mehr-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.kondolenz-mehr-anzahl {
    color: var(--text-muted);
    font-size: 12px;
    margin-left: 4px;
}













.trauer-zitat {
    text-align: center;
    font-family: 'Newsreader', serif;
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    color: var(--text-secondary);
    padding: 20px 5px;
    margin: 10px 0;
    background: linear-gradient(135deg, #fdf5f0, #f8f0f5);
    border-radius: 12px;
    border-top: 3px solid var(--accent-main);
    border-bottom: 3px solid var(--accent-main);
    position: relative;
}

.trauer-zitat::before {
    content: '„';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: var(--accent-main);
    background: var(--bg-primary);
    padding: 0 12px;
    font-style: normal;
}




.vorwort-autor {
    display: block;
    margin-top: -3px;
    font-family: 'Newsreader', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--accent-main);
    letter-spacing: 0.03em;
}











/* ── SIDEBAR WERBUNG ────────────────────────────────────────── */
.sidebar-werbung {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-top: 16px;
}

.sidebar-werbung-icon {
    font-size: 28px;
    opacity: 0.7;
}

.sidebar-werbung-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-werbung-titel {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.sidebar-werbung-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.sidebar-werbung-link {
    font-size: 14px;
    color: var(--accent-main);
    text-decoration: none;
    font-weight: 500;
}

.sidebar-werbung-link:hover {
    text-decoration: underline;
}










/* ── DETAIL LAYOUT ───────────────────────────────────────────── */
.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-muted);
    /* display: flex; */
    align-items: center;
    gap: 8px;
    /* border-bottom: 1px solid var(--border-light); */
}

.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent-main); }
.breadcrumb-sep { color: var(--accent-main); }

@media (max-width: 768px) {
    .breadcrumb {
        flex-wrap: wrap;
        row-gap: 4px;
    }
}












/* ── BOOKMARK BUTTON ─────────────────────────────────────── */
.pfo-bookmark-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s ease;
}

.pfo-bookmark-btn:hover {
    border-color: var(--accent-main);
    color: var(--accent-main);
}


/* ── BOOKMARK MODAL ──────────────────────────────────────── */
.pfo-bookmark-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pfo-bookmark-modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.pfo-bookmark-modal-titel {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pfo-bookmark-modal-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pfo-bookmark-modal-text kbd {
    display: inline-block;
    padding: 3px 10px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.pfo-bookmark-modal-close {
    padding: 10px 28px;
    background: var(--accent-main);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.2s;
}

.pfo-bookmark-modal-close:hover { opacity: 0.88; }








/* ── FAVORIT BUTTON ──────────────────────────────────────── */
.pfo-favorit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.pfo-favorit-btn:hover {
    border-color: #c0392b;
    color: #c0392b;
}

.pfo-favorit-btn.aktiv {
    border-color: #c0392b;
    color: #c0392b;
    background: #fff5f5;
}




/* ── FAVORIT HERZ AUF FOTO ───────────────────────────────── */
.pfo-favorit-foto {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.pfo-favorit-foto:hover {
    transform: scale(1.15);
    background: rgba(255,255,255,1);
}

.pfo-favorit-foto.aktiv {
    background: rgba(255,255,255,1);
}










/* ── FAVORITEN SEITE ─────────────────────────────────────── */
.favoriten-titel {
    font-family: 'Newsreader', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 8px;
}

.favoriten-untertitel {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.favoriten-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.favoriten-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: var(--shadow-card);
}

.favoriten-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.favoriten-card-icon {
    font-size: 28px;
    line-height: 1;
}

.favoriten-card-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
}

.favoriten-card-datum {
    font-size: 12px;
    color: var(--text-muted);
}

.favoriten-card-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    font-size: 11px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.favoriten-card-remove:hover {
    background: #c0392b;
    color: #fff;
    border-color: #c0392b;
}

/* Leer-Zustand */
.favoriten-leer {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.favoriten-leer-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.favoriten-leer p {
    font-size: 16px;
    margin-bottom: 20px;
}

.favoriten-leer-link {
    padding: 10px 24px;
    background: var(--accent-main);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}



/* ── FAVORITEN HINWEIS ───────────────────────────────────── */
.favoriten-hinweis {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin-bottom: 28px;
}

.favoriten-hinweis-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.favoriten-hinweis p {
    font-size: 13px;
    color: #424242;
    line-height: 1.7;
    margin: 0;
}




/* ── GOOGLE SUCHE ────────────────────────────────────────── */
.google-suche-box {
    width: 100%;
    margin-top: 20px;
}

.google-suche-link {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.google-suche-link:hover {
    border-color: #4285f4;
    color: #4285f4;
    background: rgba(66,133,244,0.05);
}











/* ── PORTRAIT TOGGLE ─────────────────────────────────────── */
.promi-portrait-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    user-select: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.promi-portrait-arrow {
    font-size: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.promi-portrait-toggle.offen .promi-portrait-arrow {
    transform: rotate(180deg);
}

.promi-portrait-inhalt {
    display: none;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.7;
}

.promi-portrait-inhalt.offen {
    display: block;
}



.promi-portrait-quelle {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: #aaa;
    text-decoration: underline;
}
.promi-portrait-quelle:hover { color: #777; }


@media (max-width: 600px) {
    .promi-orte-box { margin-top: 8px; }
}
