@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');

:root {
  --bg: #F1F2F4;
  --card: #FFFFFF;
  --ink: #2B2F36;
  --border: #364154;
  --title-blue: #2C6091;
  --star: #F2BC41;
  --badge-bg-start: #D7E9FA;
  --badge-bg-end: #B9D5EE;
  --badge-text: #2E6690;
  --cta-green: #5ECD8B;
  --cta-green-dark: #48B476;
  --link-blue: #2E6ACB;
  --ribbon-blue: #2F6FED;
  --meta: #5B6472;
  --line: #E3E6EB;
  --panel-pink: #FEF9FB;
  --sans: 'Open Sans', -apple-system, sans-serif;
}

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

html {
  height: 100%;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Inner pages (blog/ratgeber etc) use white body bg matching blog (12).html */
body.inner-page {
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--link-blue);
  text-decoration: none;
}

/* ---- site nav (overlay on hero / default nav) ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.08);
  padding: 14px 48px;
}

/* ---- Inner Pages Site Header (matches HTML/blog (12).html exact) ---- */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  width: 100%;
}

.hero-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--title-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.hero-links,
.hero-links ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.hero-links li {
  position: relative;
  list-style: none;
}

.hero-links a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: color .25s ease;
}

.hero-links a:hover,
.hero-links .current-menu-item > a,
.hero-links .current_page_item > a {
  color: var(--link-blue);
}

/* WordPress Sub-menus / Dropdowns for inner-page header (.hero-links) */
.hero-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
}

.hero-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-links .sub-menu li {
  width: 100%;
}

.hero-links .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--ink) !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero-links .sub-menu a:hover {
  background: var(--panel-pink);
  color: var(--link-blue) !important;
}

.site-header .nav-toggle span,
.site-header .nav-toggle span::before,
.site-header .nav-toggle span::after {
  background: var(--ink) !important;
  box-shadow: none !important;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .35));
  transition: filter .25s ease;
}

.site-nav.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
  transition: color .25s ease, text-shadow .25s ease;
}

.site-nav.scrolled .nav-links a,
.site-nav-inner:not(.scrolled) .nav-links a {
  color: var(--ink);
  text-shadow: none;
}

.nav-links a:hover,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
  color: var(--link-blue);
  text-shadow: none;
}

/* WordPress Sub-menus / Dropdowns */
.nav-links .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 100;
}

.nav-links li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links .sub-menu li {
  width: 100%;
}

.nav-links .sub-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--ink) !important;
  text-shadow: none !important;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-links .sub-menu a:hover {
  background: var(--panel-pink);
  color: var(--link-blue) !important;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 24px;
  height: 2.5px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
  border-radius: 2px;
  position: relative;
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease, top .25s ease;
}

.nav-toggle span::before { position: absolute; top: -8px; }
.nav-toggle span::after { position: absolute; top: 8px; }

.site-nav.scrolled .nav-toggle span,
.site-nav.scrolled .nav-toggle span::before,
.site-nav.scrolled .nav-toggle span::after {
  background: var(--ink);
  box-shadow: none;
}

/* Cross (X) icon state when mobile menu is open */
.nav-toggle.open span,
.nav-toggle[aria-expanded="true"] span {
  background: transparent !important;
  box-shadow: none !important;
}

.nav-toggle.open span::before,
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.open span::after,
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media(max-width: 860px) {
  .site-nav, .hero-nav { padding: 18px 24px; }
  .site-nav.scrolled { padding: 14px 24px; }
  .nav-toggle { display: flex; }
  .nav-links,
  .hero-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav-links.open,
  .hero-links.open { max-height: 480px; overflow-y: auto; }
  .nav-links li,
  .hero-links li { width: 100%; }
  .nav-links a,
  .hero-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    color: var(--ink) !important;
    text-shadow: none !important;
    border-bottom: 1px solid var(--line);
  }
  .nav-links .sub-menu,
  .hero-links .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: #f8f9fa;
    padding: 0;
  }
  .nav-links .sub-menu a,
  .hero-links .sub-menu a {
    padding-left: 36px;
    border-bottom: 1px solid var(--line);
  }
}

