/* ==========================================================================
   WADIM MATSENYUK – Blog & Pages
   Design System v2 – Clean, Modern, Lesefluss-optimiert
   Brand: Petrol + Gelb + Sand | Bebas Neue + Space Grotesk
   Stand: 2026-03-09
   ========================================================================== */


/* ==========================================================================
   0. DESIGN TOKENS
   ========================================================================== */

:root {
  --bs-petrol: #1a3a3a;
  --bs-petrol-hover: #0f2424;
  --bs-petrol-light: #2c5555;
  --bs-gelb: #f3de97;
  --bs-sand: #faf6f0;
  --bs-white: #ffffff;
  --bs-text: #1a3a3a;
  --bs-text-muted: rgba(26, 58, 58, 0.65);
  --bs-text-subtle: rgba(26, 58, 58, 0.45);
  --bs-border: rgba(26, 58, 58, 0.08);
  --bs-shadow-sm: 0 1px 3px rgba(26, 58, 58, 0.06);
  --bs-shadow-md: 0 4px 16px rgba(26, 58, 58, 0.08);
  --bs-shadow-lg: 0 8px 32px rgba(26, 58, 58, 0.1);
  --bs-radius-sm: 8px;
  --bs-radius-md: 12px;
  --bs-radius-lg: 16px;
  --bs-font-body: "Space Grotesk", -apple-system, sans-serif;
  --bs-font-headline: "Bebas Neue", sans-serif;
  --bs-container: 1200px;
  --bs-content-width: 720px;
  --bs-reading-width: 680px;
  --bs-transition: 0.2s ease;
}


/* ==========================================================================
   1. BASE & TYPOGRAPHY
   ========================================================================== */

body {
  font-family: var(--bs-font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--bs-text);
  background: var(--bs-sand);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1024px) {
  body { font-size: 18px; }
}

/* Headlines: Bebas Neue for h1/h2, Space Grotesk for h3+ */
h1, h2 {
  font-family: var(--bs-font-headline);
  font-weight: 400;
  color: var(--bs-text);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

h3, h4, h5, h6 {
  font-family: var(--bs-font-body);
  font-weight: 600;
  color: var(--bs-text);
  line-height: 1.25;
}

h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; }
h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); margin-bottom: 12px; }
h4 { font-size: clamp(16px, 2vw, 18px); margin-bottom: 8px; }

/* Entry Meta (Date, Author) */
.entry-meta {
  font-size: 14px;
  color: var(--bs-text-muted);
}

.entry-meta a {
  color: var(--bs-text-muted);
  text-decoration: none;
}

/* Hide GP defaults on single posts – we use custom header + author bar */
.single .entry-header { display: none; }
.single .featured-image.page-header-image-single { display: none; }
.single footer.entry-meta { display: none; }
.single .post-navigation { display: none; }

/* Heading spacing: more above, less below (Lesefluss-Skill: Gestaltgesetz der Nähe) */
.entry-content h2 { margin-top: 56px; margin-bottom: 20px; }
.entry-content h3 { margin-top: 40px; margin-bottom: 16px; }
.entry-content h4 { margin-top: 32px; margin-bottom: 12px; }

@media (min-width: 1024px) {
  .entry-content h2 { margin-top: 72px; margin-bottom: 24px; }
  .entry-content h3 { margin-top: 48px; margin-bottom: 20px; }
}

p { margin-bottom: 1.5em; }

a {
  color: var(--bs-petrol);
  text-decoration-color: rgba(26, 58, 58, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--bs-transition);
}

a:hover {
  text-decoration-color: var(--bs-petrol);
}

strong { font-weight: 600; }


/* ==========================================================================
   2. LAYOUT
   ========================================================================== */

