/* ================================================================
   nachruf-normal.css  —  Pforte.de Normaler Nachruf Bereich
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&display=swap');

/* ── VARIABLEN ───────────────────────────────────────────────── */
:root {
    --text-primary:   #2d2d2d;
    --text-secondary: #5a5a5a;
    --text-muted:     #8a8a8a;
    --bg-primary:     #fafafa;
    --bg-secondary:   #f2f2f2;
    --bg-card:        #ffffff;
    --accent-main:    #5c7a6e;
    --accent-light:   #7a9e8f;
    --accent-dark:    #3d5248;
    --accent-sage:    #5c7a6e;
    --border-light:   #e2e2e2;
    --accent-warm:    #c4956a;
    --shadow-card:    0 2px 8px rgba(0,0,0,0.07);
    --shadow-hover:   0 8px 28px rgba(0,0,0,0.13);
    --transition:     0.25s ease;
    --radius:         8px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; font-size: 16px; color: var(--text-primary); background: var(--bg-primary); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ── HEADER ──────────────────────────────────────────────────── */
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}




.logo {
    font-family: 'Newsreader', serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
}
.logo span { color: var(--accent-warm); }


/*
.logo { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 700; color: var(--text-primary); flex-shrink: 0; }
*/

.nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}

.nav-link:hover { color: var(--accent-sage); }

.btn {
    padding: 8px 8px;
    background: var(--accent-sage);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background var(--transition);
    white-space: nowrap;
}

.btn:hover { background: #6a7f6e; }

.btn {
    padding: 8px 8px;
    background: var(--accent-sage);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background var(--transition);
    white-space: nowrap;
}

.btn:hover { background: #6a7f6e; }




/* ── BURGER ──────────────────────────────────────────────────── */
/*
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
    flex-shrink: 0;
}

.burger span {
    display: block;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
*/










/* ── HERO (Startseite) ───────────────────────────────────────── */
.hero {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 56px 0 48px;
    text-align: center;
}

.hero-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; color: var(--accent-main); text-transform: uppercase; margin-bottom: 16px; }

.hero-title {
    font-family: 'Newsreader', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.hero-subtitle { font-size: 17px; color: var(--text-secondary); margin-bottom: 36px; }

.hero-stats { display: flex; justify-content: center; gap: 48px; }
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.hero-stat-num { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 700; color: var(--text-primary); }
.hero-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── HERO SMALL (Detailseite) ────────────────────────────────── */
.hero-small {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 32px 0;
    text-align: center;
}


/*
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.breadcrumb a { color: var(--accent-main); }
.breadcrumb a:hover { text-decoration: underline; }
*/


.hero-small-title { font-family: 'Newsreader', serif; font-size: 28px; font-weight: 700; color: var(--text-primary); }

/* ── MAIN ────────────────────────────────────────────────────── */
.main { padding: 48px 0 80px; }

/* ── SECTION HEADER ──────────────────────────────────────────── */
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-family: 'Newsreader', serif; font-size: 26px; font-weight: 700; color: var(--text-primary); }
.section-link { font-size: 14px; color: var(--accent-main); transition: color var(--transition); }
.section-link:hover { color: var(--accent-dark); }

/* ── CARDS GRID — 5 Spalten ──────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ── CARD-NORMAL ─────────────────────────────────────────────── */
.card-normal {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* .card-normal:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); } */

/* Trauerband oben rechts */
.card-normal::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 80px;
    height: 80px;
    background: url('/img/nachruf/trauerband.png') no-repeat center center;
    background-size: contain;
    z-index: 20;
    pointer-events: none;
}



.card-normal-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-secondary);
    border-radius: var(--radius) var(--radius) 0 0;
}

.card-normal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* transition: filter var(--transition); */
    display: block;
}

/* .card-normal:hover .card-normal-img img { filter: grayscale(60%); } */

.card-normal-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Newsreader', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-secondary);
}

.card-normal-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.card-normal-name { font-family: 'Newsreader', serif; font-size: 16px; font-weight: 700; color: var(--text-primary); line-height: 1.3; }
.card-normal-dates { font-size: 12px; color: var(--text-muted); font-style: italic; font-family: 'Newsreader', serif; }
.card-normal-age { font-size: 11px; color: var(--text-muted); }

.card-normal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.card-normal-candles { font-size: 12px; color: var(--text-secondary); }
.card-normal-link { font-size: 12px; color: var(--accent-main); font-weight: 500; }

