*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green:  #2e7d32;
    --green-light: #4caf50;
    --bg:     #f5f5f0;
    --white:  #ffffff;
    --text:   #1a1a1a;
    --muted:  #666;
    --border: #ddd;
    --radius: 8px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--white);
}
.nav-logo-img {
    height: 36px;
    width: auto;
    background: white;
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}
.nav-brand { display: flex; flex-direction: column; gap: 0; }
.nav-brand-name { font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-brand-sub { font-size: 0.68rem; color: rgba(255,255,255,0.65); font-weight: 400; letter-spacing: 0.03em; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; }
.nav-links a { color: var(--white); text-decoration: none; font-size: 0.95rem; opacity: 0.9; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* DROPDOWN */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; }
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: var(--green);
    border-top: 2px solid rgba(255,255,255,0.2);
    min-width: 200px;
    list-style: none;
    z-index: 200;
}
.dropdown-menu li a { display: block; padding: 0.6rem 1rem; white-space: nowrap; }
.dropdown-menu li a:hover { background: rgba(255,255,255,0.1); }
.dropdown:hover .dropdown-menu { display: block; }

/* MAIN */
.main-content { flex: 1; padding: 2rem 1rem; max-width: 1100px; margin: 0 auto; width: 100%; }
.main-content:has(.hero-full) { padding-top: 0; padding-bottom: 0; }

