@charset "utf-8";
/* CSS Document */

/* =========================================================
   DIVER ON TOUR – FOOTER CTA / LEISTUNGSBLOCK
   Datei: /assets/css/footer-cta.css
   Bereich:
   - Abschlussblock mit Einleitung
   - 3 Leistungs-/Linkkarten
========================================================= */

.dot-footer-cta{
  max-width:1200px;
  margin:0 auto;
  padding:48px 20px;
  box-sizing:border-box;
  background:#ffffff;
  color:#333333;
  font-family:Arial, sans-serif;
}

.dot-footer-cta__title{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:28px;
  text-align:center;
}

.dot-footer-cta__intro{
  margin:0 0 30px;
  color:#35556b;
  font-size:16px;
  text-align:center;
}

.dot-footer-cta__grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px;
}

.dot-footer-cta__card{
  flex:1 1 280px;
  max-width:360px;
  padding:18px;
  box-sizing:border-box;
  border-radius:14px;
  background:#ffffff;
  text-align:center;
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.dot-footer-cta__link{
  display:block;
  color:inherit;
  text-decoration:none;
}

.dot-footer-cta__image{
  display:block;
  width:100%;
  margin-bottom:14px;
  border-radius:12px;
  aspect-ratio:3 / 2;
  object-fit:cover;
}

.dot-footer-cta__card-title{
  margin:0 0 8px;
  color:#0e3a5a;
  font-size:20px;
  font-weight:700;
}

.dot-footer-cta__text{
  margin:0 0 14px;
  color:#35556b;
  font-size:15px;
  line-height:1.7;
}

.dot-footer-cta__button{
  display:inline-block;
  padding:10px 16px;
  border-radius:10px;
  background:#0e3a5a;
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
}

@media (max-width:768px){
  .dot-footer-cta{
    padding:36px 16px;
  }

  .dot-footer-cta__title{
    font-size:24px;
  }

  .dot-footer-cta__card{
    max-width:none;
  }
}