/* Full-bleed wrapper */
.quote-cta{
  position: relative;
  width: 100%;
  margin: 0;
  /* If your theme uses constrained containers, uncomment the next two lines to truly bleed edge-to-edge:
  width: 100vw;
  margin-left: calc(50% - 50vw);
  */
  overflow: hidden;
}

/* Media: edge-to-edge image with fixed heights per breakpoint */
.quote-cta__media picture,
.quote-cta__media img{
  display: block;
  width: 100%;
  height: 600px;           /* desktop height */
  object-fit: cover;
}



/* Centered overlay content */
.quote-cta__overlay{
  position: absolute;
  inset: 0;
  display: block;
  place-items: left;
  padding: 174px;
  text-align: left;
}

/* Optional small circular button (sits above quote) */
.quote-cta__topbtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #FFDF00;     /* yellow */
  color: #0B2D35;          /* dark green icon */
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  border: none;
  cursor: pointer;
  margin-bottom: 4px;       /* slight space above quote */
  transition: transform .2s ease, box-shadow .2s ease;
}
.quote-cta__topbtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

/* Quote typography (Archivo 48/56 desktop) */
.quote-cta__quote{
  max-width: min(600px, 92%);
  margin: 0;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 48px;
  /* remove default blockquote styling if theme applies */
  padding: 0;
  border: 0;
}

/* Button below the quote */
.quote-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #FFDF00;
  color: #191919;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.quote-cta__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
/* Mobile height */
@media (max-width: 767px){
  .quote-cta__media img{ height: 700px; }  /* mobile height */

  .quote-cta__overlay{
  position: absolute;
  inset: 0;
  display: block;
  place-items: left;
  text-align: center;
}
}
/* Mobile type tweaks */
@media (max-width: 767px){
  .quote-cta__quote{
    font-size: 22px;    /* scale down for small screens */
    line-height: 30px;
    text-shadow: 0 1px 8px rgba(0,0,0,.3);
  }
.quote-cta__overlay{
  padding: 15px;
	padding-top:80px;
}
