/* ============================================================
   Gemeinsame Basis: bk-info-box + symptom-card
   ============================================================ */
.bk-info-box,
.symptom-card {
  padding: 24px;
  background-color: #FAF7F3 !important;
  border: 1px solid #F6F6F6 !important;
  border-left: 5px solid #D4B896 !important;
  border-radius: 15px;
}

.bk-info-box h3,
.symptom-card h3 {
  margin: 12px 0 12px;
}

.bk-info-box ul:last-child,
.symptom-card ul:last-child {
  margin-bottom: 12px;
}

/* Aufzählungspunkte gold */
.bk-info-box li::marker,
.symptom-card li::marker {
  color: #D4B896;
}


/* ============================================================
   Nur bk-info-box: Außenabstand
   ============================================================ */
.bk-info-box {
  margin: 24px 0 56px;
}


/* ============================================================
   Nur symptom-card: Kartenlayout
   ============================================================ */
.symptom-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 420px;
}

/* Button – Basis Koralle */
.symptom-card .btn,
.symptom-card a.btn,
.symptom-card .btn-primary {
  margin-top: 8px !important;
  align-self: flex-start;
  border-radius: 15px;
  background: #e88a7d !important;
  border: 1px solid #e88a7d !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(232, 138, 125, 0.25);
}

/* Button – Hover/Focus Petrol */
.symptom-card .btn:hover,
.symptom-card .btn:focus,
.symptom-card a.btn:hover,
.symptom-card a.btn:focus,
.symptom-card .btn-primary:hover,
.symptom-card .btn-primary:focus {
  background: #148ca5 !important;
  border-color: #148ca5 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 16px rgba(20, 140, 165, 0.25);
}

/* Abstand zwischen Kacheln */
.symptom-grid {
  margin-top: 20px;
}

.symptom-grid .col,
.symptom-grid [class*="col-"] {
  margin-bottom: 30px;
}

/* Mobil kompakter */
@media screen and (max-width: 767px) {
  .bk-info-box,
  .symptom-card {
    padding: 20px;
  }
  .bk-info-box {
    margin: 20px 0 44px;
  }
}
/* ============================================================
   Nur gold-card: Kartenlayout
   ============================================================ */
.bk-gold-card {
  border: 1px solid rgb(212, 184, 150);
  border-radius: 15px;
  background: #ffffff;

 box-shadow: 0 7px 16px rgba(212, 184, 150, 0.30);
}

/* ============================================================
   Nur pin-card: Kartenlayout
   ============================================================ */

.bk-pin-gold-card {
  position: relative;
  overflow: visible;

  border: 1px solid rgb(212, 184, 150);
  border-radius: 15px;
  background: #fffdf9;

  box-shadow:
    0 4px 8px rgba(212, 184, 150, 0.28),
    0 8px 14px rgba(212, 184, 150, 0.18);

  padding: 28px;
}

/* goldener Pin */
.bk-pin-gold-card::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);

  width: 22px;
  height: 22px;
  border-radius: 50%;

  background: radial-gradient(
    circle at 35% 30%,
    #fff6df 0%,
    rgb(212, 184, 150) 45%,
    #b9945f 100%
  );

  box-shadow:
    0 2px 5px rgba(113, 103, 93, 0.28),
    inset 0 1px 2px rgba(255, 255, 255, 0.75);

  z-index: 2;
}

/* kleiner Lichtpunkt im Pin */
.bk-pin-gold-card::after {
  content: "";
  position: absolute;
  top: -5px;
  left: calc(50% - 4px);

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.75);
  z-index: 3;
}

.bk-gold-bracket-card {
  position: relative;
  overflow: visible;

  border: none !important;
  outline: none !important;
  background: transparent !important;
  background-color: transparent !important;

  border-radius: 15px;
  padding: 28px;

  box-shadow:
    0 4px 8px rgba(212, 184, 150, 0.16),
    0 8px 14px rgba(212, 184, 150, 0.10);
}

/* runde Goldklammer oben, läuft nach unten aus */
.bk-gold-bracket-card::before {
  content: "";
  position: absolute;
  inset: 0;

  border: 1px solid rgba(212, 184, 150, 0.95);
  border-bottom: 0;

  border-radius: 15px 15px 0 0;

  pointer-events: none;
  z-index: 1;

  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0, 0, 0, 0.45) 62%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 35%,
    rgba(0, 0, 0, 0.45) 62%,
    transparent 100%
  );
}
/* ============================================================
   BK-VERTRAUENSKARTE – Vertrauenskarten Beste Kumpels
   Goldrand, 15px Radius, gleiche Höhe für alle Karten
   Verwendung: <div class="bk-vertrauenskarte"> statt bk-goldrand
   ============================================================ */

.bk-vertrauenskarte {
    background: none !important;
    border: 1px solid #D4B896 !important;
    border-radius: 15px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06) !important;
    padding: 20px !important;

    /* Gleiche Höhe: Karte füllt die Grid-Zelle komplett aus */
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Abstände auf Mobil laufen über Bootstrap-Klassen direkt am
   Portlet: "mb-3 mb-md-0" ins Klassenfeld jedes Karten-Containers.
   Das Spaltenraster steuert das OPC – hier kein Grid-CSS nötig. */

/* Schriftgrößen fest verankern – Titel 18px, Text 15px.
   Überschreibt Theme-Vorgaben, egal was NOVA global setzt. */
.bk-vertrauenskarte span {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #313029 !important;
    line-height: 1.4 !important;
}

.bk-vertrauenskarte p {
    font-size: 15px !important;
    color: #525252 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Ausnahme: der Icon-Kreis ist auch ein span –
   der behält seine eigene Größe */
.bk-vertrauenskarte span i,
.bk-vertrauenskarte i {
    font-size: 16px !important;
    color: #148CA5 !important;
}
/* Tablet */
@media (min-width: 769px) and (max-width: 991px) {
    .bk-vertrauenskarte {
        width: calc(100% - 16px) !important;
        height: calc(100% - 16px) !important;
        margin: 8px !important;
        box-sizing: border-box !important;
    }
}

/* Smartphone und kleine Tablets */
@media (max-width: 768px) {
    .bk-vertrauenskarte {
        width: calc(100% - 16px) !important;
        height: auto !important;
        margin: 8px !important;
        box-sizing: border-box !important;
    }
}
/* ============================================================
/* Gallerie alls Bilder runde Ecken */
.opc-Gallery .opc-Gallery-item .opc-Gallery-img {
  border-radius: 15px;
}