/* Single post content: optimale Lesebreite */
.single .entry-content,
.single .entry-header {
  max-width: var(--bs-reading-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Pages: etwas breiter */
.page .entry-content {
  max-width: var(--bs-content-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

@media (min-width: 769px) {
  .single .entry-content,
  .single .entry-header,
  .page .entry-content {
    padding: 0;
  }
}

/* Article padding */
.single .inside-article {
  padding-top: 32px;
  padding-bottom: 48px;
}

@media (min-width: 1024px) {
  .single .inside-article {
    padding-top: 48px;
    padding-bottom: 80px;
  }
}

/* GP Sidebar: versteckt */
#right-sidebar, #left-sidebar { display: none; }
.site-content { width: 100% !important; }


/* ==========================================================================
   3. HEADER & NAVIGATION (Custom bs-header)
   ========================================================================== */

.bs-header {
  background: var(--bs-sand);
  border-bottom: 1px solid var(--bs-border);
  position: sticky;
  top: 0;
  z-index: 10000;
  transition: box-shadow 0.3s ease;
}

.bs-header.bs-header-scrolled {
  box-shadow: 0 1px 8px rgba(26, 58, 58, 0.08);
}

.bs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--bs-container);
  margin: 0 auto;
}

@media (min-width: 769px) {
  .bs-header-inner { padding: 14px 40px; }
}

/* Logo */
.bs-logo {
  font-family: var(--bs-font-headline);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
  color: var(--bs-petrol);
  text-decoration: none;
}

@media (min-width: 769px) {
  .bs-logo { font-size: 24px; }
}

/* Hamburger (mobile only) */
.bs-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--bs-petrol);
  z-index: 10001;
}

.bs-menu-toggle .bs-icon-close { display: none; }
.bs-menu-toggle.is-active .bs-icon-open { display: none; }
.bs-menu-toggle.is-active .bs-icon-close { display: block; }

@media (min-width: 769px) {
  .bs-menu-toggle { display: none; }
}

/* Desktop Nav */
.bs-nav-desktop { display: none; }

@media (min-width: 769px) {
  .bs-nav-desktop {
    display: block;
    flex: 1;
    margin-left: 40px;
  }

  .bs-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .bs-menu > li > a {
    color: var(--bs-petrol);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.3px;
    padding: 8px 10px;
    white-space: nowrap;
    transition: opacity var(--bs-transition);
  }

  .bs-menu > li > a:hover,
  .bs-menu > li.current-menu-item > a {
    opacity: 0.6;
  }

  .bs-menu > li.bs-nav-cta { margin-left: auto; }

  .bs-menu > li.bs-nav-cta > a {
    background: var(--bs-gelb);
    color: var(--bs-petrol);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: var(--bs-radius-sm);
    white-space: nowrap;
    transition: opacity var(--bs-transition);
  }

  .bs-menu > li.bs-nav-cta > a:hover { opacity: 0.85; }
}

/* Mobile Overlay */
.bs-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bs-sand);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bs-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.bs-mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bs-mobile-menu-list > li > a {
  display: block;
  color: var(--bs-petrol);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 18px 0;
  border-bottom: 1px solid var(--bs-border);
  transition: opacity var(--bs-transition);
}

.bs-mobile-menu-list > li > a:hover { opacity: 0.6; }

.bs-mobile-menu-list > li.bs-nav-cta > a {
  display: inline-block;
  text-align: center;
  margin-top: 32px;
  padding: 16px 32px;
  background: var(--bs-gelb);
  color: var(--bs-petrol);
  border: none;
  border-bottom: none;
  border-radius: var(--bs-radius-sm);
  font-size: 16px;
  font-weight: 600;
}

@media (min-width: 769px) {
  .bs-mobile-menu { display: none !important; }
}


/* ==========================================================================
   4. ENTRY CONTENT (Bilder, Listen, Blockquotes)
   ========================================================================== */

.entry-content img {
  border-radius: var(--bs-radius-md);
  height: auto;
}

/* Trust-Badge-Logos: kein border-radius */
.trust-badge img,
.about-trust-badges img {
  border-radius: 0;
}

.entry-content .wp-block-image {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .entry-content .wp-block-image {
    margin-top: 56px;
    margin-bottom: 56px;
  }
}

/* Listen */
.entry-content ul,
.entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.entry-content li {
  margin-bottom: 0.6em;
  line-height: 1.55;
}

.entry-content li::marker {
  color: var(--bs-petrol-light);
}

/* Blockquote */
.entry-content blockquote {
  border-left: 3px solid var(--bs-petrol);
  margin: 40px 0;
  padding: 20px 20px 20px 32px;
  background: var(--bs-white);
  border-radius: 0 var(--bs-radius-sm) var(--bs-radius-sm) 0;
}

@media (min-width: 1024px) {
  .entry-content blockquote {
    margin: 56px 0;
    padding: 24px 32px 24px 48px;
  }
}

.entry-content blockquote p {
  font-size: 18px;
  line-height: 1.5;
  font-style: normal;
  color: var(--bs-text);
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .entry-content blockquote p { font-size: 20px; }
}