/* ---- hero ---- */
.hero {
  position: relative;
  width: 100%;
  min-height: 440px;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.hero-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 32px 48px 48px;
  width: 100%;
}

.hero-text {
  max-width: 580px;
  width: 100%;
}

.hero-text .eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--link-blue);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.hero-text h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--title-blue);
  margin: 0 0 14px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-text p {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  max-width: 540px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media(max-width: 860px) {
  .hero { min-height: 380px; }
  .hero-content { padding: 24px 24px 36px; }
  .hero-text h1 { font-size: clamp(1.45rem, 4vw, 1.9rem); }
}

@media(max-width: 560px) {
  .hero { min-height: auto; }
  .hero-content { padding: 20px 16px 28px; }
  .hero-text h1 { font-size: 1.45rem; line-height: 1.25; }
  .hero-text p { font-size: 0.92rem; line-height: 1.55; }
}

/* ---- Main Container Layouts ---- */
.page-inner { padding: 48px 24px 0; }

/* ---- Landing Welcome Fallback Card ---- */
.landing-welcome-card {
  max-width: 820px;
  margin: 20px auto 40px;
  padding: 40px 36px;
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.landing-welcome-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--link-blue);
  background: var(--panel-pink);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.landing-welcome-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--title-blue);
  line-height: 1.3;
  margin: 0 0 14px;
}

.landing-welcome-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 auto 28px;
  max-width: 600px;
}

.landing-welcome-points {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.landing-point-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: #F8FAFC;
  padding: 8px 16px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}

.landing-point-icon {
  color: var(--cta-green-dark);
  font-weight: 800;
}

@media (max-width: 640px) {
  .landing-welcome-card {
    padding: 28px 20px;
  }
  .landing-welcome-title {
    font-size: 1.35rem;
  }
  .landing-welcome-points {
    flex-direction: column;
    align-items: stretch;
  }
}

.ratgeber-page-view,
.ratgeber-content-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  width: 100%;
  box-sizing: border-box;
}

.page-content-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 64px 32px 96px;
  width: 100%;
  box-sizing: border-box;
}

.list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* ---- Review Cards ---- */
.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  transform: translateZ(0);
}

.ribbon-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 150px;
  pointer-events: none;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, .25));
}

.review-left {
  background: var(--panel-pink);
  border-radius: 18px 0 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 18px;
  text-align: center;
}

.review-logo { max-width: 150px; max-height: 64px; display: block; }
.stars { color: var(--star); font-size: 22px; letter-spacing: 3px; }

.review-right {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 24px;
  align-items: start;
}

.review-title {
  grid-column: 1;
  font-size: 21px;
  font-weight: 700;
  color: var(--title-blue);
  margin-bottom: 16px;
}

.review-features {
  grid-column: 1;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.review-features li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 8px;
}

.review-features li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
}

.discount-badge {
  grid-column: 1;
  display: inline-block;
  width: fit-content;
  background: linear-gradient(180deg, var(--badge-bg-start), var(--badge-bg-end));
  color: var(--badge-text);
  font-weight: 700;
  font-size: 14.5px;
  padding: 9px 18px;
  border-radius: 100px;
}

.review-cta-col {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
  gap: 14px;
}

.cta-btn {
  background: var(--cta-green);
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 34px;
  border-radius: 10px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(94, 205, 139, .35);
  transition: background .15s;
}

.cta-btn:hover { background: var(--cta-green-dark); }

.review-link {
  color: var(--link-blue);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: underline;
}

.review-link:hover { opacity: .8; }

.more-review { display: none; }
.more-review.show { display: grid; }

.load-more-wrap {
  max-width: 980px;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
}

