/* =============================================
   DAS PERFEKTE EXPOSÉ – Lead-Butler Website
   CI: Markus Coenen | Titillium Web
   Taupe #67584d | Cyan #00a0de | Weiß | Hellgrau #e8e4e0
   ============================================= */

@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/TitilliumWeb-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/TitilliumWeb-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/TitilliumWeb-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Titillium Web';
  src: url('../fonts/TitilliumWeb-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

:root {
  --taupe: #67584d;
  --cyan: #00a0de;
  --cyan-dk: #0088be;
  --white: #ffffff;
  --offwhite: #f9f7f5;
  --grey: #e8e4e0;
  --text: #3d3330;
  --text-lt: #8a7d75;
  --gold: #c5a55a;
  --green: #4a6741;
  --font: 'Titillium Web', 'Segoe UI', system-ui, sans-serif;
  --max-w: 920px;
  --radius: 8px;
  --ease: .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 17px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cyan); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--cyan-dk); }

h1, h2, h3 { font-weight: 600; color: var(--taupe); line-height: 1.25; }
h1 { font-size: clamp(1.75rem, 4.5vw, 2.6rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.35rem, 3.2vw, 1.9rem); margin-bottom: 20px; }
h3 { font-size: clamp(1.05rem, 2.2vw, 1.25rem); margin-bottom: 10px; }
p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sec { padding: 72px 24px; }
.sec--alt { background: var(--offwhite); }
.sec--dark { background: var(--taupe); color: var(--white); }
.sec--dark h2, .sec--dark h3 { color: var(--white); }
.sec__label { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--cyan); margin-bottom: 10px; }
.sec--dark .sec__label { color: var(--gold); }
.sec--alt .sec__label { color: var(--cyan); }

/* === HEADER === */
.hd { position: fixed; top: 0; left: 0; right: 0; z-index: 900; background: rgba(255,255,255,.97); backdrop-filter: blur(8px); border-bottom: 1px solid var(--grey); transition: box-shadow var(--ease); }
.hd--scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.hd__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.hd__logo { height: 28px; width: auto; }
.hd__logo-link { display: flex; align-items: center; }

.nav { display: flex; gap: 24px; align-items: center; }
.nav a { font-size: 14px; font-weight: 600; color: var(--taupe); }
.nav a:hover { color: var(--cyan); }
.nav__cta { background: var(--cyan); color: var(--white) !important; padding: 7px 18px; border-radius: 5px; font-size: 13px !important; }
.nav__cta:hover { background: var(--cyan-dk); color: var(--white) !important; }

/* Hamburger (Pflichtstandard) */
.hamburger { z-index: 1100; position: relative; display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--taupe); margin: 6px auto; transition: transform .3s ease, opacity .3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1000; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: var(--white); z-index: 1050; padding: 72px 28px 28px; transition: right .3s ease; overflow-y: auto; }
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; padding: 13px 0; font-size: 15px; font-weight: 600; color: var(--taupe); border-bottom: 1px solid var(--grey); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu__cta { margin-top: 20px; background: var(--cyan); color: var(--white) !important; text-align: center; padding: 13px 20px !important; border-radius: 5px; border-bottom: none !important; }

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav { display: none; }
}

/* === BUTTONS === */
.btn { display: inline-block; font-family: var(--font); font-weight: 600; font-size: 16px; padding: 13px 30px; border-radius: 6px; border: none; cursor: pointer; text-align: center; transition: all var(--ease); }
.btn--p { background: var(--cyan); color: var(--white); box-shadow: 0 4px 14px rgba(0,160,222,.28); }
.btn--p:hover { background: var(--cyan-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,160,222,.38); }
.btn--s { background: transparent; color: var(--taupe); border: 2px solid var(--grey); }
.btn--s:hover { border-color: var(--taupe); color: var(--taupe); }
.btn--w { background: var(--white); color: var(--taupe); box-shadow: 0 4px 14px rgba(0,0,0,.12); }
.btn--w:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); color: var(--taupe); }
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-hint { font-size: 13px; color: var(--text-lt); margin-top: 8px; }