/* FULL BLEED */
.full-bleed {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
body { overflow-x: hidden; }

/* HERO (alt) */
.hero { background: var(--green); color: var(--white); text-align: center; padding: 5rem 2rem; border-radius: var(--radius); margin-bottom: 3rem; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.hero p  { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2rem; }

/* HERO FULL */
.hero-full { background: linear-gradient(150deg, #1b5e20 0%, #388e3c 100%); color: var(--white); padding: 8rem 2rem 7rem; text-align: center; margin-bottom: 0; }
.hero-full h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero-full p  { font-size: 1.2rem; opacity: 0.85; margin-bottom: 2.5rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.btn-hero { display: inline-block; padding: 1rem 2.5rem; background: var(--white); color: var(--green); border-radius: var(--radius); text-decoration: none; font-weight: 700; font-size: 1rem; transition: transform 0.2s, box-shadow 0.2s; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

/* STATEMENT */
.statement-section { background: #111; padding: 6rem 2rem; text-align: center; margin-bottom: 0; }
.statement-inner { max-width: 780px; margin: 0 auto; }
.statement-quote { font-size: 1.85rem; font-weight: 300; line-height: 1.5; font-style: italic; color: rgba(255,255,255,0.92); margin-bottom: 1.5rem; }
.statement-sub { font-size: 1rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* CONTENT BLOCKS */
.content-block { display: grid; grid-template-columns: 1fr 1fr; min-height: clamp(320px, 40vw, 560px); margin-bottom: 0; }
.content-block.reverse .content-block-image { order: 2; }
.content-block.reverse .content-block-text  { order: 1; }
.content-block-image { background-size: cover; background-position: center; min-height: 0; }
.cb-img-1 { background: linear-gradient(135deg, #1b5e20 0%, #4caf50 100%); }
.cb-img-2 { background: linear-gradient(135deg, #37474f 0%, #78909c 100%); }
.cb-img-3 { background: linear-gradient(135deg, #2e7d32 0%, #66bb6a 100%); }
.cb-img-4 { background: linear-gradient(135deg, #263238 0%, #546e7a 100%); }
.content-block-text {
    container-type: inline-size;
    display: flex;
    align-items: center;
    background: var(--white);
}
.cbt-inner {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.block-label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); font-weight: 700; margin-bottom: 0.75rem; }
.cbt-inner h2 { font-size: 1.6rem; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 0.75rem; }
.cbt-inner p  { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; font-size: 0.95rem; }

/* Container queries: Text skaliert mit Kachelbreite */
@container (max-width: 400px) {
    .cbt-inner { padding: 2rem 1.5rem; }
    .cbt-inner h2 { font-size: 1.15rem; }
    .cbt-inner p  { font-size: 0.85rem; }
    .block-label  { font-size: 0.65rem; }
}
@container (min-width: 401px) and (max-width: 560px) {
    .cbt-inner { padding: 2.5rem 2rem; }
    .cbt-inner h2 { font-size: 1.35rem; }
    .cbt-inner p  { font-size: 0.9rem; }
}
.btn-link { color: var(--green); font-weight: 700; text-decoration: none; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.3rem; align-self: flex-start; transition: gap 0.2s; }
.btn-link:hover { gap: 0.6rem; }

/* BUTTONS */
.btn { display: inline-block; padding: 0.75rem 2rem; background: var(--white); color: var(--green); border-radius: var(--radius); text-decoration: none; font-weight: 700; transition: transform 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: var(--white); border: 2px solid var(--white); }

/* SECTIONS */
.section { margin-bottom: 3rem; }
.section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; color: var(--green); }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.card h3 { margin-bottom: 0.5rem; color: var(--green); }
.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.card a { color: var(--green); text-decoration: none; font-weight: 600; }

/* BLOG */
.post-meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.5rem; }
.post-content { line-height: 1.8; }

/* FORMS */
.form-box { background: var(--white); border-radius: var(--radius); padding: 2rem; max-width: 450px; margin: 0 auto; border: 1px solid var(--border); }
.form-box h2 { margin-bottom: 1.5rem; color: var(--green); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.3rem; font-weight: 600; }
.form-group input, .form-group textarea { width: 100%; padding: 0.6rem 0.8rem; border: 1px solid var(--border); border-radius: var(--radius); font-size: 1rem; font-family: inherit; }
.form-group textarea { min-height: 120px; resize: vertical; }
.error { color: #c0392b; margin-bottom: 1rem; font-size: 0.9rem; }

/* DASHBOARD */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.dashboard-section { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.dashboard-section h3 { color: var(--green); margin-bottom: 1rem; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.6rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
th { font-weight: 700; color: var(--muted); }
.btn-small { padding: 0.3rem 0.8rem; font-size: 0.8rem; background: #c0392b; color: white; border: none; border-radius: var(--radius); cursor: pointer; }

/* FOOTER */
footer { background: var(--green); color: var(--white); text-align: center; padding: 1.5rem; margin-top: auto; }
.footer-inner { opacity: 0.85; font-size: 0.9rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .nav-toggle { display: block; }
    .nav-toggle { display: block; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: var(--green); padding: 1rem 2rem; gap: 1rem; }
    .nav-links.open { display: flex; }
    .dropdown-menu { position: static; border-top: none; padding-left: 1rem; }
    .hero-full { padding: 5rem 1.5rem 4rem; }
    .hero-full h1 { font-size: 2rem; }
    .hero-full p  { font-size: 1rem; }
    .hero h1 { font-size: 1.8rem; }
    .statement-section { padding: 4rem 1.5rem; }
    .statement-quote { font-size: 1.3rem; }
    .content-block { grid-template-columns: 1fr; min-height: auto; }
    .content-block.reverse .content-block-image,
    .content-block.reverse .content-block-text { order: unset; }
    .content-block-image { min-height: 260px; }
    .cbt-inner { padding: 2rem 1.5rem; max-width: 100%; }
    .cbt-inner h2 { font-size: 1.35rem; }
    .cbt-inner p  { font-size: 0.9rem; }
    .dashboard-grid { grid-template-columns: 1fr; }
}

/* ===== PROJEKTE SEITE ===== */
.main-content:has(.hero-portfolio) { padding-top: 0; }

.hero-portfolio {
    background: linear-gradient(150deg, #1b5e20 0%, #388e3c 100%);
    color: var(--white);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    margin-bottom: 3rem;
}
.hero-portfolio h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.hero-portfolio p  { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

.projekte-section { margin-bottom: 4rem; }

.projekt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.projekt-kachel {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}
.projekt-kachel:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

.projekt-kachel-bild { height: 195px; }
.pk-img-1 { background: linear-gradient(135deg, #1b5e20 0%, #4caf50 100%); }
.pk-img-2 { background: linear-gradient(135deg, #37474f 0%, #78909c 100%); }
.pk-img-3 { background: linear-gradient(135deg, #2e7d32 0%, #81c784 100%); }
.pk-img-4 { background: linear-gradient(135deg, #004d40 0%, #26a69a 100%); }
.pk-img-5 { background: linear-gradient(135deg, #1a237e 0%, #5c6bc0 100%); }
.pk-img-6 { background: linear-gradient(135deg, #263238 0%, #607d8b 100%); }

.projekt-kachel-inhalt {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.projekt-kachel-inhalt h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 0.6rem;
}
.projekt-kachel-inhalt p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.1rem;
    flex: 1;
}
.pk-link {
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    align-self: flex-start;
}
.pk-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .projekt-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-portfolio h1 { font-size: 2rem; }
}
@media (max-width: 560px) {
    .projekt-grid { grid-template-columns: 1fr; }
}

/* ===== REDESIGN v3 (2026-06-12) ===== */

/* Weißer Body */
body { background: #fff; }

/* TOP BAR */
.top-bar {
    background: var(--green);
    color: rgba(255,255,255,0.9);
    text-align: center;
    padding: 0.45rem 2rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}
.top-bar a { color: rgba(255,255,255,0.85); text-decoration: none; margin: 0 0.6rem; }
.top-bar a:hover { color: #fff; }
.top-bar span { opacity: 0.4; }

/* NAVBAR – weiß */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.nav-logo { color: var(--text); }
.nav-brand-name { color: var(--text); }
.nav-brand-sub { color: var(--muted); }
.nav-links a { color: #333; opacity: 1; }
.nav-links a:hover { color: var(--green); }
.nav-toggle { color: var(--text); }
.dropdown-menu { background: #fff; border-top: 2px solid var(--green); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.dropdown-menu li a { color: #333; }
.dropdown-menu li a:hover { background: #f5f5f5; color: var(--green); }

/* Kontakt-Button in Navbar */
.nav-contact-btn {
    background: var(--green) !important;
    color: #fff !important;
    padding: 0.4rem 1.2rem !important;
    border-radius: var(--radius);
    opacity: 1 !important;
    font-weight: 700;
}
.nav-contact-btn:hover { background: var(--green-light) !important; color: #fff !important; }

/* HERO FOTO */
.hero-photo-wrap { width: 100%; line-height: 0; overflow: hidden; }
.hero-photo { width: 100%; height: 68vh; object-fit: cover; object-position: center 40%; display: block; }

/* INTRO */
.intro-section {
    text-align: center;
    padding: 4rem 2rem 3.5rem;
    max-width: 820px;
    margin: 0 auto;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
}
.intro-section h1 { font-size: 2.2rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.intro-section p { font-size: 1.05rem; color: var(--muted); line-height: 1.85; }

/* Aktuell-Section */
.aktuell-section { padding: 3rem 0; }

/* Mobile Anpassungen für weiße Navbar */
@media (max-width: 900px) {
    .nav-links { background: #fff; border-top: 1px solid #eee; }
    .nav-links a { color: #333; }
    .dropdown-menu { background: #f9f9f9; box-shadow: none; }
    .hero-photo { height: 45vw; min-height: 220px; }
}

/* ===== COOKIE CONSENT ===== */
#cc-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 900;
}
#cc-overlay.cc-visible { display: block; }

#cc-banner {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 3px solid var(--green);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    z-index: 950;
    padding: 1.4rem 2rem;
}
#cc-banner.cc-visible { display: block; }

.cc-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cc-banner-text { flex: 1; min-width: 220px; }
.cc-banner-text h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.3rem; }
.cc-banner-text p  { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.cc-banner-text a  { color: var(--green); }

.cc-banner-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.cc-btn-primary {
    background: var(--green); color: #fff;
    border: none; border-radius: var(--radius);
    padding: 0.6rem 1.4rem; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; white-space: nowrap;
}
.cc-btn-primary:hover { background: var(--green-light); }
.cc-btn-outline {
    background: #fff; color: var(--green);
    border: 2px solid var(--green); border-radius: var(--radius);
    padding: 0.55rem 1.2rem; font-size: 0.9rem; font-weight: 700;
    cursor: pointer; white-space: nowrap;
}
.cc-btn-outline:hover { background: #f0f7f0; }
.cc-btn-link {
    background: none; border: none; color: var(--muted);
    font-size: 0.85rem; cursor: pointer; text-decoration: underline;
    padding: 0.3rem 0;
}
.cc-btn-link:hover { color: var(--green); }

/* MODAL */
#cc-modal {
    display: none;
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    z-index: 1000;
    width: 90%; max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}
#cc-modal.cc-visible { display: block; }
#cc-modal h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
#cc-modal > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }

.cc-category {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    margin-bottom: 0.75rem;
}
.cc-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.3rem;
}
.cc-category-header strong { font-size: 0.95rem; color: var(--text); }
.cc-category p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Toggle Switch */
.cc-toggle { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.cc-toggle input { opacity: 0; width: 0; height: 0; }
.cc-slider {
    position: absolute; inset: 0;
    background: #ccc; border-radius: 24px; cursor: pointer;
    transition: background 0.2s;
}
.cc-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; top: 3px;
    background: #fff; border-radius: 50%;
    transition: transform 0.2s;
}
.cc-toggle input:checked + .cc-slider { background: var(--green); }
.cc-toggle input:checked + .cc-slider::before { transform: translateX(18px); }
.cc-toggle input:disabled + .cc-slider { opacity: 0.6; cursor: not-allowed; }

.cc-modal-btns {
    display: flex; gap: 0.75rem; margin-top: 1.5rem; justify-content: flex-end;
}

@media (max-width: 600px) {
    .cc-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cc-banner-btns { width: 100%; }
    .cc-btn-primary, .cc-btn-outline { flex: 1; text-align: center; }
}

/* Cookie-Tabelle im Modal */
.cc-cookie-table-wrap {
    margin-top: 0.75rem;
    overflow-x: auto;
}
.cc-cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}
.cc-cookie-table th {
    background: #f5f5f0;
    color: var(--muted);
    font-weight: 700;
    padding: 0.4rem 0.6rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
.cc-cookie-table td {
    padding: 0.4rem 0.6rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: top;
    color: var(--text);
}
.cc-cookie-table code {
    background: #f0f0f0;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-family: monospace;
}

/* ===== DASHBOARD KACHELN ===== */
.db-kacheln {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.db-kachel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.db-kachel:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    border-color: var(--green);
}
.db-kachel-icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}
.db-kachel-zahl {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}
.db-kachel-label {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.2rem;
    line-height: 1.3;
}

/* Stat-Boxen */
.db-stat-box {
    background: #f5f5f0;
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}
.db-stat-zahl {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
}
.db-stat-label {
    font-size: 0.8rem;
    color: var(--muted);
}

@media (max-width: 600px) {
    .db-kacheln { grid-template-columns: repeat(2, 1fr); }
}

/* ===== DASHBOARD MODAL ===== */
.db-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 800;
}
.db-overlay.db-overlay-active { display: block; }

.db-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 12px 48px rgba(0,0,0,0.22);
    z-index: 900;
    width: 92%;
    max-width: 680px;
    max-height: 85vh;
    overflow: hidden;
    flex-direction: column;
}
.db-modal.db-modal-active {
    display: flex;
}
.db-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.db-modal-header h3 { margin: 0; color: var(--text); font-size: 1.1rem; }
.db-modal-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--muted);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius);
    transition: background 0.15s;
}
.db-modal-close:hover { background: #f0f0f0; color: var(--text); }
.db-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

/* Kacheln als Buttons */
.db-kachel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    width: 100%;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.db-kachel:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    border-color: var(--green);
}

/* Alle ablehnen Button */
.cc-btn-reject {
    border-color: #999 !important;
    color: #666 !important;
}
.cc-btn-reject:hover { background: #f5f5f5 !important; }

/* ── Tag / Themen Styles ────────────────────────────────── */
.tag-pill {
    display: inline-block;
    padding: 0.18rem 0.6rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}
.tag-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.8rem;
}
.tag-filter-link {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    border: 2px solid #ddd;
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
}
.tag-filter-link:hover {
    border-color: var(--green);
    color: var(--green);
}
.tag-filter-link.active {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn-danger { background:#c62828; color:#fff; border-color:#c62828; }
.btn-danger:hover { background:#b71c1c; }
