/**
 * CTA Banner Block Styles
 * 
 * Extracted from assets/scss/templates/_homepage.scss
 * Converted to SCSS with design tokens
 * 
 * @package Tax_Court_USWDS
 * @since   1.0.1
 * 
 * Related: ACF-017
 */
/**
 * Brand Token System
 * 
 * Centralized design tokens for the Tax Court USWDS Theme.
 * All color, typography, spacing, layout, and accessibility values are defined here.
 */
/**
 * Apply text style from a typography token map
 * 
 * @param {Map} $style-map - Typography token map (e.g., $text-page-heading)
 */
/**
 * Apply focus ring styling for keyboard navigation
 */
/**
 * Ensure minimum touch target size for accessibility
 */
/**
 * Mobile breakpoint media query
 */
/**
 * Desktop breakpoint media query
 */
.cta-banner {
  padding: 48px 0;
  background-color: #FFFFFF;
  border-top: 1px solid #F2F4F7;
  border-bottom: 1px solid #F2F4F7;
}

.cta-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 767px) {
  .cta-banner__container {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cta-banner__flavor-heading {
  font-family: "Merriweather", Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: #765B00;
}

.cta-banner__flavor-heading:before {
  content: "";
  display: inline-block;
  position: relative;
  height: 24px;
  left: 0;
  top: 3px;
  width: 4px;
  background-color: #765B00;
}

.cta-banner__heading {
  font-family: "Merriweather", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #103052;
  margin: 0 0 8px;
}

.cta-banner__description {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #1E2A3A;
  margin: 0 0 16px;
}

.cta-banner__image {
  /* Image takes right column on desktop, stacks below content on mobile */
}

.cta-banner__img {
  max-width: 616px;
  max-height: 434px;
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .cta-banner__action .button {
    width: 100%;
    text-align: center;
  }
}