/* === HERO === */
.hero { padding: 110px 24px 72px; background: linear-gradient(168deg, var(--offwhite) 0%, var(--white) 100%); }
.hero__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero__visual { display: flex; justify-content: center; }
.hero__cover { max-width: 340px; width: 100%; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,.13), 0 4px 14px rgba(0,0,0,.08); }
.hero__sub { font-size: clamp(.95rem, 1.8vw, 1.1rem); color: var(--text-lt); margin: 18px 0 6px; line-height: 1.6; }
.hero__author { font-size: 14px; font-weight: 600; color: var(--taupe); margin-bottom: 26px; }
.hero__meta { display: flex; gap: 18px; margin-top: 20px; font-size: 13px; color: var(--text-lt); flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero { padding: 96px 18px 44px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .hero__visual { order: -1; }
  .hero__cover { max-width: 240px; }
  .cta-group { justify-content: center; }
  .hero__meta { justify-content: center; }
}

/* === PROBLEM === */
.problems { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 36px; }
.prob { padding: 24px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey); border-left: 3px solid var(--gold); }
.prob__icon { font-size: 26px; margin-bottom: 12px; }
.prob__text { font-size: 15px; line-height: 1.65; }
@media (max-width: 768px) { .problems { grid-template-columns: 1fr; gap: 16px; } }

/* === STEPS === */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 36px; }
.step { text-align: center; }
.step__num { width: 44px; height: 44px; border-radius: 50%; background: var(--cyan); color: var(--white); font-size: 18px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step__title { font-size: 15px; font-weight: 600; color: var(--taupe); margin-bottom: 6px; }
.step__desc { font-size: 14px; color: var(--text-lt); line-height: 1.55; }
@media (max-width: 768px) { .steps { grid-template-columns: 1fr 1fr; gap: 24px 16px; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; gap: 20px; } }

/* === AUTHOR / PROOF === */
.author { display: grid; grid-template-columns: 100px 1fr; gap: 24px; align-items: start; margin-top: 28px; padding: 28px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey); }
.author__img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 3px solid var(--grey); }
.author__name { font-size: 18px; font-weight: 600; color: var(--taupe); margin-bottom: 2px; }
.author__role { font-size: 13px; color: var(--cyan); font-weight: 600; margin-bottom: 10px; }
.author__bio { font-size: 15px; line-height: 1.6; }
.proofs { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 28px; }
.proof { text-align: center; padding: 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey); }
.proof__num { font-size: 26px; font-weight: 700; color: var(--cyan); }
.proof__label { font-size: 13px; color: var(--text-lt); margin-top: 2px; }
@media (max-width: 768px) {
  .author { grid-template-columns: 1fr; text-align: center; }
  .author__img { margin: 0 auto; }
  .proofs { grid-template-columns: 1fr; gap: 12px; }
}

/* === OFFER === */
.offer { max-width: 600px; margin: 36px auto 0; padding: 36px; background: var(--white); border-radius: var(--radius); border: 2px solid var(--cyan); text-align: center; }
.offer__title { font-size: 20px; font-weight: 600; color: var(--taupe); margin-bottom: 18px; }
.offer__list { list-style: none; text-align: left; margin-bottom: 24px; }
.offer__list li { padding: 7px 0 7px 26px; position: relative; font-size: 15px; border-bottom: 1px solid var(--offwhite); }
.offer__list li:last-child { border-bottom: none; }
.offer__list li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.prices { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.price { padding: 10px 16px; border-radius: 5px; background: var(--offwhite); font-size: 14px; }
.price strong { color: var(--taupe); }
.price--hl { background: var(--cyan); color: var(--white); }
.price--hl strong { color: var(--white); }

/* === FAQ === */
.faq-list { max-width: 680px; margin: 36px auto 0; }
.faq-item { border-bottom: 1px solid var(--grey); }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 18px 0; background: none; border: none; cursor: pointer; font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--taupe); text-align: left; line-height: 1.4; }
.faq-q:hover { color: var(--cyan); }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; margin-left: 14px; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }
.faq-a p { font-size: 15px; line-height: 1.65; }

/* === FINAL CTA === */
.final-cta { text-align: center; }
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.85); font-size: 16px; max-width: 520px; margin: 0 auto 28px; }

/* === FOOTER === */
.ft { padding: 28px 24px; background: var(--offwhite); border-top: 1px solid var(--grey); text-align: center; }
.ft__inner { max-width: var(--max-w); margin: 0 auto; }
.ft__links { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; flex-wrap: wrap; }
.ft__links a { font-size: 14px; color: var(--taupe); }
.ft__links a:hover { color: var(--cyan); }
.ft__copy { font-size: 13px; color: var(--text-lt); }

/* === COOKIE BANNER === */
.cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000; background: var(--white); border-top: 1px solid var(--grey); box-shadow: 0 -4px 20px rgba(0,0,0,.08); padding: 18px 24px; display: none; }
.cookie.show { display: block; }
.cookie__inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cookie__text { flex: 1; font-size: 14px; min-width: 200px; }
.cookie__text a { text-decoration: underline; }
.cookie__btns { display: flex; gap: 8px; }
.cookie__btn { font-family: var(--font); font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 5px; border: none; cursor: pointer; transition: all var(--ease); }
.cookie__btn--yes { background: var(--cyan); color: var(--white); }
.cookie__btn--yes:hover { background: var(--cyan-dk); }
.cookie__btn--no { background: var(--offwhite); color: var(--taupe); border: 1px solid var(--grey); }
.cookie__btn--no:hover { border-color: var(--taupe); }

