/* ─────────────────────────────────────────────
   PHOTO CTA STRIP
   Reusable full-width promotional banner with
   a photo background, gradient overlay, kicker,
   headline, body text, and a primary CTA button.

   Usage:
   <section class="photo-cta-strip">
     <div class="container">
       <div class="photo-cta-img" style="background-image:url('...')">
         <div class="photo-cta-overlay"></div>
         <div class="photo-cta-content">
           <div class="photo-cta-badge">✦ Kicker text</div>
           <h2 class="photo-cta-title">Headline</h2>
           <p class="photo-cta-desc">Supporting description.</p>
           <a href="..." class="photo-cta-btn">CTA Label</a>
         </div>
       </div>
     </div>
   </section>
───────────────────────────────────────────── */

.photo-cta-strip {
  padding: 2rem 0;
  overflow: hidden;
}

.photo-cta-img {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center 30%;
  border-radius: 12px;
  overflow: hidden;
}

.photo-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.55) 55%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

.photo-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 2.5rem;
  max-width: 560px;
}

.photo-cta-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5A461;
  margin-bottom: 0.55rem;
}

.photo-cta-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.45rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.photo-cta-desc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.photo-cta-btn {
  display: inline-block;
  background: #bf5700;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.15s;
}

.photo-cta-btn:hover {
  background: #a34a00;
}

@media (max-width: 680px) {
  .photo-cta-img {
    height: 260px;
    background-position: 70% center;
  }
  .photo-cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.75) 0%,
      rgba(10, 10, 10, 0.6) 100%
    );
  }
  .photo-cta-content {
    padding: 1.5rem;
    max-width: 100%;
  }
}