.entry-content blockquote cite {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-style: normal;
  color: var(--bs-text-muted);
}

/* Horizontal Rule */
.entry-content hr {
  border: none;
  height: 1px;
  background: var(--bs-border);
  margin: 48px 0;
}

/* Strong emphasis */
.entry-content strong {
  color: var(--bs-petrol);
}


/* ==========================================================================
   5. BUTTONS
   ========================================================================== */

.bs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--bs-font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--bs-radius-sm);
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  transition: all var(--bs-transition);
}

.bs-btn-primary {
  background: var(--bs-petrol);
  color: var(--bs-white);
}

.bs-btn-primary:hover {
  background: var(--bs-petrol-hover);
  color: var(--bs-white);
}

.bs-btn-accent {
  background: var(--bs-gelb);
  color: var(--bs-petrol);
}

.bs-btn-accent:hover { opacity: 0.85; }

.bs-btn-outline {
  background: transparent;
  color: var(--bs-petrol);
  border: 1.5px solid var(--bs-border);
}

.bs-btn-outline:hover {
  border-color: var(--bs-petrol);
}

@media (max-width: 480px) {
  .bs-btn { width: 100%; }
}


/* ==========================================================================
   6. CARDS
   ========================================================================== */

.bs-card {
  background: var(--bs-white);
  border-radius: var(--bs-radius-md);
  overflow: hidden;
  box-shadow: var(--bs-shadow-sm);
  transition: transform var(--bs-transition), box-shadow var(--bs-transition);
}

.bs-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bs-shadow-md);
}


/* ==========================================================================
   7. HIGHLIGHT MARKER
   ========================================================================== */

.bs-highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(243, 222, 151, 0.35) 60%);
  padding: 0 2px;
}


/* ==========================================================================
   8. SINGLE POST ENHANCEMENTS
   ========================================================================== */

/* ── Breadcrumbs ── */
.bs-breadcrumbs {
  max-width: var(--bs-reading-width);
  margin: 0 auto 16px;
  padding: 0 20px;
  font-size: 13px;
  color: var(--bs-text-muted);
}

.bs-breadcrumbs a {
  color: var(--bs-text-muted);
  text-decoration: none;
}

.bs-breadcrumbs a:hover { color: var(--bs-text); }

@media (min-width: 769px) {
  .bs-breadcrumbs { padding: 0; }
}

/* ── Post Header (Title + Subtitle above hero) ── */
.bs-post-header {
  max-width: var(--bs-reading-width);
  margin: 0 auto 32px;
  padding: 0 20px;
}

@media (min-width: 769px) {
  .bs-post-header { padding: 0; margin-bottom: 40px; }
}

.bs-post-title {
  font-family: var(--bs-font-headline);
  font-size: clamp(36px, 7vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--bs-text);
  margin-bottom: 16px;
}

.bs-post-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: var(--bs-petrol-light);
  margin-bottom: 12px;
}

@media (min-width: 769px) {
  .bs-post-subtitle { font-size: 18px; }
}

/* ── Post Hero (Featured Image) ── */
.bs-post-hero {
  margin: 0 auto 32px;
  max-width: var(--bs-content-width);
  padding: 0 20px;
}

.bs-post-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--bs-radius-lg);
}

@media (min-width: 769px) {
  .bs-post-hero {
    padding: 0;
    margin-bottom: 40px;
  }
}

/* ── Share Bar ── */
.bs-share-bar {
  max-width: var(--bs-reading-width);
  margin: 16px auto 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (min-width: 769px) {
  .bs-share-bar { padding: 0; }
}

.bs-share-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-text-subtle);
  margin-right: 4px;
}

.bs-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--bs-border);
  color: var(--bs-text);
  text-decoration: none;
  transition: border-color var(--bs-transition), color var(--bs-transition);
}

.bs-share-icon:hover {
  border-color: var(--bs-petrol);
  color: var(--bs-petrol);
  text-decoration: none;
}

/* ── Author Bar (LP-Style) ── */
.bs-author-bar {
  max-width: var(--bs-reading-width);
  margin: 24px auto 40px;
  padding: 0 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

@media (min-width: 769px) {
  .bs-author-bar { padding: 0; margin-top: 32px; }
}

.bs-author-bar-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: #ebebeb;
}

@media (min-width: 769px) {
  .bs-author-bar-avatar { width: 80px; height: 80px; min-width: 80px; }
}