/* === LEGAL PAGES === */
.legal { padding: 96px 24px 56px; min-height: 65vh; }
.legal .container { max-width: 680px; }
.legal h1 { margin-bottom: 28px; }
.legal h2 { font-size: 1.25rem; margin-top: 28px; margin-bottom: 10px; }
.legal h3 { font-size: 1.05rem; margin-top: 18px; margin-bottom: 6px; }
.legal p, .legal li { font-size: 15px; }
.legal ul { padding-left: 20px; margin-bottom: 14px; }
.legal li { margin-bottom: 5px; }
.about-grid { display: grid; grid-template-columns: 180px 1fr; gap: 28px; align-items: start; margin-bottom: 28px; }
.about-img { width: 180px; border-radius: var(--radius); box-shadow: 0 4px 14px rgba(0,0,0,.1); }
@media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; text-align: center; } .about-img { margin: 0 auto; width: 150px; } }

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal--left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal--right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal--scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal.visible,
.reveal--left.visible,
.reveal--right.visible,
.reveal--scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.reveal-stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: .1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: .2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: .3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: .4s; }
.reveal-stagger.visible > * { opacity: 1; transform: none; }

/* Hover lift for cards */
.prob, .proof, .step {
  transition: transform .25s ease, box-shadow .25s ease;
}
.prob:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.proof:hover, .step:hover {
  transform: translateY(-3px);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right, .reveal--scale,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* === MAGAZIN GRID === */
.mag-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.mag-card {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mag-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}
.mag-card__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 8px;
}
.mag-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--taupe);
  margin-bottom: 10px;
  line-height: 1.35;
}
.mag-card__title a { color: var(--taupe); }
.mag-card__title a:hover { color: var(--cyan); }
.mag-card__teaser {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-lt);
}
@media (max-width: 640px) { .mag-grid { grid-template-columns: 1fr; } }

/* === BLOG ARTICLE === */
.article { padding: 96px 24px 56px; }
.article .container { max-width: 720px; }
.article__meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-lt); margin-bottom: 28px; align-items: center; }
.article__meta a { color: var(--cyan); }
.article h1 { margin-bottom: 18px; }
.article h2 { margin-top: 36px; margin-bottom: 14px; }
.article h3 { margin-top: 24px; margin-bottom: 8px; }
.article p, .article li { font-size: 16px; line-height: 1.72; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 16px; }
.article li { margin-bottom: 6px; }
.article blockquote { border-left: 3px solid var(--cyan); margin: 24px 0; padding: 12px 20px; background: var(--offwhite); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--text-lt); }

/* Table of Contents */
.toc {
  background: var(--offwhite);
  border-left: 3px solid var(--cyan);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0 36px;
}
.toc__title { font-size: 13px; font-weight: 600; color: var(--taupe); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.toc ol { list-style: decimal; padding-left: 20px; margin: 0; }
.toc li { padding: 4px 0; font-size: 14px; line-height: 1.5; }
.toc a { color: var(--cyan); text-decoration: none; }
.toc a:hover { text-decoration: underline; }

/* Blog Author Box */
.blog-author {
  display: flex; gap: 18px; align-items: center;
  padding: 24px; margin: 36px 0;
  background: var(--offwhite); border-radius: var(--radius); border: 1px solid var(--grey);
}
.blog-author__img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.blog-author__name { font-size: 15px; font-weight: 600; color: var(--taupe); }
.blog-author__role { font-size: 13px; color: var(--cyan); font-weight: 600; }
.blog-author__bio { font-size: 14px; color: var(--text-lt); line-height: 1.5; margin-top: 4px; }
@media (max-width: 480px) { .blog-author { flex-direction: column; text-align: center; } }

/* Blog CTA Box */
.blog-cta {
  text-align: center; padding: 32px 28px; margin: 36px 0;
  background: var(--offwhite); border: 2px solid var(--cyan); border-radius: var(--radius);
}
.blog-cta p { font-size: 16px; margin-bottom: 18px; }

/* Blog FAQ */
.blog-faq { margin-top: 36px; }
.blog-faq h2 { margin-bottom: 8px; }

/* Comparison Table */
.cmp-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.cmp-table th { background: var(--taupe); color: var(--white); font-weight: 600; padding: 10px 14px; text-align: left; }
.cmp-table td { padding: 10px 14px; border-bottom: 1px solid var(--grey); }
.cmp-table tr:nth-child(even) td { background: var(--offwhite); }
@media (max-width: 600px) { .cmp-table { font-size: 12px; } .cmp-table th, .cmp-table td { padding: 8px 8px; } }

/* === PRESSE === */
.presse-hero { padding: 96px 24px 36px; background: var(--offwhite); text-align: center; }
.presse-hero h1 { margin-bottom: 14px; }
.presse-hero p { max-width: 600px; margin: 0 auto; font-size: 16px; line-height: 1.7; color: var(--text-lt); }

.presse-liste { padding: 48px 24px 24px; }
.presse-karte {
  padding: 28px; margin-bottom: 24px;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey);
  border-top: 3px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.presse-karte:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); border-top-color: var(--cyan); }
