.elementor-6644 .elementor-element.elementor-element-974690a{--display:flex;--min-height:600px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;}.elementor-6644 .elementor-element.elementor-element-974690a:not(.elementor-motion-effects-element-type-background), .elementor-6644 .elementor-element.elementor-element-974690a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(135deg, #0E3A5F 0%, #00A0D1 100%);}.elementor-6644 .elementor-element.elementor-element-d23f004{text-align:center;}.elementor-6644 .elementor-element.elementor-element-d23f004 .elementor-heading-title{font-size:50px;font-weight:800;-webkit-text-stroke-color:#000;stroke:#000;text-shadow:0px 2px 10px rgba(0, 0, 0, 0.39);color:#FFFFFF;}.elementor-6644 .elementor-element.elementor-element-87ce6b8 > .elementor-widget-container{margin:23px 0px 41px 0px;}.elementor-6644 .elementor-element.elementor-element-87ce6b8{text-align:center;font-size:23px;color:#FFFFFF;}.elementor-6644 .elementor-element.elementor-element-87ce6b8 p{margin-block-end:1.7px;}.elementor-6644 .elementor-element.elementor-element-79f4c69{--display:flex;}@media(max-width:1024px){.elementor-6644 .elementor-element.elementor-element-d23f004 .elementor-heading-title{font-size:41px;}.elementor-6644 .elementor-element.elementor-element-87ce6b8{text-align:center;font-size:20px;}}@media(max-width:767px){.elementor-6644 .elementor-element.elementor-element-d23f004 .elementor-heading-title{font-size:32px;}.elementor-6644 .elementor-element.elementor-element-87ce6b8{font-size:19px;}}/* Start custom CSS for shortcode, class: .elementor-element-2822c55 *//* ===========================
   Wrapper & Grundlayout
   =========================== */

.svg-gutachter-wrapper {
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ===========================
   Suchleiste
   =========================== */

.svg-gutachter-search {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 28px;
}

.svg-search-input {
  flex: 1;
  border-radius: 999px;
  border: 2px solid #E2E8F0;
  padding: 12px 18px;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.07);
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.svg-search-input::placeholder {
  color: #9CA3AF;
}

.svg-search-input:focus {
  border-color: #00A0D1;
  box-shadow: 0 0 0 3px rgba(0, 160, 209, 0.25);
  background-color: #FFFFFF;
}

.svg-search-btn {
  position: relative;
  border: none;
  border-radius: 999px;
  padding: 0 26px;
  min-width: 140px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(90deg, #00A0D1, #0088B3);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  box-shadow: 0 8px 18px rgba(0, 136, 179, 0.25);
}

/* Lade-Animation */
.svg-search-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  opacity: 0.18;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.svg-search-btn:hover::before {
  transform: scaleX(1);
}

.svg-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 136, 179, 0.35);
}

/* ===========================
   Grid & Karten
   =========================== */

.svg-gutachter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* Karte */
.svg-gutachter-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 24px;
  padding: 26px 22px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover-Effekt */
.svg-gutachter-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Akzentlinie oben */
.svg-gutachter-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg,#003B73 0%,#00A0D1 50%,#005F99 100%);
  border-radius: 2px 2px 0 0;
  transition: width 0.4s ease;
}

.svg-gutachter-card:hover::before {
  width: 100%;
}

/* oberer Teil der Karte */
.svg-gutachter-card .card-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge mittig & rund */
.badge-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.gutachter-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.svg-gutachter-card:hover .gutachter-badge {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 30px rgba(0,160,209,0.35);
}

/* Typografie in der Karte */
.svg-gutachter-card .name {
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #003B73;
  margin-bottom: 6px;
}

.svg-gutachter-card .fachgebiet {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
  margin-bottom: 10px;
}

.svg-gutachter-card .kurztext {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 12px;
  text-align: left;
  word-break: normal;
  hyphens: auto;
}

/* PLZ / Ort klebt unten */
.svg-gutachter-card .ort {
  margin-top: auto;
  font-size: 14px;
  color: #111827;
}

/* ===========================
   Footer-Buttons
   =========================== */

