/* =========================================================
   Bogazi EN Landing (Astra) — NO CROP COVER VERSION
   - Fix: cover image must NOT be cropped (use contain)
   - Scoped to .sb-en-landing to avoid theme conflicts
   ========================================================= */

/* Layout wrapper */
.sb-en-landing{
  max-width:1100px;
  margin:0 auto;
  padding:40px 20px;
}

/* Hero */
.sb-en-landing .sb-hero{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
  padding: 6px 0 18px;
}

@media(min-width:900px){
  .sb-en-landing .sb-hero{
    grid-template-columns:420px 1fr;
  }
}

/* Cover container — IMPORTANT: do not clip the cover */
.sb-en-landing .sb-cover{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:#f2f2f2;
  padding:12px;              /* gives breathing room so nothing “touches” edges */
  overflow:visible;          /* critical: do not clip */
}

/* Cover image — IMPORTANT: contain, never cover */
.sb-en-landing .sb-cover img{
  display:block;
  width:100%;
  height:auto;
  max-width:100%;
  object-fit:contain !important;   /* overrides any theme/global rules */
  object-position:center center !important;
  border-radius:12px;              /* inner rounding */
  background:#fff;
}

/* Copy */
.sb-en-landing .sb-copy h1{
  font-size:clamp(30px,4vw,44px);
  line-height:1.05;
  margin:0 0 10px;
}

.sb-en-landing .sb-sub{
  font-size:18px;
  opacity:.8;
  margin:0 0 16px;
}

/* Lede paragraph */
.sb-en-landing .sb-lede{
  font-size:17px;
  line-height:1.65;
  margin: 0;
}

/* CTA */
.sb-en-landing .sb-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:16px 0 18px;
}

.sb-en-landing .sb-btn{
  padding:12px 18px;
  border-radius:12px;
  font-weight:700;
  text-decoration:none;
  border:1px solid rgba(0,0,0,.15);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1.1;
}

.sb-en-landing .sb-primary{
  background:#111;
  color:#fff;
  border-color:#111;
}

.sb-en-landing .sb-secondary{
  background:#fff;
  color:#111;
}

/* Sections */
.sb-en-landing .sb-section{
  padding:32px 0;
  border-top:1px solid rgba(0,0,0,.08);
}

.sb-en-landing .sb-section h2{
  font-size:22px;
  margin:0 0 10px;
}

/* Small polish: avoid overly wide text lines on big screens */
@media(min-width:900px){
  .sb-en-landing .sb-copy{
    max-width: 640px;
  }
}