.load-more-btn {
  background: #fff;
  color: var(--title-blue);
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 38px;
  border-radius: 100px;
  border: 2px solid var(--title-blue);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.load-more-btn:hover {
  background: var(--title-blue);
  color: #fff;
}

.load-more-btn:disabled {
  opacity: .5;
  cursor: default;
  background: #fff;
  color: var(--title-blue);
}

@media (max-width: 860px) {
  .tv-comparison-wrapper .review-right,
  .tv-review-list .review-right,
  .list .review-right,
  .review-right {
    padding: 24px 22px !important;
    column-gap: 16px !important;
  }

  .tv-comparison-wrapper .review-left,
  .tv-review-list .review-left,
  .list .review-left,
  .review-left {
    padding: 26px 14px !important;
  }
}

@media (max-width: 640px) {
  .tv-comparison-wrapper .review-card,
  .tv-review-list .review-card,
  .list .review-card,
  .review-card {
    grid-template-columns: 1fr !important;
  }

  .tv-comparison-wrapper .review-left,
  .tv-review-list .review-left,
  .list .review-left,
  .review-left {
    border-radius: 18px 18px 0 0 !important;
    padding: 24px !important;
  }

  .tv-comparison-wrapper .review-right,
  .tv-review-list .review-right,
  .list .review-right,
  .review-right {
    grid-template-columns: 1fr !important;
    padding: 22px !important;
  }

  .tv-comparison-wrapper .review-cta-col,
  .tv-review-list .review-cta-col,
  .list .review-cta-col,
  .review-cta-col {
    grid-column: 1 !important;
    grid-row: auto !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-top: 14px !important;
    gap: 14px !important;
  }

  .tv-comparison-wrapper .cta-btn,
  .tv-review-list .cta-btn,
  .list .cta-btn,
  .cta-btn {
    padding: 13px 26px !important;
  }

  .tv-comparison-wrapper .ribbon-svg,
  .tv-review-list .ribbon-svg,
  .list .ribbon-svg,
  .ribbon-svg {
    width: 120px !important;
    height: 120px !important;
  }
}

@media (max-width: 440px) {
  .tv-comparison-wrapper .review-title,
  .tv-review-list .review-title,
  .list .review-title,
  .review-title {
    font-size: 18px !important;
  }

  .tv-comparison-wrapper .review-cta-col,
  .tv-review-list .review-cta-col,
  .list .review-cta-col,
  .review-cta-col {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .tv-comparison-wrapper .cta-btn,
  .tv-review-list .cta-btn,
  .list .cta-btn,
  .cta-btn {
    width: 100% !important;
    text-align: center !important;
  }

  .tv-comparison-wrapper .discount-badge,
  .tv-review-list .discount-badge,
  .list .discount-badge,
  .discount-badge {
    font-size: 13px !important;
    padding: 8px 14px !important;
  }

  .tv-comparison-wrapper .ribbon-svg,
  .tv-review-list .ribbon-svg,
  .list .ribbon-svg,
  .ribbon-svg {
    width: 100px !important;
    height: 100px !important;
  }
}

/* ---- Section Head (Blog & Comparisons) Fully Responsive ---- */
.section-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
  width: 100%;
}

.paw {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--title-blue);
  margin-top: 4px;
}

.head-block {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.section-head h1 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--title-blue);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-head h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--title-blue);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.section-head .sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.55;
  color: var(--meta);
  margin: 8px 0 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 640px) {
  .section-head {
    gap: 12px;
    margin-bottom: 24px;
  }
  .paw {
    width: 20px;
    height: 20px;
    margin-top: 3px;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

@media (max-width: 640px) {
  .grid { grid-template-columns: 1fr; }
  .ratgeber-page-view,
  .ratgeber-content-grid,
  .page-content-wrapper { padding: 36px 20px 60px; }
}

.card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -20px rgba(54, 65, 84, 0.35);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
  background: var(--panel-pink);
}

.card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/11;
  background: #E2E8F0;
  display: block;
}

.card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.category {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--link-blue);
  margin: 0 0 10px;
}

