/* ===== FensterFix Dresden – custom overrides (loaded AFTER style.css) ===== */

/* Larger logo */
.wpo-site-header .navbar-header .navbar-brand img {
  width: 200px;
  max-width: 200px;
  height: auto;
}

/* Desktop header: one flexible row → logo | menu (grows, centered) | CTA right. */
@media (min-width: 992px) {
  .wpo-site-header .navigation .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
  .wpo-site-header .navigation .row > div[class*="col-lg"] {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
  }
  .wpo-site-header .navigation .row > .col-lg-8 {
    flex: 1 1 auto;
  }
  .wpo-site-header #navbar .navbar-nav {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .wpo-site-header #navbar > ul > li > a {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 16px;
    white-space: nowrap;
  }
  .wpo-site-header .header-right {
    text-align: right;
  }
  .wpo-site-header .header-right .theme-btn {
    white-space: nowrap;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .wpo-site-header #navbar > ul > li > a {
    padding-left: 11px;
    padding-right: 11px;
    font-size: 15px;
  }
}

/* ---- About section: remove template's blue decorative band + fix layout/spacing ---- */
.plummet-about-section::before {
  display: none !important;      /* kill the blue ::before band behind the title (looked broken) */
}
.plummet-about-section .row {
  align-items: stretch !important; /* beat Bootstrap .align-items-center !important → no white bar */
}
.plummet-about-section .about-left-wrap,
.plummet-about-section .about-left-wrap .image {
  height: 100%;
}
.plummet-about-section .about-left-wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
}
@media (min-width: 992px) {
  .plummet-about-section .about-right-wrap {
    padding-left: 50px;          /* breathing room between image and text */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;     /* center text block against full-height image */
  }
}
.plummet-about-section .about-right-wrap h2 {
  margin-top: 0;
  margin-bottom: 18px;
  line-height: 1.25;
}
.plummet-about-section .about-right-wrap > p {
  margin-bottom: 28px;
  color: #5a6b85;
  line-height: 1.75;
}
/* keep the button its natural width (flex column would stretch it full-width) */
.plummet-about-section .about-right-wrap .theme-btn {
  align-self: flex-start;
}
.plummet-about-section .about-right-itam {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 34px;
}
@media (max-width: 575px) {
  .plummet-about-section .about-right-itam { grid-template-columns: 1fr; }
}
.plummet-about-section .about-right-itam .item {
  background: #fafbfe;
  border: 1px solid #E7EDF4;
  border-radius: 14px;
  padding: 24px 22px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.plummet-about-section .about-right-itam .item:hover {
  box-shadow: 0 12px 30px rgba(16, 124, 223, .10);
  transform: translateY(-2px);
}
.plummet-about-section .about-right-itam .item .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.plummet-about-section .about-right-itam .item .icon .ff-ico {
  width: 32px;
  height: 32px;
}
.plummet-about-section .about-right-itam .item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.plummet-about-section .about-right-itam .item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #586275;
}

