/* FULL-WIDTH HERO */
.marina-hero{
  position: relative;
  height: clamp(380px, 45vw, 520px);  
  width: 100%;
  border-radius: 16px;
}

.marina-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;

}

.marina-hero-overlay{
  position: absolute;
  inset: 0;
  background: none;
  display: flex;
  align-items: flex-end;
  border-radius: 16px;
  justify-content: flex-start;
  padding: 0 0 22px 22px;
}

.marina-hero-inner{
  width: auto;
  margin: 0;
  padding: 10px 16px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
}

.marina-hero-inner h1{
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: .2px;
  font-style: italic;
}

.marina-hero-inner p{
  margin: 10px 0 0;
  font-size: 18px;
  opacity: .92;
}

/* PAGE CONTENT */
.marina-content{
  padding: 28px 16px 44px;
  text-align: center;
  border-radius: 16px ;
}

.marina-card{
  display: block;     /* ← key to shrink-wrap */
  background: white;
  border-radius: 16px;
  padding: 34px 40px;
  margin: 0 auto;
  width: min(1500px, 100%);  /* same width you had */
  text-align: left;          /* reset text alignment */
  box-shadow: 0 14px 45px rgba(0,0,0,.12);
}

.marina-grid{
  width: min(1500px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.marina-block{
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(15,29,50,.08);
  margin-bottom: 22px;
}

.marina-block:last-child{
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.marina-block h2{
  margin: 0 0 14px;
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: rgba(15,29,50,.82);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}

.marina-block h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: rgba(15,29,50,.25);
  border-radius: 2px;
}

.muted{
  margin: 0;
  color: rgba(15,29,50,.82);
  line-height: 1.75;
  font-size: 16.5px;
}

.highlights{
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(15,29,50,.8);
}

.highlights li{
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.highlights li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(15,29,50,.45);
}

.boat-counts{
  margin: 8px 0 0;
  padding-left: 0;
  list-style: none;
  font-size: 16.5px;
  color: rgba(15,29,50,.8);
}

.boat-counts li{
  margin: 8px 0;
  padding-left: 18px;
  position: relative;
}

.boat-counts li::before{
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(15,29,50,.45);
  font-size: 18px;
  line-height: 1;
}

.boat-counts strong{
  font-weight: 700;
  color: #0f1d32;
}


/* CTA */
.cta-card{
  margin-top: 18px;
  background: #0f1d32;
  border: 1px solid rgba(15,29,50,.10);
  border-radius: 16px;
  padding: 18px;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.cta-card h2{
  margin: 0 0 8px;
  font-size: 23px;
  color: white;
  font-weight: bold;
}

.cta-card p{
  font-style: italic;
  margin: 0 0 14px;
}
/* This makes it sit under BOTH columns */
.flyer-cta-full{
  grid-column: 1 / -1;
  margin-top: -50px;
}

/* Optional: make CTA centered + constrained */
.flyer-cta-full .cta-card{
  max-width: 520px;
  margin: 0 auto;
}


.btn{
  display: block;
  text-align: center;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  margin-top: 10px;
}

.btn.primary{
  background: white;
  color: #0f1d32;
}

.btn.primary:hover{
  background: #4978ba;
  color: white;
}
/* RESPONSIVE */
@media (max-width: 820px){
  .marina-grid{
    grid-template-columns: 1fr;
  }
  .marina-hero{
    height: 320px;
  }
  .marina-hero-inner h1{
    font-size: 38px;
  }
}