h2.title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.32rem);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--title-blue);
  margin: 0 0 12px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

h2.title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--title-blue), var(--title-blue));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: background-size .25s ease;
}

h2.title a:hover {
  background-size: 100% 2px;
}

.meta {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--meta);
  margin: 0 0 14px;
}

.meta a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 600;
}

.meta a:hover { text-decoration: underline; }

.excerpt {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Reviews Section in Blog */
.reviews-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 96px;
}

.reviews-head {
  margin-bottom: 36px;
}

.reviews-head h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--title-blue);
}

.reviews-head .sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  color: var(--meta);
  margin: 6px 0 0;
}

.review-list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media(max-width: 860px) {
  .reviews-section { padding: 0 24px 72px; }
}

/* ---- Footer ---- */
.site-footer {
  background: #B8E0D2;
  padding: 56px 48px 40px;
  margin-top: auto !important;
  width: 100%;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-col h3 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--title-blue);
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--title-blue);
  text-decoration: none;
}

.footer-col ul a:hover {
  opacity: 0.85;
}

.footer-disclaimer {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #FFFFFF;
  margin: 0;
}

.footer-disclaimer a {
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: underline;
}

.footer-disclaimer a:hover { opacity: .85; }

@media(max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(3) { grid-column: 1 / span 2; }
}

@media(max-width: 560px) {
  .site-footer { padding: 44px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-col:nth-child(3) { grid-column: 1; }
}

/* ---- WordPress Core Alignment & Post Content ---- */
.aligncenter { display: block; margin: 20px auto; }
.alignleft { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }

/* ==========================================================================
   AUTHOR PROFILE PAGE (author.php)
   ========================================================================== */
.author-profile-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.author-hero-card {
  display: flex;
  align-items: center;
  gap: 36px;
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  margin-bottom: 56px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.author-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.author-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--panel-pink);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: block;
}

.author-verified-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: var(--cta-green-dark);
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.author-details {
  flex: 1;
}

.author-role-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--link-blue);
  background: var(--panel-pink);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.author-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 2rem;
  color: var(--title-blue);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.author-bio {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 20px;
}

.author-stats-row {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.author-stat-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.author-stat-item .stat-num {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--title-blue);
}

.author-stat-item .stat-label {
  font-size: 0.88rem;
  color: var(--meta);
  font-weight: 600;
}

@media (max-width: 768px) {
  .author-hero-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 20px;
  }
  .author-stats-row {
    justify-content: center;
  }
}

/* ==========================================================================
   GENERAL PAGE TEMPLATE (page.php / template-general-page.php)
   ========================================================================== */
.general-page-wrapper {
  padding: 48px 24px 80px;
  width: 100%;
}

.general-page-container {
  max-width: 980px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 48px 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  width: 100%;
  box-sizing: border-box;
}

.general-page-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.general-page-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.25;
  color: var(--title-blue);
  margin: 0;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.general-page-body {
  font-size: 1.08rem;
  line-height: 1.75;
  color: #2D3748;
}

.general-page-body p {
  margin-bottom: 24px;
}

.general-page-body h2,
.general-page-body h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--title-blue);
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
}

.general-page-body h2 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  border-bottom: 2px solid var(--line);
  padding-bottom: 8px;
}

.general-page-body h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
}

.general-page-body ul,
.general-page-body ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.general-page-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .general-page-wrapper {
    padding: 24px 16px 56px;
  }
  .general-page-container {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .general-page-header {
    padding-bottom: 18px;
    margin-bottom: 24px;
  }
  .general-page-body {
    font-size: 1rem;
    line-height: 1.68;
  }
}

