/* BLOG LAYOUT */
.blog-layout {
 display: grid;
 grid-template-columns: 1fr;
 gap: 40px;
 max-width: 1060px;
 margin: 0 auto;
 padding: 0 24px;
}
.blog-content { min-width: 0; }
.blog-sidebar-col { display: none; }

/* BLOG ARTICLE */
.blog-article h2 {
 font-family: var(--font-display);
 font-size: clamp(20px, 3vw, 26px);
 font-weight: 400;
 color: var(--stone-900);
 margin: 36px 0 14px;
 line-height: 1.3;
}
.blog-article h3 {
 font-family: var(--font-body);
 font-size: 18px;
 font-weight: 600;
 color: var(--stone-800);
 margin: 28px 0 10px;
}
.blog-article p {
 color: var(--text-secondary);
 font-size: 16px;
 line-height: 1.8;
 margin-bottom: 16px;
}
.blog-article ul, .blog-article ol {
 color: var(--text-secondary);
 font-size: 16px;
 line-height: 1.8;
 margin: 0 0 16px 20px;
 padding: 0;
}
.blog-article li { margin-bottom: 6px; }
.blog-article blockquote {
 border-left: 4px solid var(--accent);
 background: var(--stone-50);
 padding: 16px 20px;
 margin: 24px 0;
 border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.blog-article blockquote p { margin: 0; font-size: 15px; }
.blog-article a { color: var(--accent); text-decoration: underline; }
.blog-article a:hover { color: var(--accent-hover); }

/* BLOG META */
.blog-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 align-items: center;
 margin-bottom: 28px;
 font-size: 13.5px;
 color: var(--stone-500);
}
.blog-meta-cat {
 display: inline-block;
 background: var(--stone-100);
 color: var(--accent);
 font-size: 11px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 padding: 4px 10px;
 border-radius: 3px;
 text-decoration: none;
}
.blog-meta-cat:hover { background: var(--stone-200); }

/* BLOG INDEX CARDS */
.blog-list-card {
 display: block;
 background: var(--warm-white);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 24px;
 margin-bottom: 20px;
 text-decoration: none;
 transition: box-shadow 0.25s, border-color 0.25s;
}
.blog-list-card:hover {
 box-shadow: var(--shadow-md);
 border-color: var(--stone-300);
}
.blog-list-card h3 {
 font-family: var(--font-display);
 font-size: 19px;
 font-weight: 400;
 color: var(--stone-800);
 line-height: 1.35;
 margin: 8px 0 10px;
}
.blog-list-card p {
 font-size: 14.5px;
 color: var(--text-secondary);
 line-height: 1.65;
 margin: 0;
}
.blog-list-card-meta {
 font-size: 12.5px;
 color: var(--stone-500);
 margin-top: 12px;
}

/* PAGINATION */
.blog-pagination {
 display: flex;
 justify-content: center;
 gap: 8px;
 margin: 40px 0;
}
.blog-pagination a, .blog-pagination span {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-width: 40px;
 height: 40px;
 padding: 0 12px;
 border: 1px solid var(--border);
 border-radius: var(--radius);
 font-size: 14px;
 font-weight: 600;
 color: var(--stone-600);
 text-decoration: none;
 transition: all 0.2s;
}
.blog-pagination a:hover {
 border-color: var(--accent);
 color: var(--accent);
}
.blog-pagination .current {
 background: var(--accent);
 border-color: var(--accent);
 color: #fff;
}

