/* Full Width CTA Block Frontend Styles */

.full-width-cta {
  /* Full width wrapper - exact Figma specs */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px;
  width: 100%;
  background-color: var(--color-brown-900, #5D3525);
}

.full-width-cta .content-wrapper {
  /* Inner content area - exact Figma specs */
  background-color: var(--color-green-100, var(--color-green-200));
  border: 1px solid var(--color-green-600, #989371);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  padding: 48px 80px;
  width: 100%;
  max-width: 1400px;
}

.full-width-cta .copy-section {
  /* Left content area */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  flex: 1;
  max-width: 520px;
}

.full-width-cta .heading-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.full-width-cta .h1-cta {
  /* Exact Figma typography */
  color: var(--color-green-900, #373A19) !important;
  font-family: var(--font-heading, "Sora") !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1em !important;
  text-transform: uppercase !important;
  text-align: left !important;
  margin: 0;
}

.full-width-cta .body-copy {
  /* Body text - Figma specs */
  color: var(--color-green-900, #373A19) !important;
  font-family: var(--font-body, "Inter") !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5em !important;
  text-align: left !important;
  margin: 0;
}

.full-width-cta .cta-section {
  /* Right CTA area */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
}

.full-width-cta .cta-button {
  /* Button styling - Figma specs */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 24px;
  width: 348px;
  height: 72px;
  background-color: var(--color-yellow-200, #FBEB8F);
  border: 1px solid var(--color-green-400, #D4D2C4);
  text-decoration: none;
  transition: all 0.2s ease;
}

.full-width-cta .cta-button:hover {
  background-color: var(--color-brown-900) !important;
  color: var(--color-yellow-200, #FBEB8F) !important ;
}

.full-width-cta .cta-button:focus {
  outline: 2px solid var(--color-blue-focus, #4F85FD);
  outline-offset: 2px;
}

.full-width-cta .button-text {
  /* Button text - Figma specs */
  color: var(--color-green-950) !important;
  font-family: var(--font-body, "Inter") !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.15em !important;
  letter-spacing: 0.8px !important; /* 5.714285799435207% */
  text-transform: uppercase !important;
  text-align: center !important;
}

.full-width-cta .arrow-icon {
  width: 20px;
  height: 10px;
  color: var(--color-green-950);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .full-width-cta {
    padding: 60px 40px;
  }
  
  .full-width-cta .content-wrapper {
    padding: 40px 60px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  
  .full-width-cta .copy-section {
    max-width: 100%;
  }
  
  .full-width-cta .cta-section {
    width: 100%;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .full-width-cta {
    padding: 40px 20px;
  }
  
  .full-width-cta .content-wrapper {
    padding: 48px 28px;
    gap: 24px;
  }
  
  .full-width-cta .h1-cta {
    font-size: 20px !important;
  }
  
  .full-width-cta .cta-button {
    width: 100%;
    max-width: 348px;
  }
}

@media (max-width: 480px) {
  .full-width-cta {
    padding: 48px 28px;
  }
 
  
  .full-width-cta .h1-cta {
    font-size: 18px !important;
  }
  
  .full-width-cta .body-copy {
    font-size: 14px !important;
  }
  
  .full-width-cta .cta-button {
    height: 64px;
    padding: 20px;
  }
  
  .full-width-cta .button-text {
    font-size: 13px !important;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .full-width-cta .cta-button {
    transition: none;
  }
  
  .full-width-cta .cta-button:hover {
    transform: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .full-width-cta .cta-button {
    border-width: 2px;
  }
} 