/* Landing Page Content Block alignment with Comparison Block */
.landing-page-content-wrapper {
  max-width: 980px;
  margin: 0 auto 96px;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

.landing-page-content-wrapper .general-page-container {
  max-width: 100%;
  margin: 0;
}


/* ==========================================================================
   GENERAL PAGE TEMPLATE — Comparison Block, matches Landing Page pattern
   Fixed 24px side padding at all breakpoints (mirrors landing page exactly)
   ========================================================================== */
.general-page-comparison-section {
  max-width: 980px;
  margin: 48px auto 48px;
  padding: 0 24px;
  box-sizing: border-box;
  width: 100%;
}

.general-page-content-wrapper,
.general-page-header-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.general-page-content-wrapper .general-page-container,
.general-page-header-wrapper .general-page-container {
  max-width: 100%;
  margin: 0;
}




/* ==========================================================================
   SINGLE BLOG ARTICLE PAGE (single.php)
   ========================================================================== */
.single-article-page {
  padding: 48px 24px 80px;
  width: 100%;
}

.single-article-container {
  max-width: 980px;
  margin: 0 auto;
  background: #FFFFFF;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 48px 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  width: 100%;
  box-sizing: border-box;
}

.single-breadcrumbs {
  font-size: 0.88rem;
  color: var(--meta);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.single-breadcrumbs a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 600;
}

.single-breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumb-separator {
  color: #CBD5E1;
}

.breadcrumb-current {
  color: var(--ink);
  font-weight: 600;
}

.single-category-tag {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--link-blue);
  text-decoration: none;
  margin-bottom: 12px;
}

.single-category-tag:hover {
  text-decoration: underline;
}

.single-post-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.35rem, 4vw, 2.2rem);
  line-height: 1.25;
  color: var(--title-blue);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.single-meta-bar {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.single-author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.single-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E2E8F0;
  flex-shrink: 0;
}

.single-meta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.single-meta-authors {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  word-break: break-word;
}

.single-meta-authors a {
  color: var(--link-blue);
  text-decoration: none;
  font-weight: 700;
}

.single-meta-authors a:hover {
  text-decoration: underline;
}

.single-meta-details {
  font-size: 0.85rem;
  color: var(--meta);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.meta-bullet {
  color: #CBD5E1;
  user-select: none;
}

.single-featured-media {
  margin-bottom: 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.single-featured-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.single-article-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #2D3748;
}

.single-article-body p {
  margin-bottom: 24px;
}

.single-article-body h2,
.single-article-body h3 {
  font-family: var(--sans);
  font-weight: 800;
  color: var(--title-blue);
  margin: 36px 0 16px;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.single-article-body h2 {
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  line-height: 1.3;
  border-bottom: 2px solid var(--line);
  padding-bottom: 8px;
}

.single-article-body h3 {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.35;
}

.single-article-body ul,
.single-article-body ol {
  margin: 0 0 24px 24px;
  padding: 0;
}

.single-article-body li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.single-article-body blockquote {
  border-left: 4px solid var(--title-blue);
  background: var(--panel-pink);
  padding: 16px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink);
}

/* Author Bio Card (Exact Kredity Style & Responsive Layout) */
.single-author-bio-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 28px;
  margin-top: 40px;
}

.bio-avatar-wrap {
  flex-shrink: 0;
}

.bio-avatar {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  object-fit: cover;
  display: block;
}

.bio-content-wrap {
  flex: 1;
  min-width: 0;
}

.bio-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  color: #1E293B;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}

.bio-author-link {
  color: #1E293B;
  text-decoration: none;
}

.bio-author-link:hover {
  color: var(--link-blue);
  text-decoration: underline;
}

.bio-role-badge {
  font-size: 0.85rem;
  font-weight: 400;
  color: #64748B;
  white-space: nowrap;
}

.bio-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
  margin: 0;
}

.bio-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--link-blue);
  text-decoration: none;
}

