/* Shared bottom "M&A 문의하기" CTA component (matches the home page contact-cta).
   Used via partials/contact-cta.njk. Relies on .section-heading* and
   .button.button-primary from style.css. */

.contact-cta {
  position: relative;
  background-color: var(--dark);
  background-image: url('/assets/images/cta-section.avif');
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(21, 21, 21, 0.55);
}

.contact-cta .container {
  position: relative;
  z-index: 1;
}

.contact-cta-heading {
  color: var(--white);
}

.contact-cta-paragraph {
  margin: 16px 0 32px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
  .contact-cta {
    padding: 40px 0;
  }
}
