/**
 * Book a Call Section - CSS
 * Reusable component styles
 */

.book-call-section {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
  z-index: 1;
}

.book-call__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 8px;
}

.book-call__subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 48px;
}

.book-call__embed {
  max-width: 100%;
  margin: 0 auto;
}

.book-call__embed .calendly-inline-widget {
  min-width: 280px;
}

/* Responsive */
@media (max-width: 768px) {
  .book-call-section {
    padding: 60px 0;
  }
  .book-call__title {
    font-size: 1.75rem;
  }
  .book-call__subtitle {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
  .book-call__embed .calendly-inline-widget {
    height: 800px !important;
  }
}

@media (max-width: 480px) {
  .book-call__title {
    font-size: 1.5rem;
  }
}
