@charset "utf-8";
/* =========================================================
   DIVER ON TOUR – TOURENBERICHTE
   Datei: /assets/css/tourenberichte.css
========================================================= */

/* =========================================================
   BASIS
========================================================= */

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  max-width:100%;
  overflow-x:hidden;
}

body{
  background:#ffffff;
  color:#18384a;
  font-family:Arial, Helvetica, sans-serif;
}

img,
video,
iframe{
  display:block;
  max-width:100%;
}

a{
  text-decoration:none;
}

main{
  display:block;
  width:100%;
}

.tourenberichte-container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
}

.tourenberichte-container--narrow{
  max-width:940px;
}

/* =========================================================
   HERO
========================================================= */

.tourenberichte-hero{
  position:relative;
  min-height:640px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#0e3a5a;
}

.tourenberichte-hero__media{
  position:absolute;
  inset:0;
  z-index:0;
}

.tourenberichte-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}

.tourenberichte-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(7,33,51,0.74) 0%, rgba(7,33,51,0.48) 45%, rgba(7,33,51,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.16) 100%);
  z-index:1;
}

.tourenberichte-hero__content{
  position:relative;
  z-index:2;
  width:min(1180px, calc(100% - 36px));
  margin:0 auto;
  padding:56px 0;
}

.tourenberichte-hero__box{
  max-width:720px;
  color:#ffffff;
}

.tourenberichte-kicker{
  margin:0 0 12px;
  color:#b8dbee;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  line-height:1.3;
}

.tourenberichte-hero__box h1{
  margin:0 0 16px;
  max-width:690px;
  color:#ffffff;
  font-size:clamp(32px, 4.8vw, 54px);
  line-height:1.08;
}

.tourenberichte-hero__box p{
  margin:0 0 14px;
  max-width:620px;
  color:#f1f7fb;
  font-size:17px;
  line-height:1.66;
}

.tourenberichte-hero__box p:last-of-type{
  margin-bottom:0;
}

.tourenberichte-hero__buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:22px;
}

/* =========================================================
   SEKTIONEN / HEADS
========================================================= */

.tour-section{
  padding:52px 0;
}

.tour-section--intro,
.tour-section--videos,
.tour-section--support{
  background:#f8fcfe;
}

.tour-section--reports,
.tour-section--closing{
  background:#ffffff;
}

.tour-section-head{
  text-align:center;
  margin-bottom:30px;
}

.tour-section-head h2{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:clamp(1.9rem, 2.7vw, 2.65rem);
  line-height:1.18;
}

.tour-section-head p{
  max-width:960px;
  margin:0 auto 12px;
  color:#35556b;
  font-size:1.01rem;
  line-height:1.76;
}

.tour-section-head p:last-child{
  margin-bottom:0;
}

/* =========================================================
   BUTTONS
========================================================= */

.tour-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:46px;
  padding:11px 20px;
  border-radius:10px;
  font-weight:700;
  font-size:0.95rem;
  line-height:1.3;
  transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tour-btn:hover{
  transform:translateY(-1px);
}

.tour-btn--primary{
  background:#0e3a5a;
  color:#ffffff;
  box-shadow:0 8px 18px rgba(14,58,90,0.18);
}

.tour-btn--primary:hover{
  background:#145a87;
}

.tour-btn--secondary{
  background:#ffffff;
  color:#0e3a5a;
  border:1px solid #cfe0ea;
  box-shadow:0 8px 18px rgba(14,58,90,0.08);
}

.tour-btn--secondary:hover{
  background:#f4f8fb;
}

/* =========================================================
   INFO-KARTEN
========================================================= */

.tour-info-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.tour-info-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.tour-info-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.06rem;
  line-height:1.34;
}

.tour-info-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   MEDIA-KARTEN
========================================================= */

.tour-media-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.tour-media-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.tour-media-card__video{
  background:#000000;
}

.tour-media-card__video video{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
}

.tour-media-card__body{
  padding:18px;
}

.tour-media-card__body h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.08rem;
  line-height:1.34;
}

.tour-media-card__body p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   TOURENBERICHTE / YOUTUBE-KARTEN
========================================================= */

.tour-report-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}

.tour-report-card{
  min-width:0;
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(320px, 520px);
  gap:22px;
  align-items:stretch;
  background:#f8fcfe;
  border:1px solid #dcecf2;
  border-radius:22px;
  padding:18px;
  box-shadow:0 12px 24px rgba(7,45,67,0.06);
}

.tour-report-card__content{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.tour-report-card__video{
  min-width:0;
  display:flex;
  align-items:stretch;
}

.tour-report-badge{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:12px;
  padding:7px 12px;
  border-radius:999px;
  background:#0e3a5a;
  color:#ffffff;
  font-size:12px;
  font-weight:700;
  line-height:1.2;
  letter-spacing:0.04em;
  text-transform:uppercase;
}

.tour-report-badge--blue{
  background:#145a87;
}

.tour-report-card__content h3{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:1.24rem;
  line-height:1.32;
}

.tour-report-card__content p{
  margin:0 0 12px;
  color:#35556b;
  font-size:0.97rem;
  line-height:1.72;
}

.tour-report-facts{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:4px;
}

.tour-report-fact{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 12px;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:14px;
}

.tour-report-fact strong{
  color:#0e3a5a;
  font-size:0.9rem;
  line-height:1.3;
}

.tour-report-fact span{
  color:#35556b;
  font-size:0.92rem;
  line-height:1.5;
}

.tour-report-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.tour-youtube-embed{
  width:100%;
  border-radius:18px;
  overflow:hidden;
  background:#000000;
  box-shadow:0 10px 22px rgba(7,45,67,0.08);
}

.tour-youtube-embed iframe{
  width:100%;
  aspect-ratio:16 / 9;
  border:0;
}

/* =========================================================
   SUPPORT-KARTEN
========================================================= */

.tour-support-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:18px;
}

