/* assets/css/eko.css */
/* eko.css v2.5 — Master-CSS (Hero, BlackBox, FAQ+HowTo, Contact, Cards, Typography, Responsive)
   Fixes: fehlende Vars ergänzt (--ek-secondary, --ink, --fs-body),
   Elementor-Primärfarben gemappt, doppelte Button-Blöcke entfernt, Farben vereinheitlicht.
*/

/* ===========================
   Design Tokens & Base
   =========================== */
:root{
  --ek-primary:#00DCFF;
  --ek-secondary:#004f4d;
  --ek-ink:#0f172a;
  --ink:var(--ek-ink);               /* Alias für ältere Regeln */
  --ek-border:#e5e7eb;
  --ek-card-bg:#F7F9FC;

  --ek-hero-max:1140px;
  --ek-hero-pad-y:60px;
  --ek-hero-pad-x:16px;

  --wa-green:#25D366;
  --wa-green-dark:#128C7E;

  --ek-font:"Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Elementor-Globals auf Brand mappen, falls vorhanden */
  --e-global-color-primary: var(--ek-primary);
  --e-global-color-accent:  var(--ek-primary);

  /* Basis-Textgröße für CTA-Blöcke, falls nicht gesetzt */
  --fs-body: 22px;
}
html, body{
  font-family:var(--ek-font) !important;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
@supports (font-synthesis:none){ *{ font-synthesis:none; } }

/* Respect user motion preferences */
@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* ===========================
   Typografie (global)
   =========================== */
h1,h2,h3,h4,h5,h6{ text-align:center !important; }
h2{
  font-size:1.6rem; font-weight:700; line-height:1.25;
  margin:1.2rem 0 .6rem;
}
h2 + p, h2 + ul, h2 + ol{ margin-top:.5rem; }
h3{ font-size:1.25rem; font-weight:600; line-height:1.3; margin:1.2rem 0 .5rem; }
h4{ font-size:1rem; font-weight:600; line-height:1.25; margin:0 0 .35rem; }

html body p,
html body .entry-content p,
html body .ek-container p,
html body .elementor-widget-container p,
html body .ml-copy p,
p[style]{ text-align:justify !important; }
ul,ol{ text-align:left !important; }

.property-item h1, .property-item h2, .property-item h3, .property-item h4, .property-item h5, .property-item h6,
.property-card h1, .property-card h2, .property-card h3, .property-card h4, .property-card h5, .property-card h6{ text-align:left !important; }
.property-item p, .property-card p,
.property-item ul, .property-item ol,
.property-card ul, .property-card ol{ text-align:left !important; }

/* UI-Fonts hart erzwingen */
h1,h2,h3,h4,h5,h6,
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-heading-title,
.main-nav, .houzez-nav, .houzez-nav a,
.menu, .menu a,
.btn, .button,
.property-item, .property-card{ font-family:var(--ek-font) !important; }

/* Navigation Dropdowns pre-hover */
html body .houzez-nav, html body .houzez-nav *,
html body .main-nav,   html body .main-nav *,
html body .navbar-nav .dropdown-menu,
html body .navbar-nav .dropdown-menu *,
html body .menu .sub-menu, html body .menu .sub-menu *,
html body .dropdown-menu,  html body .dropdown-menu *,
html body .elementor-nav-menu, html body .elementor-nav-menu *{
  font-family:var(--ek-font) !important; font-weight:400;
}

/* ===========================
   HERO
   =========================== */
.ek-hero{
  position:relative; width:100%; margin:0; padding:var(--ek-hero-pad-y) 0;
  background-position:center; background-size:cover; background-repeat:no-repeat;
  color:#fff; overflow:hidden; background-image:var(--ek-hero-bg, none);
}
.ek-hero::before{ content:""; position:absolute; inset:0; background:rgba(0,0,0,0.45); z-index:0; }
.ek-hero__inner{
  position:relative; width:100%; max-width:var(--ek-hero-max);
  margin:0 auto; padding:0 var(--ek-hero-pad-x); text-align:center; z-index:1;
}
.ek-hero h1{ font-size:2rem; font-weight:700; line-height:1.25; margin:0 0 1rem; }
.ek-hero p{ font-size:1rem; line-height:1.65; margin:0 auto; max-width:800px; }
/* Hero-Inhalt zwingend weiß */
.ek-hero h1, .ek-hero h2, .ek-hero h3, .ek-hero p,
.ek-hero .elementor-heading-title,
.ek-hero h1 span, .ek-hero h2 span{ color:#fff !important; }

/* ===========================
   BLACKBOX
   =========================== */
.ek-blackbox{
  background:rgba(0,0,0,0.5);
  color:#fff;
  padding:2.4rem;
  box-sizing:border-box;
}
.ek-blackbox h1,
.ek-blackbox h2,
.ek-blackbox h3{ color:#fff; text-align:center; margin:0 0 1.2rem; }
.ek-blackbox p{
  color:#f1f5f9; text-align:justify; margin:0 0 .6rem; line-height:1.65;
}
.ek-blackbox > *:last-child{ margin-bottom:0; }
.ek-blackbox a{ color:var(--ek-primary); text-decoration:underline; }
.ek-blackbox a:hover{ color:#fff; }

/* ===========================
   FAQ & HOW-TO
   =========================== */
.ek-faq{ counter-reset:ekstep; }

/* Grundboxen */
.ek-faq > details,
.ek-faq .ml-accordion > details{
  border:1px solid var(--ek-primary);
  box-shadow:inset 0 0 0 1px #e8eef3;
  background:#fff;
  margin:10px 0;
  border-radius:0;
  overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease;
}

/* Summary */
.ek-faq > details > summary,
.ek-faq .ml-accordion > details > summary{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px 14px 56px;
  background:linear-gradient(#fafafa, #f7f7f7);
  cursor:pointer;
  list-style:none;
}
.ek-faq > details > summary::-webkit-details-marker,
.ek-faq .ml-accordion > details > summary::-webkit-details-marker{ display:none; }
.ek-faq > details > summary:hover,
.ek-faq .ml-accordion > details > summary:hover{ background:#f3f4f6; }
.ek-faq > details > summary:focus-visible,
.ek-faq .ml-accordion > details > summary:focus-visible{
  outline:2px solid var(--ek-primary);
  outline-offset:2px;
}

/* Nummern-Badge */
.ek-faq > details > summary::before,
.ek-faq .ml-accordion > details > summary::before{
  content:counter(ekstep);
  counter-increment:ekstep;
  position:absolute; left:16px; top:50%; transform:translateY(-50%);
  display:grid; place-items:center;
  width:28px; height:28px;
  font:700 14px/1 var(--ek-font, system-ui);
  color:var(--ek-ink);
  background:#fff;
  border:2px solid var(--ek-primary);
  border-radius:0;
}

/* Caret */
.ek-faq > details > summary::after,
.ek-faq .ml-accordion > details > summary::after{
  content:"▾";
  margin-left:auto;
  opacity:.7;
  transition:transform .2s ease;
}
.ek-faq > details[open] > summary::after,
.ek-faq .ml-accordion > details[open] > summary::after{ transform:rotate(180deg); }

/* Text */
.ek-faq > details > summary span,
.ek-faq .ml-accordion > details > summary span{ font-weight:700; line-height:1.3; }

/* Panel */
.ek-faq > details > .panel,
.ek-faq .ml-accordion > details > .panel{
  padding:12px 16px 16px;
  border-top:1px solid var(--ek-primary);
  background:#fff;
  animation:ek-faq-reveal .18s ease;
}
@keyframes ek-faq-reveal{
  from{ opacity:0; transform:translateY(-2px); }
  to{ opacity:1; transform:translateY(0); }
}

/* Box-Shadow beim Öffnen */
.ek-faq > details[open],
.ek-faq .ml-accordion > details[open]{
  box-shadow:0 6px 16px rgba(15,23,42,.06), inset 0 0 0 1px #e8eef3;
}

/* Inhalte */
.ek-faq .panel p,
.ek-faq .panel ul,
.ek-faq .panel ol{ margin-top:.6rem !important; }

/* FAQ Intro-Text */
.ek-faq__intro{
  text-align:center;
  max-width:900px;
  margin:0 auto 1.2rem;
  font-size:.95rem;
  line-height:1.65;
  color:var(--ek-ink);
}

/* ===========================
   CONTACT
   =========================== */
.ml-contact{
  background:rgba(255,255,255,0.90);
  border:1px solid var(--ek-border);
  border-radius:0;
  padding:2.4rem;
  max-width:720px;
  margin:0 auto;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  box-sizing:border-box;
}
.ml-contact h2,
.ml-contact h3{
  text-align:center;
  margin-top:0;
  margin-bottom:1.2rem;
}
.ml-contact p{
  text-align:justify;
  margin:0 0 .6rem;
  font-size:.95rem;
  line-height:1.65;
}
.ml-contact .ml-meta{ font-size:.85rem; }

/* Labels */
.ml-contact label{ display:block; font-weight:400; margin:0 0 6px; }
.ml-contact label[for]{ font-weight:600; }

/* Felder */
.ml-contact input[type="text"],
.ml-contact input[type="email"],
.ml-contact input[type="tel"],
.ml-contact input[type="number"],
.ml-contact select,
.ml-contact textarea{
  width:100%;
  padding:10px 12px;
  margin:0 0 14px;
  border:1px solid #d1d5db;
  border-radius:0;
  font-size:1rem;
  box-sizing:border-box;
  background:#fff;
  color:#111827;
}
.ml-contact textarea{ resize:vertical; min-height:100px; }

/* Checkboxes */
.ml-contact .checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:8px;
  margin:.6rem 0;
}
.ml-contact .checkbox-row input[type="checkbox"]{
  flex:0 0 auto;
  margin:4px 8px 0 0;
  border-radius:0 !important;
}
.ml-contact .checkbox-row label{
  display:inline-block;
  flex:1 1 auto;
  margin:0;
  line-height:1.4;
  font-weight:400;
  word-break:break-word;
}
.ml-contact input[type="checkbox"] + label::before,
.ml-contact .checkbox-row label::before,
.ml-contact .elementor-field-type-acceptance label::before{
  border-radius:0 !important;
}

/* Status */
.eko-form-status[aria-live]{ margin:10px 0; font-size:.95rem; }
.eko-form-status.ok{
  border:1px solid var(--ek-primary);
  background:#F7F9FC;
  color:#0b1220;
  padding:10px;
}
.eko-form-status.err{
  border:1px solid #DC2626;
  background:#FEF2F2;
  color:#7F1D1D;
  padding:10px;
}

/* Buttons */
.ek-btn-inquiry{
  background:var(--ek-primary);
  border:none;
  padding:12px 18px;
  color:#000;
  font-weight:600;
  cursor:pointer;
  text-align:center;
  width:100%;
  border-radius:0;
}
.ek-btn-inquiry:hover{ background:#04D9FF; color:#000; }

/* ===========================
   Cards / Intro
   =========================== */
.ek-card{
  background:var(--ek-card-bg);
  border:1px solid var(--ek-primary);
  border-radius:0;
  padding:2.4rem;
  box-sizing:border-box;
}
.ek-card > h2{ margin-top:0; margin-bottom:.6rem; }
.ek-card p{
  margin:0 0 .6rem;
  text-align:justify;
  line-height:1.65;
  font-size:.95rem;
}
.ek-card > *:last-child{ margin-bottom:0; }

/* Listing-Card (Variante) */
.ek-card.ek-card--listing{
  border:1px solid #e8eef3;
  border-radius:16px;
  box-shadow:0 8px 28px rgba(15,23,42,.08);
  overflow:hidden;
  background:#fff;
  transition:transform .15s ease, box-shadow .15s ease;
}
.ek-card.ek-card--listing:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 34px rgba(15,23,42,.12);
}
.ek-card--listing .item-header img,
.ek-card--listing .property-thumbnail{
  aspect-ratio:16/10;
  object-fit:cover;
  width:100%;
  height:auto;
}
.ek-card--listing .item-body{ padding:12px 16px; }
.ek-card--listing .property-title a{
  color:var(--ek-ink);
  font-weight:700;
  text-decoration:none;
}
.ek-card--listing .property-title a:hover{ color:#04D9FF; }
.ek-card--listing .property-location,
.ek-card--listing .item-amenities{
  color:#475569;
  font-size:.92rem;
}
.ek-btn--details{ display:block; width:100%; margin-top:10px; }
.ek-icons i, .ek-icons .fa{ color:#000; transition:color .2s ease; }
.ek-icons a:hover i, .ek-icons a:hover .fa{ color:#04D9FF; }

/* ===========================
   Custom Sections
   =========================== */
#cc-ulcinj-services .ccs-list{ margin:.3rem 0 .9rem; padding-left:16px; line-height:1.65; }
#cc-ulcinj-services .ccs-grid{ display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:16px; margin-top:12px; }
#cc-ulcinj-services .ccs-card{ background:var(--ek-card-bg); border:1px solid var(--ek-primary); border-radius:0; padding:5px; }
#cc-ulcinj-services .ccs-card p{ margin:0; text-align:justify; line-height:1.65; font-size:.95rem; }
@media (max-width:767.98px){ #cc-ulcinj-services .ccs-grid{ grid-template-columns:1fr; } }

/* ===========================
   Kontext-Färbung: Intro Ulcinj
   =========================== */
#ml-intro-ulcinj,
#ml-intro-ulcinj .ml-inner,
#ml-intro-ulcinj .ml-inner *,
#ml-intro-ulcinj h1, #ml-intro-ulcinj h2, #ml-intro-ulcinj h3,
#ml-intro-ulcinj p, #ml-intro-ulcinj a, #ml-intro-ulcinj strong, #ml-intro-ulcinj em,
#ml-intro-ulcinj .elementor-heading-title,
#ml-intro-ulcinj .elementor-widget-container *{
  color:#000 !important; -webkit-text-fill-color:#000 !important;
}
#ml-intro-ulcinj a:link, #ml-intro-ulcinj a:visited,
#ml-intro-ulcinj a:hover, #ml-intro-ulcinj a:active{
  color:#000 !important; text-decoration:underline;
}
/* OVERRIDE: Blackbox in #ml-intro-ulcinj soll weiß bleiben */
#ml-intro-ulcinj .ek-blackbox h1,
#ml-intro-ulcinj .ek-blackbox h2,
#ml-intro-ulcinj .ek-blackbox h3{
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}

/* ===========================
   Spacing & Utilities
   =========================== */
section p,
section h1, section h2, section h3, section h4, section h5, section h6,
article p,
article h1, article h2, article h3, article h4, article h5, article h6{ margin-top:40px; }
.ek-hero section p,
.ek-hero section h1, .ek-hero section h2, .ek-hero section h3, .ek-hero section h4, .ek-hero section h5, .ek-hero section h6,
.ek-hero article p,
.ek-hero article h1, .ek-hero article h2, .ek-hero article h3, .ek-hero article h4, .ek-hero article h5, .ek-hero article h6{ margin-top:0 !important; }
.ez-toc-container{ margin-top:40px; }
@media (max-width:768px){ .ek-container{ padding-left:18px; padding-right:18px; } }

/* ===========================
   Responsive & Map-Fixes
   =========================== */
@media (max-width:991.98px){
  html, body{ overflow-x:hidden; }
  html, body, .site, .site-content, .fave-main-wrapper, .main-wrap, .page-main-content{
    min-width:0 !important; width:100% !important; max-width:100% !important;
  }
  .container, .container-fluid, .fave-container, .fave-row, .row{ width:100% !important; max-width:100% !important; }
}
@media (max-width:575.98px){
  .container, .container-fluid, .fave-container, .main-wrap .container{
    padding-left:1px !important; padding-right:1px !important;
    margin-left:0 !important; margin-right:0 !important;
    width:100% !important; max-width:100% !important;
  }
  .row{ margin-left:-1px !important; margin-right:-1px !important; }
  [class*="col-"]{ padding-left:1px !important; padding-right:1px !important; }
  .listing-wrap, .property-item, .property-card, .module, .widget{ margin-left:0 !important; margin-right:0 !important; }
}
@media (max-width:767.98px){
  #map, #houzez-listing-map, .houzez-google-map, .property-map,
  .map-wrap, .half-map__map, .listing-map{
    height:320px;
  }
}

/* Honeypot unsichtbar — modern */
.ml-form .hp-wrap,
.ml-form .hp-field{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:0 !important;
  overflow:hidden !important;
  clip-path:inset(50%) !important;
  border:0 !important;
  white-space:nowrap !important;
}

/* ==========================================================
   eco-slim module (scoped; active only with body.eco-slim-cards)
   ========================================================== */
body.eco-slim-cards .ml-card{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:14px;
  align-items:start;
  margin:10px 0;
  padding:12px;
  border:1px solid #eee;
  border-radius:14px;
}
body.eco-slim-cards .ml-card__media img{
  width:100%; height:auto; display:block; border-radius:12px; aspect-ratio:16/9; object-fit:cover;
}
body.eco-slim-cards .ml-card__title{ margin:.1rem 0 .25rem; font-size:1.06rem; line-height:1.25; }
body.eco-slim-cards .ml-card__title a{ text-decoration:none; }
body.eco-slim-cards .ml-card__meta{ margin:0 0 .45rem; color:#444; opacity:.85; }
body.eco-slim-cards .ml-card__price{ font-weight:700; margin:0 0 .6rem; }
@media (max-width:640px){ body.eco-slim-cards .ml-card{ grid-template-columns:1fr; } }

/* Buttons in eco-slim: Basis grau, Radius 0 */
body.eco-slim-cards .property-item .btn-primary,
body.eco-slim-cards .property-item .item-footer .btn,
body.eco-slim-cards .property-card .btn-primary{
  background:#6b7280 !important;
  border-color:#6b7280 !important;
  color:#fff !important;
  border-radius:0 !important;
}
body.eco-slim-cards .property-item .btn-primary:hover,
body.eco-slim-cards .property-item .item-footer .btn:hover,
body.eco-slim-cards .property-card .btn-primary:hover{
  background:#6b7280 !important;
  border-color:#6b7280 !important;
  color:#fff !important;
}
@media (max-width:640px){
  body.eco-slim-cards .property-item .item-footer .btn,
  body.eco-slim-cards .property-card .btn-primary{ width:100%; }
}

/* ===========================
   CTA Block (Ecosphere Style)
   =========================== */
.ek-cta .ek-card{
  background:#E6FBFF;
  border:1px solid #d1d5db;
}
.ek-cta__intro,
.ek-cta__outro{
  display:block;
  text-align:center !important;
  margin:0 0 .6rem;
  font-size:calc(var(--fs-body) - 1px);
  color:var(--ink);
}
.ek-cta__headline{
  text-align:center;
  margin:0 0 .8rem;
  font-size:1.4rem;
  line-height:1.35;
  font-weight:600;
  color:var(--ek-secondary);
}
.ek-cta__links{
  display:flex; justify-content:center; flex-wrap:wrap; gap:1rem; margin-top:1.2rem;
}

/* Basis-Buttons (als Links) */
.ek-cta__link--primary,
.ek-cta__link--whatsapp{
  display:inline-block;
  padding:.6rem 1.4rem;
  text-decoration:none;
  font-weight:500;
  text-align:center;
  border-radius:6px;
  transition:all .2s ease;
  color:#fff !important;
}
.ek-cta__link--primary:visited,
.ek-cta__link--whatsapp:visited{ color:#fff !important }

/* Learn More */
.ek-cta__link--primary{
  background:#6b7280; border:1px solid #6b7280;
}
.ek-cta__link--primary:hover{
  background:#6b7280; border-color:#6b7280;
  color:var(--ek-primary) !important;
  font-weight:700; transform:scale(0.97);
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

/* WhatsApp */
.ek-cta__link--whatsapp{
  background:var(--wa-green); border:1px solid var(--wa-green);
}
.ek-cta__link--whatsapp:hover{
  background:var(--wa-green); color:#000 !important;
  font-weight:700; transform:scale(0.97);
  box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

/* Mobile full width */
@media (max-width:640px){
  .ek-cta__link--primary,
  .ek-cta__link--whatsapp{ display:block; width:100%; }
}

/* Overlay/Swipe Fixes */
.ek-slide-overlay, .carousel-caption, .ek-card--overlay { pointer-events:none; }
.ek-slide-overlay a, .ek-slide-overlay button, .carousel-caption a, .carousel-caption button { pointer-events:auto; }
.slick-slider, .swiper, #hero-slider { touch-action: pan-y; }
.houzez-property-carousel .property-content{ pointer-events:none; }
.houzez-property-carousel .property-content a,
.houzez-property-carousel .property-content button{ pointer-events:auto; }

/* ==========================================================
   Einheitliche Buttons (global für Listings/Grids/Half-Map/CTAs)
   ========================================================== */
/* Basis grau, Radius 0 */
.item-footer-right-wrap .btn,
.item-buttons-wrap .btn,
.property-item .item-footer .btn,
.property-card .item-footer .btn,
a[href*="wa.me"],
a[href*="api.whatsapp.com"],
a[href^="tel:"],
.hz-show-lightbox-js,
.item-tool-preview,
.ek-cta__link--whatsapp,
.ek-cta__link--call{
  background:#6b7280 !important;
  border:1px solid #6b7280 !important;
  color:#fff !important;
  border-radius:0 !important;
}
/* WhatsApp: Hover Text/Icon grün */
a[href*="wa.me"]:hover,
a[href*="api.whatsapp.com"]:hover,
.ek-cta__link--whatsapp:hover{
  background:#6b7280 !important; border-color:#6b7280 !important;
  color:var(--wa-green) !important;
}
a[href*="wa.me"]:hover i,
a[href*="api.whatsapp.com"]:hover i,
.ek-cta__link--whatsapp:hover i{ color:var(--wa-green) !important; }
/* Call & Preview: Hover Text/Icon türkis */
a[href^="tel:"]:hover,
.ek-cta__link--call:hover,
.hz-show-lightbox-js:hover,
.item-tool-preview:hover{
  background:#6b7280 !important; border-color:#6b7280 !important;
  color:var(--ek-primary) !important;
}
a[href^="tel:"]:hover i,
.ek-cta__link--call:hover i,
.hz-show-lightbox-js:hover i,
.item-tool-preview:hover i{ color:var(--ek-primary) !important; }
/* CTA-Radius angleichen */
.ek-cta__link--primary, .ek-cta__link--whatsapp{ border-radius:0 !important; }

/* Karten-Hintergrund und Rahmen */
.property-item,
.property-card,
.item-wrap,
.item-inner-wrap{
  background:#e5e7eb;
  border:1px solid #000000;
  border-radius:0;
}
/* Hover-State der Karten */
.property-item:hover,
.property-card:hover{
  box-shadow:0 8px 24px rgba(15,23,42,.08);
  border-color:#d1d5db;
}

/* Search Results / Listings: Border, Radius, Hintergründe */
.listing-view .item-listing-wrap,
.listing-view .item-listing-wrap .item-wrap{
  background:#f3f4f6;
  border:1px solid var(--ek-primary) !ark; /* fix: war #04D9FF */
  border:1px solid var(--ek-primary) !important;
  border-radius:0 !important;
}
/* Ecken wirklich überall begradigen */
.listing-view .item-listing-wrap .listing-image-wrap,
.listing-view .item-listing-wrap .listing-thumb img{ border-radius:0 !important; }
/* Unterer Streifen (Button-Zeile) einfärben */
.listing-view .item-listing-wrap .item-footer{
  background:#E6FBFF;
  border-top:1px solid #d1d5db;
}
/* Nur EIN äußerer Rahmen in der List-Ansicht v7 */
.listing-view .item-listing-wrap{
  border:1px solid var(--ek-primary) !important;
  border-radius:0 !important;
  background:#f3f4f6;
}
/* Innere Ränder/Schlagschatten abschalten */
.listing-view .item-listing-wrap .item-wrap,
.listing-view .item-listing-wrap .item-inner-wrap,
.listing-view .item-listing-wrap .item-header,
.listing-view .item-listing-wrap .item-body,
.listing-view .item-listing-wrap .item-footer{
  border:0 !important; box-shadow:none !important; border-radius:0 !important;
}
/* Bilder/Thumbs ohne Ecken, ohne Rahmen */
.listing-view .item-listing-wrap .listing-image-wrap,
.listing-view .item-listing-wrap .listing-thumb img{
  border:0 !important; border-radius:0 !important;
}

/* SERPs v7: Titel/Preis */
.listing-v7 .item-title,
.listing-view .item-title{
  font-size:1.5rem; line-height:1.25;
  margin-top:2px; margin-bottom:6px;
  font-weight:700; text-align:left;
  white-space:normal; overflow:visible; text-overflow:clip;
}
.listing-v7 .item-title a,
.listing-view .item-title a{ display:inline; white-space:normal; max-width:100%; vertical-align:top; }
.listing-v7 .item-price,
.listing-v7 .property-price,
.listing-view .item-price,
.listing-view .property-price{ font-size:1.75rem; font-weight:700; }
.listing-v7 .item-body,
.listing-view .item-body{ padding-top:8px; }