.presse-karte time { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-lt); }
.presse-karte h2 { font-size: 1.15rem; margin: 8px 0 10px; line-height: 1.35; }
.presse-karte p { font-size: 15px; line-height: 1.6; color: var(--text-lt); margin-bottom: 16px; }
.presse-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.presse-assets { padding: 48px 24px; background: var(--offwhite); }
.presse-assets h2 { margin-bottom: 8px; }
.presse-assets > .container > p { font-size: 15px; color: var(--text-lt); margin-bottom: 28px; }
.assets-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 640px) { .assets-grid { grid-template-columns: 1fr; } }
.asset-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--grey);
  padding: 20px; text-align: center;
}
.asset-card img { width: 100%; max-height: 220px; object-fit: contain; background: var(--offwhite); border-radius: 4px; margin-bottom: 14px; padding: 8px; }
.asset-info { margin-bottom: 14px; }
.asset-info strong { display: block; font-size: 15px; color: var(--taupe); }
.asset-info span { font-size: 13px; color: var(--text-lt); }
.asset-downloads { display: flex; gap: 8px; justify-content: center; }
.asset-placeholder {
  width: 100%; min-height: 160px; display: flex; align-items: center; justify-content: center;
  border: 2px dashed var(--grey); border-radius: 4px; color: var(--text-lt); font-size: 14px;
  text-align: center; padding: 20px; margin-bottom: 14px; background: var(--offwhite);
}

.presse-kontakt-sektion { padding: 48px 24px; }
.kontakt-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }
.kontakt-box { background: var(--offwhite); border-radius: var(--radius); padding: 24px; }
.kontakt-box h2 { font-size: 1.1rem; margin-bottom: 12px; }
.kontakt-box p { margin-bottom: 0; font-size: 15px; line-height: 1.7; }

/* Presse Detail */
.presse-detail { padding: 96px 24px 56px; }
.presse-detail .container { max-width: 720px; }
.presse-header { margin-bottom: 28px; }
.presse-zurueck { font-size: 14px; color: var(--cyan); display: inline-block; margin-bottom: 16px; }
.presse-zurueck:hover { color: var(--cyan-dk); }
.presse-header time { font-size: 13px; color: var(--text-lt); display: block; margin-bottom: 8px; }
.presse-header h1 { margin-bottom: 0; }

.presse-downloads-top, .presse-downloads-bottom { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0; }
.presse-inhalt { margin: 28px 0; }
.presse-inhalt p { font-size: 16px; line-height: 1.72; margin-bottom: 16px; }

.presse-zitat {
  border-left: 3px solid var(--cyan); padding: 16px 24px; margin: 24px 0;
  background: var(--offwhite); border-radius: 0 var(--radius) var(--radius) 0;
}
.presse-zitat p { font-style: italic; font-size: 1.05rem; line-height: 1.6; margin-bottom: 8px; }
.presse-zitat cite { font-style: normal; font-size: 14px; color: var(--text-lt); display: block; }

.presse-boilerplate {
  background: var(--offwhite); border-radius: var(--radius); padding: 20px 24px;
  margin: 32px 0 24px; border-top: 2px solid var(--cyan);
}
.presse-boilerplate h3 { font-size: 15px; margin-bottom: 8px; }
.presse-boilerplate p { font-size: 14px; line-height: 1.6; color: var(--text-lt); }

.presse-kontakt { margin-top: 24px; padding: 20px 24px; background: var(--offwhite); border-radius: var(--radius); }
.presse-kontakt h3 { font-size: 15px; margin-bottom: 8px; }
.presse-kontakt p { font-size: 14px; line-height: 1.7; }

/* Small button variant */
.btn-sm { font-size: 13px !important; padding: 8px 16px !important; }

/* === TEXT CENTER UTILITY === */
.tc { text-align: center; }