.card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.details-btn {
  width: 100%;
}

/* Universeller Button-Stil */
.gutachter-btn {
  flex: 1;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    background 0.18s ease;
}

/* Primär (Details) */
.gutachter-btn.primary {
  background: linear-gradient(90deg, #00A0D1, #0088B3);
  color: #FFFFFF;
  border-color: #00A0D1;
  box-shadow: 0 8px 18px rgba(0, 136, 179, 0.25);
}

/* Ghost (Telefon / Mail) */
.gutachter-btn.ghost {
  background: #F9FAFB;
  color: #1F2933;
  border-color: #E5E7EB;
}

/* Lade-Overlay */
.gutachter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  opacity: 0.18;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.gutachter-btn:hover::before {
  transform: scaleX(1);
}

.gutachter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 136, 179, 0.28);
}

.gutachter-btn.ghost:hover {
  background: #FFFFFF;
  border-color: #00A0D1;
  color: #003B73;
}

/* ===========================
   Modal
   =========================== */

/* Body fixieren, wenn Modal offen */
body.modal-open {
  overflow: hidden;
}

/* Overlay */
.gutachter-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 9999;
}

/* sichtbar, wenn JS Klasse setzt */
.gutachter-modal.is-open {
  display: flex;
}

/* Inneres Modal-Fenster */
.gutachter-modal-inner {
  max-width: 720px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 26px 22px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.35);
  position: relative;
}

/* Close-Button */
.gutachter-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #4b5563;
}

.gutachter-modal .modal-close:hover {
  color: #111827;
}

/* Inhalt scrollbar, Modal bleibt mittig */
.gutachter-modal .modal-body {
  max-height: 70vh;
  overflow-y: auto;
  padding-top: 8px;
}

/* Typo im Modal */
.gutachter-modal .modal-body h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #003B73;
}

.gutachter-modal .modal-body h3 {
  font-size: 1.05rem;
  margin: 1.2rem 0 0.4rem;
  color: #003B73;
}

.gutachter-modal .modal-body p {
  margin-bottom: 0.4rem;
  color: #4B5563;
  line-height: 1.7;
}

/* Tabelle für Details */
.gutachter-modal .details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.8rem 0 0.8rem;
  font-size: 0.95rem;
}

.gutachter-modal .details-table th {
  text-align: left;
  padding: 6px 10px 6px 0;
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

.gutachter-modal .details-table td {
  padding: 6px 0;
  color: #4B5563;
}

.gutachter-modal .details-table tr + tr td,
.gutachter-modal .details-table tr + tr th {
  border-top: 1px solid #E5E7EB;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 900px) {
  .svg-gutachter-wrapper {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  /* Suchleiste untereinander */
  .svg-gutachter-search {
    flex-direction: column;
    gap: 10px;
  }

  .svg-search-btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  .svg-search-input {
    font-size: 16px;
    padding: 12px 18px;
  }

  /* Grid auf 1 Spalte */
  .svg-gutachter-grid {
    grid-template-columns: 1fr;
  }

  .svg-gutachter-card {
    padding: 22px 18px 18px;
  }

  .gutachter-badge {
    width: 90px;
    height: 90px;
  }

  .svg-gutachter-card .name {
    font-size: 17px;
  }

  .svg-gutachter-card .kurztext {
    font-size: 13px;
  }

  /* Modal fast volle Breite */
  .gutachter-modal-inner {
    max-width: 100%;
    border-radius: 12px;
    padding: 18px 16px 18px;
  }

  .gutachter-modal .details-table {
    font-size: 0.9rem;
  }

  .gutachter-modal .details-table th,
  .gutachter-modal .details-table td {
    display: table-cell;
  }
}

@media (max-width: 480px) {
  .svg-gutachter-wrapper {
    padding: 0 10px;
  }

  .svg-gutachter-card {
    border-radius: 18px;
  }

  .gutachter-modal-inner {
    padding: 16px 12px 14px;
  }

  .gutachter-modal .modal-body h2 {
    font-size: 1.2rem;
  }
}/* End custom CSS */