/* ── PAGINATION ──────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 48px 0 64px; flex-wrap: wrap; }

.page-btn {
    padding: 14px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.page-btn:hover { border-color: var(--accent-main); color: var(--accent-main); background: var(--bg-secondary); }
.page-btn.disabled { opacity: 0.35; pointer-events: none; }
.page-numbers { display: flex; align-items: center; gap: 6px; }

.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.page-num:hover { border-color: var(--accent-main); color: var(--accent-main); background: var(--bg-secondary); }
.page-num.active { background: var(--accent-main); border-color: var(--accent-main); color: white; }
.page-dots { font-size: 17px; color: var(--text-muted); padding: 0 4px; user-select: none; }

/* ── DETAIL LAYOUT ───────────────────────────────────────────── */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

.detail-main { display: flex; flex-direction: column; gap: 24px; }

/* ── PROFIL CARD ─────────────────────────────────────────────── */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    position: relative;
    overflow: visible;
}



/* Detailseite — Foto mit Trauerband */
.detail-foto-wrap {
    position: relative;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    /* KEIN overflow: hidden hier! */
}

/* Trauerband als ::after auf dem Wrapper — liegt frei über dem Bild */
.detail-foto-wrap::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 80px;
    height: 80px;
    background: url('/img/nachruf/trauerband.png') no-repeat center center;
    background-size: contain;
    z-index: 10;
    pointer-events: none;
}

.detail-foto-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
    /* filter: grayscale(20%) sepia(10%); */
    filter: grayscale(100%);
    border-radius: 10px;
}



/*  height: 200px */
.profile-photo { max-width: 300px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; background: var(--bg-secondary); filter: grayscale(100%);}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-info { flex: 1; }
.profile-name { font-family: 'Newsreader', serif; font-size: 30px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; line-height: 1.2; }
.profile-dates { font-size: 15px; color: var(--text-secondary); font-family: 'Newsreader', serif; font-style: italic; margin-bottom: 4px; }
.profile-age { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }

/* ── INTERAKTIONEN ───────────────────────────────────────────── */
.interact-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px 0 0;
    border-top: 1px solid var(--border-light);
}

.inter-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 16px; background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: 8px; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-muted); min-width: 76px; text-align: center; transition: all var(--transition); user-select: none; }
.inter-btn:hover { background: var(--bg-card); border-color: var(--accent-main); color: var(--accent-main); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.inter-btn.is-active { background: var(--bg-card); border-color: var(--accent-main); color: var(--accent-main); }
.inter-emoji { font-size: 22px; transition: transform 0.25s; }
.inter-btn:hover .inter-emoji { transform: scale(1.15); }
.inter-count { font-size: 11px; color: var(--text-muted); }

/* ── CONTENT BLOCKS ──────────────────────────────────────────── */
.content-block { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 28px 32px; }

.content-block-title {
    font-family: 'Newsreader', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.bio-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 14px; }
.bio-text p:last-child { margin-bottom: 0; }
.bio-signatur { font-style: italic; color: var(--text-muted) !important; margin-top: 20px !important; }

.bestattung-grid { display: flex; flex-direction: column; gap: 10px; }
.bestattung-item { display: flex; gap: 16px; font-size: 14px; }
.bestattung-label { min-width: 80px; color: var(--text-muted); font-weight: 500; }
.bestattung-value { color: var(--text-primary); }
.family-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── KONDOLENZBUCH ───────────────────────────────────────────── */
.kondo-count { font-size: 16px; color: var(--text-muted); font-weight: 400; font-family: 'Inter', sans-serif; }

.kondo-form {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 28px;
}

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 6px; }

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent-main); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
    padding: 11px 28px;
    background: var(--accent-main);
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: background var(--transition);
}
.form-submit:hover { background: var(--accent-dark); }

.kondo-list { display: flex; flex-direction: column; gap: 14px; }

.kondo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 18px 20px;
    position: relative;
}

.kondo-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }

.kondo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Newsreader', serif;
    font-size: 16px;
    color: var(--accent-main);
    flex-shrink: 0;
}

.kondo-name { font-size: 15px; color: var(--text-primary); font-weight: 500; }
.kondo-date { font-size: 12px; color: var(--text-muted); }
.kondo-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.kondo-emoji { position: absolute; top: 16px; right: 16px; font-size: 16px; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.detail-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 88px; }

.share-box { background: var(--bg-secondary); border: 1px solid var(--border-light); border-radius: 10px; padding: 22px; }
.share-box-title { font-family: 'Newsreader', serif; font-size: 18px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.share-box-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }

.native-share-btn {
    width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: var(--accent-main);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 14px;
    transition: background var(--transition);
}
.native-share-btn:hover { background: var(--accent-dark); }