.bio-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .single-article-page {
    padding: 24px 16px 56px;
  }
  .single-article-container {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .single-meta-bar {
    padding-bottom: 18px;
    margin-bottom: 24px;
  }
  .single-author-avatar {
    width: 42px;
    height: 42px;
  }
  .single-meta-authors {
    font-size: 0.88rem;
  }
  .single-meta-details {
    font-size: 0.8rem;
  }
  .single-article-body {
    font-size: 1.02rem;
    line-height: 1.7;
  }
  .single-article-body ul,
  .single-article-body ol {
    margin-left: 18px;
  }
  .single-author-bio-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 22px 18px;
    margin-top: 40px;
  }
  .bio-avatar-wrap {
    margin: 0 auto;
  }
  .bio-name {
    justify-content: center;
    text-align: center;
    gap: 4px 8px;
  }
  .bio-role-badge {
    display: inline-block;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .single-article-page {
    padding: 16px 8px 48px;
  }
  .single-article-container {
    padding: 20px 14px;
    border-radius: 14px;
  }
  .single-breadcrumbs {
    font-size: 0.8rem;
    margin-bottom: 14px;
  }
  .single-featured-media {
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .single-article-body {
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .single-article-body p {
    margin-bottom: 18px;
  }
  .single-article-body blockquote {
    padding: 12px 14px;
    margin: 18px 0;
  }
  .single-author-bio-card {
    padding: 16px 14px;
  }
}

/* ======================================================================
   SINGLE INSURANCE REVIEW PAGE (Kredity-Style)
   ====================================================================== */
.single-review-page {
  background: var(--bg-soft);
  min-height: 80vh;
  padding: 40px 24px 80px;
}

.single-review-container {
  max-width: 980px;
  margin: 0 auto;
}

.review-page-header {
  margin-bottom: 28px;
}

.review-page-title {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(1.45rem, 4.5vw, 2.3rem);
  line-height: 1.25;
  color: var(--title-blue);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.review-title-text {
  display: inline;
  margin-right: 8px;
}

.verified-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #28995a;
  vertical-align: middle;
  margin-top: -3px;
  white-space: nowrap;
}

.verified-svg {
  width: clamp(20px, 3.5vw, 26px);
  height: clamp(20px, 3.5vw, 26px);
  display: inline-block;
  flex-shrink: 0;
}

.review-intro-text {
  margin-top: 20px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #334155;
}

.review-intro-text p {
  margin: 0;
}

/* Review Summary Card (Horizontal Layout) */
.review-summary-card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 24px 28px 20px;
  margin-bottom: 36px;
}

.summary-card-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.summary-logo-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 140px;
  flex-shrink: 0;
}

.summary-logo-wrap {
  max-width: 140px;
  height: 50px;
  display: flex;
  align-items: center;
}

.summary-logo-img {
  max-width: 100%;
  max-height: 48px;
  object-fit: contain;
  display: block;
}

.summary-logo-text {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--title-blue);
}

.summary-stars {
  color: #F59E0B;
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}

.summary-specs-col {
  flex: 1;
  min-width: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.spec-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 8px;
}

.spec-label {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  white-space: nowrap;
}

.spec-value {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
}

.summary-cta-col {
  flex-shrink: 0;
}

.summary-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #27AE60;
  color: #ffffff !important;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(39, 174, 96, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.summary-cta-btn:hover {
  background-color: #219653;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(39, 174, 96, 0.45);
}

.summary-btn-arrow {
  width: 18px;
  height: 18px;
}

.summary-card-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}

.summary-card-bottom p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #64748B;
  margin: 0;
}

/* Detailed review body block */
.single-review-body {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 36px 36px;
  margin-bottom: 40px;
}

.review-details-block h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--title-blue);
  margin: 0 0 20px;
}

.review-promo-pill {
  display: inline-block;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: var(--link-blue);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.review-feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #1E293B;
}

.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .summary-card-main {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .summary-logo-col {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .summary-cta-btn {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .single-review-page {
    padding: 20px 12px 60px;
  }
  .review-page-title {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .verified-svg {
    width: 20px;
    height: 20px;
  }
  .review-intro-text {
    font-size: 0.96rem;
    line-height: 1.65;
    margin-top: 16px;
  }
}