.tour-support-card{
  min-width:0;
  background:#ffffff;
  border:1px solid #dcecf2;
  border-radius:18px;
  padding:20px 18px;
  box-shadow:0 10px 22px rgba(7,45,67,0.05);
}

.tour-support-card h3{
  margin:0 0 10px;
  color:#0e3a5a;
  font-size:1.06rem;
  line-height:1.34;
}

.tour-support-card p{
  margin:0;
  color:#35556b;
  font-size:0.96rem;
  line-height:1.68;
}

/* =========================================================
   ABSCHLUSS
========================================================= */

.tour-closing-card{
  background:#f8fcfe;
  border:1px solid #dcecf2;
  border-radius:22px;
  padding:30px 24px;
  text-align:center;
  box-shadow:0 12px 26px rgba(7,45,67,0.06);
}

.tour-closing-card h2{
  margin:0 0 12px;
  color:#0e3a5a;
  font-size:clamp(1.7rem, 2.3vw, 2.2rem);
  line-height:1.2;
}

.tour-closing-card p{
  max-width:760px;
  margin:0 auto 14px;
  color:#35556b;
  font-size:1rem;
  line-height:1.72;
}

.tour-closing-card p:last-of-type{
  margin-bottom:0;
}

.tour-closing-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:22px;
}

/* =========================================================
   TOP-LINK
========================================================= */

.tour-top-link-wrap{
  margin:18px auto 30px;
  text-align:center;
}

.tour-top-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:#0e3a5a;
  font-weight:700;
  font-size:0.94rem;
  line-height:1.3;
}

.tour-top-link:hover{
  text-decoration:underline;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width:1100px){
  .tour-info-grid,
  .tour-support-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .tour-media-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .tour-report-card{
    grid-template-columns:1fr;
  }
}

@media (max-width:900px){
  .tourenberichte-hero{
    min-height:620px;
  }

  .tourenberichte-hero__content{
    padding:46px 0;
  }

  .tourenberichte-hero__box{
    max-width:640px;
  }

  .tourenberichte-hero__box h1{
    font-size:clamp(30px, 5vw, 44px);
  }

  .tourenberichte-hero__box p{
    max-width:540px;
    font-size:16px;
    line-height:1.6;
  }

  .tour-report-facts{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .tourenberichte-container{
    padding:0 14px;
  }

  .tour-section{
    padding:34px 0;
  }

  .tour-section-head{
    margin-bottom:22px;
  }

  .tour-section-head h2{
    font-size:1.5rem;
    line-height:1.22;
  }

  .tour-section-head p,
  .tour-info-card p,
  .tour-media-card__body p,
  .tour-report-card__content p,
  .tour-support-card p,
  .tour-closing-card p{
    font-size:0.95rem;
    line-height:1.58;
  }

  .tourenberichte-hero{
    min-height:680px;
    align-items:flex-start;
  }

  .tourenberichte-hero__content{
    width:min(1180px, calc(100% - 24px));
    padding:70px 0 24px;
  }

  .tourenberichte-hero__box{
    max-width:100%;
  }

  .tourenberichte-hero__box h1,
  .tourenberichte-hero__box p{
    max-width:100%;
  }

  .tourenberichte-hero__box h1{
    font-size:clamp(25px, 8vw, 34px);
    line-height:1.12;
  }

  .tourenberichte-hero__box p{
    font-size:15px;
    line-height:1.5;
  }

  .tourenberichte-hero__buttons{
    width:100%;
    align-items:stretch;
    gap:10px;
    margin-top:18px;
  }

  .tourenberichte-hero__buttons .tour-btn{
    width:100%;
  }

  .tour-info-grid,
  .tour-media-grid,
  .tour-support-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .tour-report-grid{
    gap:16px;
  }

  .tour-report-card{
    gap:16px;
    padding:16px;
    border-radius:18px;
  }

  .tour-info-card,
  .tour-support-card,
  .tour-report-fact{
    padding:18px 16px;
  }

  .tour-media-card__body{
    padding:16px;
  }

  .tour-report-actions,
  .tour-closing-actions{
    flex-direction:column;
  }

  .tour-report-actions .tour-btn,
  .tour-closing-actions .tour-btn{
    width:100%;
  }

  .tour-closing-card{
    padding:22px 18px;
  }

  .tour-top-link{
    width:100%;
    padding:10px 12px;
    border:1px solid #dcecf2;
    border-radius:999px;
    background:#ffffff;
    box-shadow:0 6px 16px rgba(7,45,67,0.05);
  }

  .tour-top-link::before{
    content:"↑";
    display:inline-block;
    font-size:1rem;
    line-height:1;
  }
}

@media (max-width:479px){
  .tour-info-card,
  .tour-media-card,
  .tour-report-card,
  .tour-support-card,
  .tour-closing-card{
    border-radius:16px;
  }

  .tour-media-card__video video{
    aspect-ratio:16 / 11;
  }
}