.bs-author-bar-info { flex: 1; min-width: 0; }

.bs-author-bar-name {
  font-family: var(--bs-font-body);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 4px;
  line-height: 1.3;
}

@media (min-width: 769px) {
  .bs-author-bar-name { font-size: 20px; }
}

.bs-author-bar-credentials {
  font-size: 13px;
  color: var(--bs-text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
}

@media (min-width: 769px) {
  .bs-author-bar-credentials { font-size: 14px; }
}

/* ── Post Meta Bar (Datum + Lesezeit, im Post Header) ── */
.bs-post-meta-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--bs-text-subtle);
}

.bs-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bs-post-meta-item svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--bs-text-subtle);
}

.bs-author-bar-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--bs-text-subtle);
}

@media (min-width: 769px) {
  .bs-author-bar-trust { font-size: 13px; }
}

.bs-trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bs-trust-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-radius: 0;
}

.bs-google-stars-mini {
  display: inline-flex;
  gap: 1px;
  margin-left: 2px;
}

.bs-google-stars-mini svg {
  display: block;
}

/* ── Table of Contents ── */
.bs-toc {
  max-width: var(--bs-reading-width);
  margin: 0 auto 40px;
  padding: 0 20px;
}

.bs-toc-box {
  background: var(--bs-white);
  border-radius: var(--bs-radius-md);
  padding: 20px 24px;
  border: 1px solid var(--bs-border);
}

.bs-toc-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--bs-font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--bs-text);
}

.bs-toc-toggle svg {
  transition: transform 0.2s ease;
}

.bs-toc-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.bs-toc-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.bs-toc-list li {
  margin-bottom: 0;
}

/* H2 entries – Hauptüberschriften */
.bs-toc-list .bs-toc-h2 a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--bs-text);
  text-decoration: none;
  border-bottom: 1px solid var(--bs-border);
  transition: color var(--bs-transition);
}

.bs-toc-list .bs-toc-h2 a:hover {
  color: var(--bs-petrol);
}

/* H3 entries – Unterüberschriften, eingerückt + kleiner */
.bs-toc-list .bs-toc-h3 {
  padding-left: 20px;
}

.bs-toc-list .bs-toc-h3 a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  font-weight: 400;
  color: var(--bs-text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: color var(--bs-transition);
}

.bs-toc-list .bs-toc-h3 a:hover {
  color: var(--bs-text);
}

.bs-toc-list li:last-child a { border-bottom: none; }

/* OL inside TOC nav */
.bs-toc-list ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 769px) {
  .bs-toc { padding: 0; }
}

/* ── Author Outro (Bio + CTA combined) ── */
.bs-author-outro {
  max-width: var(--bs-reading-width);
  margin: 56px auto;
  padding: 48px 20px;
  background: var(--bs-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 769px) {
  .bs-author-outro { margin: 72px auto; padding: 56px 48px; }
}

/* Bio part */
.bs-author-outro-bio {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bs-author-outro-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: #ebebeb;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .bs-author-outro-avatar { width: 140px; height: 140px; }
}

.bs-author-outro-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bs-text-subtle);
  margin-bottom: 8px;
}

.bs-author-outro-name {
  font-family: var(--bs-font-headline);
  font-size: 24px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

@media (min-width: 769px) {
  .bs-author-outro-name { font-size: 28px; }
}

.bs-author-outro-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--bs-text-muted);
  margin-bottom: 0;
  max-width: 520px;
}

.bs-author-outro-text strong {
  color: var(--bs-text);
}

.bs-author-outro-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.bs-author-outro-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--bs-border);
  color: var(--bs-text);
  text-decoration: none;
  transition: border-color var(--bs-transition), color var(--bs-transition);
}

.bs-author-outro-social a:hover {
  border-color: var(--bs-petrol);
  color: var(--bs-petrol);
  text-decoration: none;
}

/* CTA part – natural transition */
.bs-author-outro-cta-title {
  font-family: var(--bs-font-headline);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 26px);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}

.bs-author-outro-cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--bs-border);
  max-width: 460px;
}

.bs-author-outro-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--bs-text-muted);
  margin-bottom: 24px;
}

.bs-author-outro-cta .bs-inline-optin-form {
  max-width: 380px;
  margin: 0 auto;
}

/* ── Health Disclaimer (Site Footer) ── */
.bs-health-disclaimer {
  padding: 12px 20px 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  opacity: 0.6;
}

