@charset "utf-8";
/* CSS Document */

/* =========================================================
   DIVER ON TOUR – INSIDE DIVER ON TOUR
   Datei: /assets/css/inside-diver-on-tour.css
========================================================= */

.dot-inside{
  background:#ffffff;
  padding:60px 20px;
  font-family:Arial,sans-serif;
  color:#1c1c1c;
}

.dot-inside-wrap{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.dot-kicker{
  font-size:12px;
  letter-spacing:2px;
  color:#0e78a8;
  font-weight:600;
  margin:0 0 10px;
}

.dot-inside-hero h1{
  font-size:38px;
  margin:0 0 20px;
  line-height:1.2;
  color:#0e3a5a;
}

.dot-lead{
  font-size:18px;
  color:#555;
  line-height:1.6;
  margin:0 0 30px;
}

.dot-inside-text p{
  margin:0 0 18px;
  line-height:1.7;
  color:#444;
  font-size:16px;
}

.dot-cta{
  margin-top:10px;
}

.dot-btn-primary{
  display:inline-block;
  background:linear-gradient(135deg,#0e78a8,#11b3c6);
  color:#ffffff;
  padding:14px 28px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  transition:all .2s ease;
  box-shadow:0 8px 25px rgba(17,179,198,.25);
}

.dot-btn-primary:hover,
.dot-btn-primary:focus{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(17,179,198,.35);
  color:#ffffff;
}

.team-section{
  background:#f4fbff;
  padding:40px 20px;
  font-family:Arial,sans-serif;
}

.team-container{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.team-container h2{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:32px;
}

.team-intro{
  max-width:800px;
  margin:10px auto 30px;
  color:#35556b;
  line-height:1.7;
  font-size:16px;
}

.team-grid{
  display:flex;
  flex-wrap:wrap;
  gap:25px;
  justify-content:center;
}

.team-card{
  flex:1 1 280px;
  max-width:320px;
  background:#ffffff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 8px 18px rgba(0,0,0,0.08);
  transition:transform .2s ease, box-shadow .2s ease;
  text-align:center;
}

.team-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 28px rgba(0,0,0,0.15);
}

.team-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:15px;
}

.team-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:22px;
}

.team-card p{
  font-size:15px;
  color:#444;
  line-height:1.7;
  margin:0;
}

@media (max-width:900px){
  .dot-inside-wrap{
    grid-template-columns:1fr;
    gap:40px;
  }

  .dot-inside-hero h1{
    font-size:30px;
  }
}

@media (max-width:768px){
  .dot-inside{
    padding:50px 16px;
  }

  .team-section{
    padding:35px 16px;
  }

  .team-container h2{
    font-size:28px;
  }
}