/* File: custom-elements/cgm-cta/cgm-cta.css */

.cgm-cta-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* --- THE CTA BAR --- */
.cgm-cta-bar {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 60px;
  border-radius: 20px;
}

.cgm-cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cgm-cta-text-area {
  flex-grow: 1;
  max-width: 800px;
}

.cgm-cta-headline {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.cgm-cta-body {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

/* --- BUTTON --- */
.cgm-cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: var(--btn-base-bg, #2e2e2e);
  color: var(--btn-base-text, #ffffff);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease !important;
  flex-shrink: 0;
  text-align: center;
}

.cgm-cta-btn:hover {
  background: var(--btn-hover-bg, #ffad4d) !important;
  color: var(--btn-hover-text, #2e2e2e) !important;
  transform: translateY(-3px);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .cgm-cta-section {
    padding: 40px 0;
  }

  .cgm-cta-bar {
    /* FIX: Standard 25px padding */
    padding: 30px 25px;
    width: 95%;
  }

  .cgm-cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cgm-cta-headline {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .cgm-cta-body {
    margin-bottom: 20px;
  }
}