.bs-health-disclaimer p {
  margin: 0;
}

/* ── Related Posts ── */
.bs-related-posts {
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 56px 20px;
}

.bs-related-posts h2 {
  text-align: center;
  margin-bottom: 32px;
}

.bs-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .bs-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .bs-related-grid { grid-template-columns: repeat(3, 1fr); }
  .bs-related-posts { padding: 72px 40px; }
}

.bs-related-card {
  background: var(--bs-white);
  border-radius: var(--bs-radius-md);
  overflow: hidden;
  box-shadow: var(--bs-shadow-sm);
  transition: transform var(--bs-transition), box-shadow var(--bs-transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.bs-related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bs-shadow-md);
  text-decoration: none;
  color: inherit;
}

.bs-related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.bs-related-card-body {
  padding: 20px;
}

.bs-related-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 8px;
}

.bs-related-card-body .bs-related-meta {
  font-size: 13px;
  color: var(--bs-text-subtle);
}


/* ── Reading Progress Bar ── */
.bs-progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.bs-progress-fill {
  height: 100%;
  width: 0;
  background: var(--bs-petrol-light);
  transition: width 0.1s linear;
}


/* ==========================================================================
   9. FOOTER (Custom bs-footer)
   ========================================================================== */

/* ── Trust Bar ── */
.bs-trust-section {
  background: var(--bs-white);
  padding: 28px 0;
}

.bs-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 0 24px;
}

.bs-trust-bar img {
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity var(--bs-transition);
}

.bs-trust-bar img:hover { opacity: 0.7; }

@media (max-width: 768px) {
  .bs-trust-bar { gap: 20px; }
  .bs-trust-bar img { height: 32px; }
}

/* ── Footer ── */
.bs-footer {
  background: var(--bs-petrol);
  color: var(--bs-white);
}

.bs-footer a {
  color: var(--bs-white);
  text-decoration: none;
  transition: color var(--bs-transition);
}

.bs-footer a:hover { color: rgba(255, 255, 255, 0.7); }

.bs-footer-inner {
  max-width: var(--bs-container);
  margin: 0 auto;
  padding: 48px 24px 0;
}

@media (min-width: 769px) {
  .bs-footer-inner { padding: 56px 40px 0; }
}

.bs-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 769px) {
  .bs-footer-grid {
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 48px;
  }
}

.bs-footer-brand {
  font-family: var(--bs-font-headline);
  font-size: 22px;
  letter-spacing: 2px;
  margin: 0 0 4px;
}

.bs-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 12px;
}

.bs-footer-about {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.bs-footer-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}

.bs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bs-footer-links li { margin-bottom: 10px; }

.bs-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.bs-footer-links a:hover { color: var(--bs-white); }

.bs-footer-newsletter-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
  line-height: 1.5;
}

/* ═══ FOOTER TRUST ICONS ═══ */
.bs-footer-trust-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.bs-footer-trust-icons img {
  height: 36px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
  opacity: 0.7;
}

/* ═══ FOOTER QUIZ CARD ═══ */
.bs-footer-quiz-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 20px;
}
.bs-footer-quiz-badge {
  display: inline-block;
  background: rgba(26, 58, 58, 0.08);
  color: #1a3a3a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.bs-footer-quiz-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 0 0 8px;
  line-height: 1.3;
}
.bs-footer-quiz-text {
  font-size: 13px;
  color: #5a7070;
  margin: 0 0 16px;
  line-height: 1.55;
}
.bs-footer-quiz-btn {
  display: inline-block;
  background: #f3de97;
  color: #1a3a3a !important;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 20px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: opacity .2s;
  white-space: nowrap;
}
.bs-footer-quiz-btn:hover { opacity: .85; }

.bs-footer-newsletter.bs-inline-optin-form {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.bs-footer-newsletter .bs-optin-email {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--bs-radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--bs-white);
  font-family: var(--bs-font-body);
  font-size: 14px;
  min-height: 44px;
  width: auto;
  margin-bottom: 0;
}

.bs-footer-newsletter .bs-optin-email::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.bs-footer-newsletter .bs-optin-email:focus {
  border-color: rgba(255, 255, 255, 0.4);
}