.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    color: #fff;
}
.social-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-facebook { background: #1877f2; }
.btn-whatsapp { background: #25d366; }
.btn-twitter  { background: #1da1f2; }
.btn-telegram { background: #0088cc; }
.btn-linkedin { background: #0077b5; }
.btn-email    { background: var(--bg-card); color: var(--text-secondary); border: 1px solid var(--border-light); }

.url-wrap { margin-top: 14px; }
.url-row { position: relative; margin-top: 8px; }

.url-input {
    width: 100%;
    padding: 9px 42px 9px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: border-color var(--transition);
}
.url-input:focus { outline: none; border-color: var(--accent-main); }

.url-copy-btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 30px;
    height: 26px;
    background: var(--accent-main);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background var(--transition);
}
.url-copy-btn:hover { background: var(--accent-dark); }
.url-copy-toast { font-size: 12px; color: var(--accent-main); margin-top: 6px; opacity: 0; transition: opacity 0.3s; }
.url-copy-toast.show { opacity: 1; }

.sidebar-card { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 20px 24px; }
.cta-box { text-align: center; }
.cta-box h3 { font-family: 'Newsreader', serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.cta-box p { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }

.btn-light {
    display: inline-block;
    padding: 9px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: background var(--transition);
}
.btn-light:hover { background: var(--border-light); }

.sidebar-title { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.mini-list { display: flex; flex-direction: column; gap: 12px; }
.mini-item { display: flex; gap: 12px; align-items: center; transition: opacity var(--transition); }
.mini-item:hover { opacity: 0.75; }
.mini-photo { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--bg-secondary); }
.mini-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.mini-dates { font-size: 12px; color: var(--text-muted); font-style: italic; font-family: 'Newsreader', serif; }

/* ── 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; }
*/


/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1280px) {
    .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 18px; }

    .header-inner {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    /* .logo { flex: 1; } */

    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-light);
        padding: 16px 24px 24px;
        gap: 0;
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        z-index: 150;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    }

    .nav.open { transform: translateY(0); }
    .nav-link { padding: 14px 0; border-bottom: 1px solid var(--border-light); font-size: 16px; }
    .nav-link:last-child { border-bottom: none; }

    /*
    .burger {
        display: flex !important;
        flex-direction: column !important;
        flex-shrink: 0;
        order: 2;
    }
    */

    .btn-primary { display: none !important; }

    .hero { padding: 36px 0 32px; }
    .hero-stats { gap: 24px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .profile-card { flex-direction: column; }
    .profile-photo { width: 100%; } /* height: 220px;  */
    .content-block { padding: 20px 18px; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .inter-btn { padding: 10px; min-width: 64px; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .page-btn { padding: 12px 18px; font-size: 15px; }
    .page-num  { width: 42px; height: 42px; font-size: 15px; }
    .page-dots { display: none; }


    .btn {
        padding: 8px 8px;
        background: var(--accent-sage);
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-size: 10px;
        font-weight: 500;
        transition: background var(--transition);
        white-space: nowrap;
    }


}

















.detail-zitat {
    padding: 18px 24px;
    border-left: 3px solid var(--accent-main);
    background: var(--bg-secondary);
    border-radius: 0 6px 6px 0;
    /* margin-bottom: 36px; */
}

.detail-zitat-text {
    font-family: 'Newsreader', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.detail-zitat-quelle { font-size: 13px; color: var(--accent-main); }













/* ── ORTE-BOX ─────────────────────────────────────────────── */
.normal-orte-box {
    margin-top: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.normal-orte-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.normal-orte-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
}

.normal-orte-item:first-child { padding-top: 0; }
.normal-orte-item:last-child  { border-bottom: none; padding-bottom: 0; }

.normal-orte-symbol {
    font-size: 13px;
    font-weight: 600;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    color: var(--accent-main);
    line-height: 1;
}

.normal-orte-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.normal-orte-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1;
}

.normal-orte-wert {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.normal-orte-map {
    font-size: 12px;
    color: var(--accent-main);
    font-weight: 500;
    text-decoration: none;
}

a.normal-orte-map:hover { opacity: 0.8; }

@media (max-width: 600px) {
    .normal-orte-box { margin-top: 8px; }
}




/* ── Datum + Alter in einer Zeile ─────────────────────────── */
.profile-dates {
    display: flex;
    align-items: baseline; /* ← statt center */
    gap: 12px;
}

.profile-age {
    display: inline;
    font-size: 13px;
    color: var(--text-muted);
}















/* ── BURGER ──────────────────────────────────────────────────── */
.burger { display: none; }

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .header-inner { position: relative; }

    .burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        z-index: 10;
        background: none;
        border: none;
    }

    /* .btn { display: none; } */

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-card);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        border-top: 1px solid var(--border-light);
        gap: 4px;
        z-index: 100;
    }

    .nav.open { display: flex; }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 16px;
    }

    .nav-link:last-child { border-bottom: none; }
}




