/* globals.css */
@import url("https://use.typekit.net/qos6iun.css");

:root {
  /* Colors */
  --white: #FAFAFA;
  --black: #101B30;
  --primary: #0348A2;
  --secondary: #0072F7;
  --yellow: #FAA916;
  --vibrant-blue: #184FDB;
  --off-white-blue: #F0F3F8;
  --light-blue: #E0FBFC;
  --aqua: #9BF8F4;
  --text: #2C23DE;
  --light-gray: #F5F5F5;
  --light-gray-secondary: #E6EDF6;
  --dark-gray: #37435A;

  /* Gradients */
  --heading-gradient: linear-gradient(94deg, #184FDB 0.58%, #37435A 97.87%);
  --customer-story-hero: linear-gradient(94deg, #E0FBFC 0.58%, #96AFEE 97.87%);
  --button-primary-blue: linear-gradient(95deg, #4C77E2 0%, #184FDB 100%);
  --button-primary-blue-hover: linear-gradient(0deg, rgba(55, 67, 90, 0.20) 0%, rgba(55, 67, 90, 0.20) 100%), linear-gradient(95deg, #184FDB 0%, #184FDB 100%);
  --button-primary-orange: linear-gradient(87deg, rgba(250, 169, 22, 0.90) 5.16%, #FAA916 28.05%, #F4845F 70.55%, rgba(242, 112, 89, 0.90) 94.84%);
  --button-primary-orange-hover: linear-gradient(87deg, #FAA916 5.16%, #FAA916 28.05%, #FAA916 70.55%, #FAA916 94.84%);
  --button-primary-white: linear-gradient(94deg, #F0F3F8 0.58%, #E6EDF6 97.87%);
  
  /* Sizing */
  --spacing-small: 8px;
  --spacing-medium: 16px;
  --spacing-large: 24px;
  --spacing-xlarge: 48px;
  --spacing-xxl: 64px;

  /* Shadows */
  --shadow: 0px 10px 40px rgba(16, 27, 48, 0.2);
  --blue-shadow: 0px 10px 30px -30px rgba(24, 79, 219, 0.15), 0px 15px 35px -10px rgba(24, 79, 219, 0.25);
  --orange-shadow: 0px 10px 30px -30px rgba(238, 187, 64, 0.15), 0px 15px 35px -10px rgba(239, 89, 20, 0.35);
  --white-shadow: 0px 15px 40px 0px rgba(16, 27, 48, 0.30);
}

.block-container {
  max-width: 1024px;
  margin: 4rem auto;
}

.eyebrow {
  display: block;
  font: bold calc(12rem / 16)/calc(23 / 12);
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.pricing-developer-cta {
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 64px;
}

.pricing-developer-cta h2.wp-block-heading {
  background: linear-gradient(102.47deg, #9BF8F4 12.69%, #96AFEE 94.55%);
  background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
  margin: 0 0 16px !important;
  font-size: 24px !important;
  font-weight: 500;
}

.pricing-developer-cta p {
  color: white;
  margin: 0 !important;
  font-size: 18px;
  max-width: 75%;
}

.pricing-developer-cta .wp-block-buttons {
  justify-content: end;
  margin: 32px 0 0;
}

.pricing-developer-cta .wp-block-button {
  position: relative;
}

.pricing-developer-cta .wp-block-button a {
  position: absolute;
  width: max-content;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-developer-cta .wp-block-button a::after {
  content: '';
  background: url('/blocks/custom/pricing-tabs/svg/right-arrow-blue.svg') no-repeat center;
  display: block;
  height: 20px;
  width: 12px;
}

@media only screen and (max-width: 480px) {
  .pricing-developer-cta {
    padding: 24px;
  }

  .pricing-developer-cta p {
    max-width: 100%;
  }
}
  