/* Block: Simple CTA — block-specific styling
 * Placed in blocks/simple-cta/style.css so ACF enqueues it with the block.
 * Displays a full-width colour block with centred headline, lead text and
 * horizontally spaced buttons.
 */

.simple-cta_block {
  text-align: center;
}

.simple-cta_block .container {
  max-width: 1200px;
  margin: 0 auto;
}

.simple-cta_block .simple-cta_content {
  color: #fff;
  background: #0069ff;
  margin: 0 auto;
  padding: 3rem 0;
  border-radius: 8px;
}

.simple-cta_header {
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  line-height: 3.5rem;
  margin-bottom: 1.5rem;
}

.simple-cta_lead {
  color: #fff;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.simple-cta_buttons {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.simple-cta_button {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.simple-cta_button:hover,
.simple-cta_button:focus {
  background: #e9e9e9;
}

@media (max-width: 767.98px) {
  .simple-cta_header {
    font-size: 2.5rem;
    line-height: 3rem;
  }
  .simple-cta_lead {
    font-size: 1.25rem;
  }
  .simple-cta_buttons {
    gap: 1rem;
  }
}