/* ---- FAQ section (native <details> accordion) ---- */
.ff-faq .ff-faq-list {
  max-width: 880px;
  margin: 40px auto 0;
}
.ff-faq details {
  background: #fff;
  border: 1px solid #E3EAF1;
  border-radius: 10px;
  margin-bottom: 14px;
  padding: 0 26px;
  transition: box-shadow .2s ease;
}
.ff-faq details[open] {
  box-shadow: 0 10px 30px rgba(16, 124, 223, 0.08);
  border-color: #cfe3fa;
}
.ff-faq summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #232f4b;
  padding: 20px 36px 20px 0;
  position: relative;
}
.ff-faq summary::-webkit-details-marker { display: none; }
.ff-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  color: #0F6FCB;
}
.ff-faq details[open] summary { color: #0F6FCB; }
.ff-faq details[open] summary::after { content: "\2013"; }
.ff-faq .ff-faq-body {
  padding: 0 0 22px;
  color: #6e6e6e;
  line-height: 1.75;
}

/* ---- SEO article section ---- */
.ff-article { background: #fafbfe; }
.ff-article .ff-article-body { color: #6e6e6e; line-height: 1.8; font-size: 16px; }
.ff-article .ff-article-body p { margin-bottom: 16px; }
.ff-article .ff-article-body h3 {
  margin: 30px 0 12px;
  font-size: 22px;
  color: #232f4b;
}
.ff-article .ff-article-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.ff-article .ff-article-body ul li {
  list-style: disc;
  margin-bottom: 9px;
}
.ff-article .ff-article-body strong { color: #232f4b; }

/* ---- Standort (location) page ---- */
.plummet-about-section .about-right-wrap .ff-loc-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.plummet-about-section .about-right-wrap .ff-loc-list li {
  flex: 0 0 44%;
  position: relative;
  padding-left: 26px;
}
.plummet-about-section .about-right-wrap .ff-loc-list li::before {
  content: "\2713";
  color: #0F6FCB;
  font-weight: 700;
  position: absolute;
  left: 0;
}
.plummet-about-section .about-right-wrap .ff-loc-list a { color: #232f4b; }
.plummet-about-section .about-right-wrap .ff-loc-list a:hover { color: #0F6FCB; }

/* CTA band */
.ff-cta { background: #0F6FCB; padding: 54px 0; }
.ff-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ff-cta-text h2 { color: #fff; margin: 0 0 6px; font-size: 28px; }
.ff-cta-text p { color: rgba(255, 255, 255, 0.88); margin: 0; }
.ff-cta-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.ff-cta-phone { color: #fff; font-weight: 700; font-size: 22px; white-space: nowrap; }
.ff-cta .theme-btn { background: #fff !important; color: #0F6FCB !important; }

/* ---- Gallery ---- */
.ff-gallery { background: #fff; }
.ff-gallery .ff-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.ff-gallery .ff-gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
@media (max-width: 767px) {
  .ff-gallery .ff-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ff-gallery .ff-gallery-grid img { height: 180px; }
}

/* ---- Contact form (uses template .wpo-contact-pg-section styling) ---- */
.ff-hp { display: none !important; }
.ff-form-msg { width: 100%; margin-top: 6px; font-weight: 700; text-align: center; }
.ff-form-msg.ok { color: #1a9e54; }
.ff-form-msg.err { color: #d33; }
.ff-file-field label { display: block; margin-bottom: 8px; font-weight: 700; color: #232f4b; }
.ff-file-field input[type="file"] { height: auto; padding: 12px 14px; background: #fff; cursor: pointer; }

/* Contact form: robust flex grid instead of the template's floats (fixes overlap on next section) */
.wpo-contact-pg-section .wpo-contact-form-area form {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
  align-items: flex-start;
}
.wpo-contact-pg-section form > div {
  width: calc(50% - 15px);
  float: none;
  margin: 0 0 22px;
}
.wpo-contact-pg-section form > .fullwidth,
.wpo-contact-pg-section form .submit-area,
.wpo-contact-pg-section form .ff-form-msg {
  width: 100%;
  float: none;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 600px) {
  .wpo-contact-pg-section form > div { width: 100%; }
}
/* give the contact section room before the CTA band (template sets padding-bottom:0) */
.wpo-contact-pg-section { padding-bottom: 70px !important; }
/* the single-column contact row collapses as a flex row → make it a normal block so it
   contains the form and the section no longer overlaps the CTA band below */
.wpo-contact-pg-section .row { display: block; }
.wpo-contact-pg-section .row::after { content: ""; display: block; clear: both; }
.wpo-contact-pg-section .col { float: none; }
/* template pulls the form up with a negative margin (for a map that we don't use) → zero it,
   otherwise the form overlaps the CTA band below */
.wpo-contact-pg-section .wpo-contact-form-area { margin-bottom: 0 !important; }

/* ---- Tighter spacing between sections (template default 120px was too large) ---- */
.section-padding { padding: 72px 0; }
@media (max-width: 991px) { .section-padding { padding: 55px 0; } }

/* ---- Einsatzgebiet / region (town & district chips) ---- */
.ff-area { background: #fff; }
.ff-area .ff-area-h3 { font-size: 20px; color: #232f4b; margin: 30px 0 14px; }
.ff-chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.ff-chips li a,
.ff-chips li span {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #E3EAF1;
  border-radius: 30px;
  font-size: 15px;
  color: #232f4b;
  background: #fafbfe;
  text-decoration: none;
  transition: all .2s ease;
}
.ff-chips li a:hover { background: #0F6FCB; color: #fff; border-color: #0F6FCB; }
.ff-chips li span { color: #6e6e6e; }

/* ---- Jobs / careers page ---- */
.ff-jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
@media (max-width: 767px) { .ff-jobs-grid { grid-template-columns: 1fr; } }
.ff-job-card { border: 1px solid #E3EAF1; border-radius: 12px; padding: 28px; background: #fff; }
.ff-job-card .ff-job-type { display: inline-block; font-size: 13px; color: #0F6FCB; font-weight: 700; margin-bottom: 10px; }
.ff-job-card h3 { font-size: 20px; color: #232f4b; margin: 0 0 10px; }
.ff-job-card p { color: #6e6e6e; margin: 0 0 18px; line-height: 1.6; }
.ff-check { list-style: none; padding: 0; margin: 0 0 10px; }
.ff-check li { position: relative; padding-left: 28px; margin-bottom: 12px; color: #6e6e6e; line-height: 1.6; }
.ff-check li::before { content: "\2713"; position: absolute; left: 0; color: #0F6FCB; font-weight: 700; }

/* ---- SEO: real H1s, styled identically to the template's hero/banner headings ---- */
.wpo-hero-slider .hero-text h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 34px;
  line-height: 44px;
  font-weight: 700;
  color: #121A22;
  margin: 0 0 26px;
}
.wpo-hero-slider .hero-text h1 span { color: #0F6FCB; }
/* schmaler lg-Bereich: Spalte enger -> kleinere H1, damit weiterhin 2 Zeilen */
@media (min-width: 992px) and (max-width: 1199px) {
  .wpo-hero-slider .hero-text h1 { font-size: 32px; line-height: 42px; }
}
@media (max-width: 991px) {
  .wpo-hero-slider .hero-text h1 { font-size: 40px; line-height: 48px; margin-bottom: 25px; }
  .wpo-hero-slider .hero-text h1 br.hero-h1-br { display: none; }
}
.wpo-page-title .wpo-breadcumb-wrap h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 400;
  color: #fff;
  margin: -10px 0 20px;
}
@media (max-width: 767px) {
  .wpo-page-title .wpo-breadcumb-wrap h1 { font-size: 30px; line-height: 35px; margin-bottom: 10px; }
}

/* ---- Hero: mehr Content + CTA-Reihe ---- */
.wpo-hero-slider { padding-top: 55px; }
@media (max-width: 991px) { .wpo-hero-slider { padding-top: 40px; } }
.wpo-hero-slider .hero-text .hero-eyebrow { display: inline-block; color: #0F6FCB; font-weight: 700;
  font-size: 15px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.wpo-hero-slider .hero-text .hero-list { list-style: none; padding: 0; margin: 0 0 30px; }
.wpo-hero-slider .hero-text .hero-list li { position: relative; padding-left: 30px; margin-bottom: 12px;
  color: #3b4658; font-size: 17px; font-weight: 600; line-height: 1.5; }
.wpo-hero-slider .hero-text .hero-list li::before { content: "\2713"; position: absolute; left: 0; top: 0;
  color: #0F6FCB; font-weight: 700; }
.wpo-hero-slider .hero-text .hero-btns { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.wpo-hero-slider .hero-text .hero-phone { margin: 18px 0 0; font-size: 16px; color: #3b4658; }
.wpo-hero-slider .hero-text .hero-phone a { color: #0F6FCB; font-weight: 700; text-decoration: none; white-space: nowrap; }

/* ---- Hero-Bildraster (statt überlappender Collage): getrennt + abgerundet ---- */
.wpo-hero-slider .hero-image { display: block; }
@media (max-width: 991px) { .wpo-hero-slider .hero-image { display: none; } }
.ff-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 232px 232px;
  gap: 18px;
  width: 100%;
}
.ff-hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.ff-hero-grid .ff-hg-main { grid-row: 1 / span 2; }

/* ---- Fenster-Icons (Home: About-Items + Leistungs-Karten) statt Klempner-PNGs ---- */
.about-right-wrap .about-right-itam .item .icon { display: flex; align-items: center; justify-content: center; }
.ff-ico { width: 44px; height: 44px; color: #0F6FCB; display: block; }

/* ---- Inline content CTAs (drive readers to the contact form) ---- */
.ff-inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #eaf3fd;
  border: 1px solid #cfe3fa;
  border-radius: 14px;
  padding: 28px 32px;
}
.ff-inline-cta-text { flex: 1 1 320px; }
.ff-inline-cta-text h3 { margin: 0 0 4px; font-size: 22px; color: #232f4b; }
.ff-inline-cta-text p { margin: 0; color: #5a6b85; }
.ff-inline-cta .theme-btn { white-space: nowrap; }
@media (max-width: 575px) { .ff-inline-cta { padding: 22px; } }
.ff-inline-cta-wrap { padding: 6px 0 48px; }

/* ---- Standorte overview page ---- */
.ff-loc-group { margin-bottom: 36px; }
.ff-loc-group:last-child { margin-bottom: 0; }
.ff-loc-count { color: #9aa7bd; font-weight: 600; font-size: 16px; }
.ff-loc-grid { gap: 12px; }

/* ---- Kontakt: info cards ---- */
.ff-contact-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 0 0 50px; }
@media (max-width: 991px) { .ff-contact-info { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ff-contact-info { grid-template-columns: 1fr; } }
.ff-contact-card { border: 1px solid #E3EAF1; border-radius: 12px; padding: 26px 22px; background: #fff; text-align: center; }
.ff-contact-card i { font-size: 30px; color: #0F6FCB; display: block; margin-bottom: 12px; }
.ff-contact-card h3 { font-size: 18px; color: #232f4b; margin: 0 0 8px; }
.ff-contact-card p { color: #6e6e6e; margin: 0; line-height: 1.7; font-size: 15px; }
.ff-contact-card a { color: #0F6FCB; text-decoration: none; }
.ff-contact-card a:hover { text-decoration: underline; }

/* ---- Leistungen overview: service cards ---- */
.ff-leist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991px) { .ff-leist-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ff-leist-grid { grid-template-columns: 1fr; } }
.ff-leist-card { display: block; border: 1px solid #E3EAF1; border-radius: 14px; padding: 30px 28px;
  background: #fff; text-decoration: none; transition: all .2s ease; }
.ff-leist-card:hover { border-color: #0F6FCB; box-shadow: 0 14px 34px rgba(16,124,223,.12); transform: translateY(-3px); }
.ff-leist-ico { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 12px; background: #eaf3fd; margin-bottom: 18px; }
.ff-leist-ico i { font-size: 26px; color: #0F6FCB; }
.ff-leist-card h3 { font-size: 20px; color: #232f4b; margin: 0 0 10px; }
.ff-leist-card p { color: #6e6e6e; line-height: 1.6; margin: 0 0 16px; font-size: 15px; }
.ff-leist-more { color: #0F6FCB; font-weight: 700; font-size: 15px; }

/* ---- Ratgeber: blog grid + cards ---- */
.ff-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 991px) { .ff-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .ff-blog-grid { grid-template-columns: 1fr; } }
.ff-blog-card { display: flex; flex-direction: column; border: 1px solid #E3EAF1; border-radius: 16px;
  overflow: hidden; background: #fff; text-decoration: none; transition: all .2s ease; }
.ff-blog-card:hover { border-color: #0F6FCB; box-shadow: 0 14px 34px rgba(16,124,223,.12); transform: translateY(-3px); }
.ff-blog-thumb { display: block; padding: 12px 12px 0; }
.ff-blog-thumb img { width: 100%; height: 188px; object-fit: cover; display: block; border-radius: 14px; }
.ff-blog-body { display: block; padding: 16px 22px 26px; }
.ff-blog-cat { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #0F6FCB; margin-bottom: 10px; }
.ff-blog-card h3 { font-size: 19px; line-height: 1.35; color: #232f4b; margin: 0 0 10px; }
.ff-blog-card p { color: #6e6e6e; line-height: 1.6; margin: 0 0 14px; font-size: 15px; }

/* ---- Ratgeber: takeaways box ---- */
.ff-takeaways { background: #eaf3fd; border: 1px solid #cfe3fa; border-radius: 14px; padding: 26px 30px; margin-bottom: 34px; }
.ff-takeaways h2 { font-size: 20px; color: #232f4b; margin: 0 0 14px; }
.ff-takeaways ul { list-style: none; padding: 0; margin: 0; }
.ff-takeaways li { position: relative; padding-left: 28px; margin-bottom: 10px; color: #41506b; line-height: 1.6; }
.ff-takeaways li:last-child { margin-bottom: 0; }
.ff-takeaways li::before { content: "\2713"; position: absolute; left: 0; color: #0F6FCB; font-weight: 700; }

/* ---- Referenzen + Über uns ---- */
.ff-ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
@media (max-width: 767px) { .ff-ref-grid { grid-template-columns: repeat(2, 1fr); } }
.ff-ref-item { position: relative; border-radius: 12px; overflow: hidden; }
.ff-ref-item img { width: 100%; height: 240px; object-fit: cover; display: block; }
.ff-ref-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 16px 12px; color: #fff;
  font-size: 14px; font-weight: 600; background: linear-gradient(transparent, rgba(16,42,74,.82)); }
.ff-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
@media (max-width: 991px) { .ff-quotes { grid-template-columns: 1fr; } }
.ff-quote { border: 1px solid #E3EAF1; border-radius: 12px; padding: 26px; background: #fff; }
.ff-quote .ff-stars { color: #f4b400; letter-spacing: 2px; margin-bottom: 10px; }
.ff-quote p { color: #41506b; line-height: 1.7; font-style: italic; margin: 0 0 14px; }
.ff-quote .ff-quote-by { color: #232f4b; font-weight: 700; font-size: 15px; }
.ff-quote-foot { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.ff-quote-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
/* Homepage-Kundenstimmen: Avatar rund + sauber beschnitten */
.plummet-testimonial-section .botom-content .image img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.ff-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 10px; }
@media (max-width: 767px) { .ff-values { grid-template-columns: 1fr; } }
.ff-value { display: flex; gap: 16px; border: 1px solid #E3EAF1; border-radius: 12px; padding: 22px 24px; background: #fff; }
.ff-value i { font-size: 26px; color: #0F6FCB; flex: 0 0 auto; margin-top: 2px; }
.ff-value h3 { font-size: 18px; color: #232f4b; margin: 0 0 6px; }
.ff-value p { color: #6e6e6e; margin: 0; line-height: 1.6; font-size: 15px; }

/* ---- Legal pages: hint box ---- */
.ff-note { background: #fff8e6; border: 1px solid #f3e2b0; border-left: 4px solid #f4b400; border-radius: 10px;
  padding: 16px 20px; margin-bottom: 30px; color: #5a4b1f; font-size: 15px; line-height: 1.7; }
.ff-note em { color: #8a6d1f; font-style: normal; font-weight: 600; }
.ff-impressum-img { display: block; width: 100%; max-width: 720px; margin: 6px auto 32px;
  border: 1px solid #E3EAF1; border-radius: 12px; }

/* --- WOW-Absicherung (Startseite) ---
   Der Preloader wurde entfernt; dadurch ruft script.js wow.init() nicht mehr
   zuverlaessig auf und die gebuendelte WOW-Lib revealed .wow-Elemente nicht.
   Ergebnis war: ganze Sektionen (About, Service-Karten) blieben visibility:hidden
   -> riesige leere Abstaende. Hier erzwingen wir dauerhaft sichtbaren Content
   und neutralisieren den WOW-Hide-Effekt (kein Inhalt darf je verschwinden). */
.wow { visibility: visible !important; opacity: 1 !important; animation: none !important; }

/* --- A11Y-Kontrast: heller Footer-Text auf weiß war zu schwach (1.97) --- */
.wpo-site-footer p { color: #586471 !important; }

/* --- Service-Karten als statisches Grid (ersetzt Owl-Slider -> kein CLS, alle Karten sichtbar) --- */
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
@media (max-width:991px){.service-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:575px){.service-grid{grid-template-columns:1fr;}}

/* === A11Y Runde 3 (Lighthouse Mobile: Kontrast + „links rely on color") === */
/* Artikel-Fließtext + Blog-Datums-Badges: #687693 auf #fafbfe war nur 4.41 */
.ff-article p, .ff-article .ff-article-body, .ff-article .ff-article-body p, .ff-article .ff-article-body li,
.dete, .dete strong { color: #586275 !important; }
/* Inline-Artikel-Links: dunkler (Bootstrap-#0D6EFD=4.35) + unterstrichen (nicht nur Farbe) */
.ff-article a:not([class]) { color: #0F6FCB; text-decoration: underline; }
/* Footer-Copyright auf blauem Band: weiß + Links unterstrichen (war dunkel auf blau) */
.wpo-lower-footer, .wpo-lower-footer p, .wpo-lower-footer a, .wpo-lower-footer .copyright { color: #fff !important; }
.wpo-lower-footer a, .wpo-lower-footer .copyright a { text-decoration: underline !important; }

/* === Datei-Dropzone (Drag & Drop, Multi-Upload) + runder Senden-Button === */
.submit-area .theme-btn, .wpo-contact-pg-section form .submit-area .theme-btn,
.wpo-contact-pg-section form button[type="submit"] { border-radius: 8px !important; }
.wpo-contact-pg-section form .submit-area .theme-btn:after { border-radius: 8px !important; }
.ff-file-field.ff-dz input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; clip: rect(0,0,0,0); }
.ff-dz-area { display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 2px dashed #cfe0f4; border-radius: 14px; padding: 26px 20px; text-align: center;
  cursor: pointer; background: #fff; transition: border-color .2s, background .2s; }
.ff-dz-area:hover { border-color: #0F6FCB; background: #f7fbff; }
.ff-dz-area.ff-dz-over { border-color: #0F6FCB; background: #eef6ff; }
.ff-dz-area:focus-visible { outline: 2px solid #0F6FCB; outline-offset: 2px; }
.ff-dz-ico { width: 34px; height: 34px; color: #0F6FCB; }
.ff-dz-text { color: #586275; font-size: 15px; }
.ff-dz-browse { color: #0F6FCB; font-weight: 700; text-decoration: underline; }
.ff-dz-files { font-size: 14px; color: #232f4b; font-weight: 600; }
.ff-file-field.ff-dz-has .ff-dz-area { border-style: solid; border-color: #0F6FCB; background: #f7fbff; }