.bs-footer-newsletter .bs-footer-btn {
  background: var(--bs-gelb);
  color: var(--bs-petrol);
  font-family: var(--bs-font-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: var(--bs-radius-sm);
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  width: auto;
  display: inline-flex;
  transition: opacity var(--bs-transition);
}

.bs-footer-newsletter .bs-footer-btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .bs-footer-newsletter.bs-inline-optin-form { flex-direction: column; }
}

/* Bottom Bar */
.bs-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.bs-footer-bottom p { margin: 0; }

.bs-footer-legal { display: flex; gap: 16px; }

.bs-footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.bs-footer-legal a:hover { color: var(--bs-white); }

@media (max-width: 768px) {
  .bs-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/* ==========================================================================
   10. PAGE OVERRIDES
   ========================================================================== */

/* Hide GP page titles for pages with custom Gutenberg headers */
.page-id-279 .entry-header,
.page-id-280 .entry-header,
.page-id-281 .entry-header,
.page-id-282 .entry-header,
.page-id-169 .entry-header {
  display: none;
}

.page .inside-article {
  padding-top: 40px;
  padding-bottom: 60px;
}

@media (min-width: 1024px) {
  .page .inside-article {
    padding-top: 56px;
    padding-bottom: 80px;
  }
}


/* ==========================================================================
   11. BLOG ARCHIVE / LISTING – Clean Style (Goodman-inspired)
   ========================================================================== */

/* Container: schmale Spalte, viel Weißraum */
.blog .site-content .content-area,
.archive .site-content .content-area {
  max-width: 660px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Kein Sidebar */
.blog #right-sidebar,
.archive #right-sidebar {
  display: none;
}

/* Posts: keine Cards, keine Schatten – nur Text */
.blog .post,
.archive .post {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin-bottom: 0;
  padding: 28px 0;
  box-shadow: none;
  border-bottom: 1px solid var(--bs-border);
  transition: none;
}

.blog .post:last-child,
.archive .post:last-child {
  border-bottom: none;
}

.blog .post:hover,
.archive .post:hover {
  transform: none;
  box-shadow: none;
}

/* Beitragsbilder: nur 1x zeigen (GP gibt 2 aus), abgerundet */
.blog .post .post-image + .post-image,
.archive .post .post-image + .post-image {
  display: none;
}

.blog .post .post-image,
.archive .post .post-image {
  margin-bottom: 16px;
}

.blog .post .post-image img,
.archive .post .post-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.blog .post .inside-article,
.archive .post .inside-article {
  padding: 0;
}

@media (min-width: 768px) {
  .blog .post .inside-article,
  .archive .post .inside-article {
    padding: 0;
  }
}

/* Titel: clean, kein Bebas */
.blog .post .entry-title,
.archive .post .entry-title {
  font-family: var(--bs-font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 6px;
}

@media (min-width: 769px) {
  .blog .post .entry-title,
  .archive .post .entry-title {
    font-size: 20px;
  }
}

.blog .post .entry-title a,
.archive .post .entry-title a {
  text-decoration: none;
  color: var(--bs-text);
  transition: color var(--bs-transition);
}

.blog .post .entry-title a:hover,
.archive .post .entry-title a:hover {
  color: var(--bs-petrol-light);
}

/* Category: dezent, Bebas, über dem Titel */
.cat-links a {
  display: inline-block;
  font-family: var(--bs-font-headline);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bs-text-subtle);
  text-decoration: none;
  margin-bottom: 4px;
}

/* Read more: einfacher Pfeil-Link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--bs-petrol);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.15s ease;
}

.read-more:hover {
  gap: 10px;
  text-decoration: none;
}

/* Excerpt: gedämpft, kompakt */
.blog .entry-summary p,
.archive .entry-summary p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bs-text-muted);
  margin-bottom: 0;
}