/* SIDEBAR */
.sidebar-widget {
 background: var(--warm-white);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 20px;
 margin-bottom: 20px;
}
.sidebar-heading {
 font-family: var(--font-body);
 font-size: 13px;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.08em;
 color: var(--stone-800);
 margin: 0 0 14px;
}
.sidebar-post {
 display: block;
 padding: 8px 0;
 border-bottom: 1px solid var(--stone-100);
 text-decoration: none;
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-title {
 display: block;
 font-size: 14px;
 font-weight: 600;
 color: var(--stone-700);
 line-height: 1.4;
}
.sidebar-post:hover .sidebar-post-title { color: var(--accent); }
.sidebar-post-date {
 display: block;
 font-size: 12px;
 color: var(--stone-500);
 margin-top: 2px;
}
.sidebar-cat {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 8px 0;
 border-bottom: 1px solid var(--stone-100);
 text-decoration: none;
 font-size: 14px;
 color: var(--stone-700);
}
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat:hover { color: var(--accent); }
.sidebar-cat-count {
 background: var(--stone-100);
 color: var(--stone-600);
 font-size: 12px;
 font-weight: 600;
 padding: 2px 8px;
 border-radius: 10px;
}
.sidebar-cta {
 background: var(--stone-900);
 border-color: var(--stone-800);
}
.sidebar-cta .sidebar-heading { color: #fff; }
.sidebar-cta p {
 color: var(--stone-400);
 font-size: 14px;
 line-height: 1.6;
 margin: 0 0 14px;
}
.sidebar-cta-phone {
 display: flex;
 align-items: center;
 gap: 8px;
 color: #fff;
 font-size: 16px;
 font-weight: 600;
 text-decoration: none;
 margin-bottom: 10px;
}
.sidebar-cta-phone:hover { color: var(--stone-200); }
.sidebar-cta-btn {
 display: block;
 text-align: center;
 background: var(--accent);
 color: #fff;
 padding: 10px 16px;
 border-radius: var(--radius);
 text-decoration: none;
 font-size: 14px;
 font-weight: 600;
 transition: background 0.2s;
}
.sidebar-cta-btn:hover { background: var(--accent-hover); }

@media (min-width: 860px) {
 .blog-layout {
  grid-template-columns: 1fr 280px;
 }
 .blog-sidebar-col { display: block; }
}


/* HERO SECTION */
.hero {
 position: relative;
 background: var(--stone-800) url('/img/content/hero-fuerth.jpg') center/cover no-repeat;
 color: #fff;
 padding: 64px 0 56px;
 overflow: hidden;
}
.hero-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(135deg, rgba(28,25,23,0.88) 0%, rgba(28,25,23,0.65) 60%, rgba(28,25,23,0.4) 100%);
}
.hero-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: 32px;
 align-items: center;
 position: relative;
 z-index: 1;
}
.hero-content {
 max-width: 560px;
}
.hero-badge {
 display: inline-block;
 background: rgba(255,255,255,0.12);
 border: 1px solid rgba(255,255,255,0.2);
 color: var(--stone-200);
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 1px;
 text-transform: uppercase;
 padding: 5px 14px;
 border-radius: 100px;
 margin-bottom: 16px;
}
.hero h1 {
 font-family: var(--font-display);
 font-size: clamp(28px, 5vw, 42px);
 font-weight: 400;
 line-height: 1.2;
 margin-bottom: 16px;
}
.hero-subtitle {
 font-size: 16px;
 line-height: 1.7;
 color: var(--stone-300);
 margin-bottom: 24px;
}
.hero-cta {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
 margin-bottom: 28px;
}
.btn-ghost-light {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 10px 22px;
 border: 1px solid rgba(255,255,255,0.3);
 color: #fff;
 border-radius: var(--radius-lg);
 font-size: 14px;
 text-decoration: none;
 transition: background 0.2s;
}
.btn-ghost-light:hover {
 background: rgba(255,255,255,0.1);
}
.hero-trust {
 display: flex;
 flex-wrap: wrap;
 gap: 20px;
}
.hero-trust-item {
 display: flex;
 align-items: center;
 gap: 6px;
 font-size: 13px;
 color: var(--stone-300);
}
.hero-trust-item svg {
 color: var(--accent);
 flex-shrink: 0;
}
.hero-image {
 display: none;
 justify-content: center;
}
.hero-image img {
 width: 260px;
 height: 260px;
 object-fit: cover;
 border-radius: 50%;
 border: 4px solid rgba(255,255,255,0.15);
 box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
 .hero { padding: 80px 0 72px; }
 .hero-grid { grid-template-columns: 1fr auto; }
 .hero-image { display: flex; }
 .hero-image img { width: 300px; height: 300px; }
}
@media (min-width: 1024px) {
 .hero { padding: 96px 0 88px; }
 .hero-image img { width: 340px; height: 340px; }
}

/* PAGE HEADER WITH IMAGE */
.page-header--image {
 position: relative;
 padding: 52px 0 56px;
 overflow: hidden;
}
.page-header__bg {
 position: absolute;
 inset: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
 z-index: 0;
}
.page-header__overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, rgba(28,25,23,0.82) 0%, rgba(28,25,23,0.72) 100%);
 z-index: 1;
}
.page-header__content {
 position: relative;
 z-index: 2;
}
.page-header--image h1 {
 font-family: var(--font-display);
 font-size: clamp(26px, 4vw, 36px);
 font-weight: 400;
 color: #fff;
 line-height: 1.25;
 margin-bottom: 14px;
}
.page-header--image p {
 color: var(--stone-300);
 font-size: 16px;
 max-width: 560px;
 line-height: 1.7;
}


/* FAQ SECTION */
.faq-section {
 margin-top: 40px;
 border-top: 1px solid var(--border);
 padding-top: 8px;
}
.faq-item {
 border-bottom: 1px solid var(--stone-100);
 padding: 20px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
 font-family: var(--font-body);
 font-size: 16px;
 font-weight: 600;
 color: var(--stone-900);
 margin-bottom: 8px;
 line-height: 1.4;
}
.faq-item p {
 font-size: 15px;
 color: var(--text-secondary);
 line-height: 1.7;
 margin: 0;
}

/* CONTENT WIDTH — readable line length */
.content-wrap {
 max-width: 720px;
 margin: 0 auto;
}

/* HAMBURGER MENU */
.nav-toggle {
 display: none;
 background: none;
 border: none;
 cursor: pointer;
 padding: 8px;
 color: var(--stone-600);
}
.nav-toggle svg { display: block; }

@media (max-width: 859px) {
 .nav-toggle { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--stone-600); padding: 10px 18px; }
 .nav-links { display: none; flex-direction: column; width: 100%; gap: 0; min-width: 0; }
 .nav-links.nav-open { display: flex; }
 .nav-links a { padding: 14px 18px; border-bottom: 1px solid var(--stone-100); font-size: 15px; white-space: normal; }
 .nav-links a:last-child { border-bottom: none; }
 .site-nav { overflow: visible; -webkit-mask-image: none; mask-image: none; }
}

/* FOOTER GRID — 5-column variant when Stadtteile section present */
.footer-grid--5col {
 grid-template-columns: 1fr;
}
@media (min-width: 600px) {
 .footer-grid--5col { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
 .footer-grid--5col { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; }
}