/* Pagination clean */
.blog .nav-links,
.archive .nav-links {
  max-width: 660px;
  margin: 40px auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.blog .nav-links a,
.blog .nav-links span,
.archive .nav-links a,
.archive .nav-links span {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  color: var(--bs-text);
}

.blog .nav-links .current,
.archive .nav-links .current {
  background: var(--bs-petrol);
  color: #fff;
}

.blog .nav-links a:hover,
.archive .nav-links a:hover {
  background: rgba(26,58,58,.06);
}


/* ==========================================================================
   12. INLINE CTA (Shortcode)
   ========================================================================== */

.bs-inline-cta {
  max-width: 480px;
  margin: 48px auto;
  background: var(--bs-white);
  border-radius: var(--bs-radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--bs-shadow-md);
}

@media (min-width: 560px) {
  .bs-inline-cta { padding: 36px 32px; }
}

@media (min-width: 1024px) {
  .bs-inline-cta { margin: 64px auto; padding: 40px 36px; }
}

.bs-inline-cta .bs-optin-headline {
  font-family: var(--bs-font-headline);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 24px);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.bs-inline-cta .bs-optin-desc {
  color: var(--bs-text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.bs-inline-cta .bs-inline-optin-form {
  max-width: 360px;
  margin: 0 auto;
}


/* ==========================================================================
   13. GUTENBERG BLOCK OVERRIDES
   ========================================================================== */

/* GP Customizer outputs inline CSS AFTER our stylesheet – !important needed */
.one-container .site-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.site-main .wp-block-group__inner-container {
  padding: 0 !important;
}

.one-container .inside-article {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 769px) {
  .one-container .inside-article {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

@media (min-width: 1100px) {
  .one-container .inside-article {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 781px) {
  .wp-block-columns.is-not-stacked-on-mobile {
    flex-wrap: wrap !important;
  }
  .wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
    flex-basis: 100% !important;
  }
}

.wp-block-button__link {
  border-radius: var(--bs-radius-sm) !important;
}


/* ==========================================================================
   14. UTILITIES
   ========================================================================== */

.bs-spacer-sm { height: 40px; }
.bs-spacer-md { height: 60px; }
.bs-spacer-lg { height: 80px; }

@media (min-width: 1024px) {
  .bs-spacer-md { height: 80px; }
  .bs-spacer-lg { height: 120px; }
}

.bs-text-center { text-align: center; }
.bs-text-muted { color: var(--bs-text-muted); }
.bs-text-subtle { color: var(--bs-text-subtle); }

.entry-content,
.bs-author-bar,
.bs-toc,
.bs-author-outro,
.bs-related-posts {
  width: 100%;
  max-width: 100vw;
}


/* ==========================================================================
   15. OPTIN FORM STATES
   ========================================================================== */

.bs-optin-error {
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
  min-height: 0;
}

.bs-optin-error:not(:empty) {
  margin-top: 8px;
  margin-bottom: 4px;
}

.bs-optin-privacy {
  font-size: 12px;
  color: var(--bs-text-subtle);
  margin-top: 8px;
}

.bs-optin-privacy a {
  color: var(--bs-text-subtle);
}

/* =========================================================================
   16. PAGE OVERRIDES – Über Mich (282), Starte Hier (280), Ressourcen (281)
   ========================================================================= */

/* Shared: Hide entry-header, center content, hide sidebar */
.page-id-280 .entry-header,
.page-id-281 .entry-header,
.page-id-282 .entry-header,
.page-id-316 .entry-header { display: none; }

.page-id-280 .entry-content,
.page-id-281 .entry-content,
.page-id-282 .entry-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-id-316 .entry-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-id-280 #right-sidebar,
.page-id-281 #right-sidebar,
.page-id-282 #right-sidebar,
.page-id-316 #right-sidebar { display: none; }

.page-id-280 .site-content,
.page-id-281 .site-content,
.page-id-282 .site-content,
.page-id-316 .site-content { max-width: 100%; }

/* --- Über Mich (282) --- */
.about-portrait {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 48px auto 24px;
  background: rgba(26,58,58,.06);
  padding: 6px;
}
.about-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a3a3a;
  text-align: center;
  margin: 0 0 4px;
}
.about-tagline {
  font-size: 16px;
  color: rgba(26,58,58,.5);
  text-align: center;
  margin: 0 0 32px;
}
.about-section { margin-bottom: 0; }
.about-divider {
  border: none;
  border-top: 1px solid rgba(26,58,58,.1);
  margin: 36px 0;
}
.about-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 0 0 16px;
}
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,58,58,.7);
  margin-bottom: 16px;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.about-list li {
  padding: 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a3a3a;
  border-bottom: 1px solid rgba(26,58,58,.08);
}
.about-list li:last-child { border-bottom: none; }
.about-list-sub {
  font-weight: 400;
  font-size: 14px;
  color: rgba(26,58,58,.5);
  display: block;
  margin-top: 2px;
}
.about-trust {
  font-size: 13px;
  color: rgba(26,58,58,.45);
  text-align: center;
  margin: 20px 0 0;
  padding: 12px 16px;
  background: rgba(26,58,58,.03);
  border-radius: 6px;
  letter-spacing: .3px;
}
.about-cta-link {
  display: inline-block;
  color: #1a3a3a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid #f3de97;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.about-cta-link:hover { border-color: #1a3a3a; }

/* --- Starte Hier (280) --- */
.sh-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 48px 0 12px;
  line-height: 1.2;
}
.sh-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26,58,58,.7);
  margin-bottom: 32px;
}
.sh-divider {
  border: none;
  border-top: 1px solid rgba(26,58,58,.1);
  margin: 36px 0;
}
.sh-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 0 0 16px;
}
.sh-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,58,58,.7);
  margin-bottom: 20px;
}
.sh-article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.sh-article-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(26,58,58,.08);
}
.sh-article-list li:last-child { border-bottom: none; }
.sh-article-list a {
  color: #1a3a3a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color .2s;
}
.sh-article-list a:hover { color: rgba(26,58,58,.6); }
.sh-category {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(26,58,58,.4);
  margin: 24px 0 8px;
}
.sh-cta-box {
  background: #1a3a3a;
  color: #faf6f0;
  padding: 32px;
  border-radius: 8px;
  margin: 36px 0;
}
.sh-cta-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #faf6f0;
  margin: 0 0 8px;
}
.sh-cta-box p {
  color: rgba(250,246,240,.7);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.6;
}
.sh-cta-box a {
  display: inline-block;
  background: #f3de97;
  color: #1a3a3a;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: opacity .2s;
}
.sh-cta-box a:hover { opacity: .85; }
.sh-bottom-link {
  display: inline-block;
  color: #1a3a3a;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 2px solid #f3de97;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.sh-bottom-link:hover { border-color: #1a3a3a; }

/* --- Ressourcen (281) --- */
.res-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 48px 0 12px;
  line-height: 1.2;
}
.res-intro {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(26,58,58,.7);
  margin-bottom: 32px;
}
.res-divider {
  border: none;
  border-top: 1px solid rgba(26,58,58,.1);
  margin: 36px 0;
}
.res-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 0 0 16px;
}
.res-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,58,58,.7);
  margin-bottom: 20px;
}
.res-card {
  border: 1px solid rgba(26,58,58,.1);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color .2s;
}
.res-card:hover { border-color: rgba(26,58,58,.25); }
.res-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 0 0 6px;
}
.res-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(26,58,58,.6);
  margin: 0 0 12px;
}
.res-card .res-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(26,58,58,.4);
  background: rgba(26,58,58,.05);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.res-card-link {
  display: inline-block;
  color: #1a3a3a;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid #f3de97;
  padding-bottom: 1px;
  transition: border-color .2s;
}
.res-card-link:hover { border-color: #1a3a3a; }
.res-nl-box {
  background: #1a3a3a;
  color: #faf6f0;
  padding: 32px;
  border-radius: 8px;
  margin: 36px 0;
}
.res-nl-box h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #faf6f0;
  margin: 0 0 8px;
}
.res-nl-box p {
  color: rgba(250,246,240,.7);
  font-size: 15px;
  margin: 0 0 16px;
  line-height: 1.6;
}
.res-nl-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.res-nl-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid rgba(250,246,240,.2);
  border-radius: 6px;
  background: rgba(250,246,240,.1);
  color: #faf6f0;
  font-size: 15px;
  font-family: "Space Grotesk", sans-serif;
}
.res-nl-form input::placeholder { color: rgba(250,246,240,.5); }
.res-nl-form button {
  background: #f3de97;
  color: #1a3a3a;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  transition: opacity .2s;
  white-space: nowrap;
}
.res-nl-form button:hover { opacity: .85; }
.res-nl-msg { font-size: 14px; margin-top: 8px; }
.res-quiz-link {
  display: block;
  background: rgba(26,58,58,.03);
  border: 1px solid rgba(26,58,58,.1);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  transition: border-color .2s;
  margin-bottom: 16px;
}
.res-quiz-link:hover { border-color: rgba(26,58,58,.25); }
.res-quiz-link h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a3a3a;
  margin: 0 0 6px;
}
.res-quiz-link p {
  font-size: 15px;
  color: rgba(26,58,58,.6);
  margin: 0;
  line-height: 1.6;
}
.res-privacy {
  text-align: center;
  font-size: 14px;
  color: rgba(26,58,58,.4);
  margin-top: 24px;
}
.res-privacy a { color: rgba(26,58,58,.5); }
