/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

/* =========================================
   Anchor Global Helpers
   Shared across custom templates/shortcodes
   ========================================= */

.anchor-eyebrow,
.anchor-contact-eyebrow,
.anchor-contact-card-eyebrow,
.anchor-contact-form-eyebrow {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d68100;
}

/* Shared button bridge for custom code + CF7.
   This keeps custom buttons consistent with each other.
   Adjust this one rule if Salient global button styling changes. */
.anchor-action-button,
input.anchor-action-button,
button.anchor-action-button,
.anchor-contact-directions,
.anchor-contact-form-wrap .anchor-cf7-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 176px;
  min-height: 50px;
  margin: 0;
  padding: 16px 30px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #ff9900 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.anchor-action-button:hover,
.anchor-action-button:focus,
input.anchor-action-button:hover,
input.anchor-action-button:focus,
button.anchor-action-button:hover,
button.anchor-action-button:focus,
.anchor-contact-directions:hover,
.anchor-contact-directions:focus,
.anchor-contact-form-wrap .anchor-cf7-submit:hover,
.anchor-contact-form-wrap .anchor-cf7-submit:focus {
  background: #d68100 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* =========================================
   Anchor Shared Button Helper
   Used by custom shortcodes and CF7 submit buttons
   ========================================= */

a.anchor-action-button,
.anchor-action-button,
input.anchor-action-button,
button.anchor-action-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto;
  min-width: 176px;
  min-height: 50px;
  margin: 0;
  padding: 16px 30px !important;
  border: none !important;
  border-radius: 999px !important;
  background: #ff9900 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  cursor: pointer;
}

a.anchor-action-button:hover,
a.anchor-action-button:focus,
.anchor-action-button:hover,
.anchor-action-button:focus,
input.anchor-action-button:hover,
input.anchor-action-button:focus,
button.anchor-action-button:hover,
button.anchor-action-button:focus {
  background: #d68100 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* =========================================
   ANCHOR RISK NUMBER GLOBAL TOP BAR
   ========================================= */

.anchor-risk-banner {
  display: none !important;
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #1D3A1E;
  color: #ffffff;
  box-sizing: border-box;
  box-shadow: none !important;
}

.anchor-risk-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1680px, calc(100% - 96px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.22) 14%,
    rgba(255, 255, 255, 0.22) 86%,
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.anchor-risk-banner * {
  box-sizing: border-box;
}

.anchor-risk-banner-inner {
  width: 100%;
  max-width: 1425px;
  margin: 0 auto;
  min-height: 40px;
  padding: 5px 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.anchor-risk-banner-text {
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #ffffff;
}

.anchor-risk-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 24px;
  border-radius: 999px;
  background: #FF9900;
  color: #1D3A1E;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.anchor-risk-banner-button:hover,
.anchor-risk-banner-button:focus {
  background: #FFD3A4;
  color: #1D3A1E;
  text-decoration: none;
  transform: translateY(-1px);
}

@media (max-width: 999px) {
  .anchor-risk-banner-inner {
    min-height: 40px;
    padding: 5px 32px;
  }

  .anchor-risk-banner-text {
    font-size: 14px;
  }

  .anchor-risk-banner-button {
    min-height: 36px;
    font-size: 14px;
    padding: 8px 24px;
  }
}

@media (max-width: 690px) {
  .anchor-risk-banner-inner {
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 9px 22px;
    text-align: center;
  }

  .anchor-risk-banner-text {
    font-size: 14px;
  }
}

/* =========================================
   ANCHOR GLOBAL FOOTER
   ========================================= */

.anchor-site-footer {
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0 !important;
  background: #1D3A1E;
  color: #ffffff;
  box-sizing: border-box;
}

.anchor-site-footer * {
  box-sizing: border-box;
}

.anchor-site-footer a {
  color: inherit;
  text-decoration: none;
}

.anchor-site-footer a:hover,
.anchor-site-footer a:focus {
  color: #FF9900;
  text-decoration: none;
}

.anchor-site-footer-main {
  position: relative !important;
  overflow: hidden !important;
  padding: 58px 70px 50px;

  background-color: #1D3A1E !important;
  background-image:
    linear-gradient(
      90deg,
      rgba(29, 58, 30, 0.90) 0%,
      rgba(29, 58, 30, 0.78) 44%,
      rgba(29, 58, 30, 0.62) 100%
    ),
    url('/wp-content/uploads/2026/04/LinkedInHeader-2026-02.jpg') !important;
  background-size: cover, cover !important;
  background-position: center center, center top !important;
  background-repeat: no-repeat, no-repeat !important;
}

.anchor-site-footer-main::before,
.anchor-site-footer-main::after {
  display: none !important;
}

.anchor-site-footer-inner {
  position: relative !important;
  z-index: 2 !important;
  width: 100%;
  max-width: 1425px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1.05fr) minmax(210px, 0.72fr) minmax(200px, 0.68fr) minmax(280px, 0.95fr);
  gap: 52px;
  align-items: start;
}

.anchor-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.anchor-footer-logo-link {
  display: inline-block;
  width: 100%;
  max-width: 285px;
}

.anchor-footer-logo {
  display: block !important;
  width: 100% !important;
  max-width: 285px !important;
  height: auto !important;
}

.anchor-footer-summary {
  max-width: 430px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

.anchor-footer-heading {
  margin: 0 0 22px;
  color: #FF9900;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.anchor-footer-contact p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
}

.anchor-footer-contact span {
  color: #ffffff;
  font-weight: 700;
}

.anchor-footer-doc-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}

.anchor-footer-doc-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.anchor-footer-doc-links a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.anchor-site-footer .anchor-footer-risk-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: #FF9900;
  color: #143014;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
}

.anchor-site-footer .anchor-footer-risk-cta:hover,
.anchor-site-footer .anchor-footer-risk-cta:focus {
  background: #FFD3A4;
  color: #143014;
  text-decoration: none;
}

.anchor-footer-ria {
  display: block !important;
  width: 165px !important;
  max-width: 165px !important;
  height: auto !important;
  border-radius: 6px;
}

.anchor-footer-signup {
  width: 100%;
  max-width: 350px;
}

.anchor-footer-signup__heading {
  margin: 0 0 14px;
  color: #FF9900;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.anchor-footer-signup__text {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.anchor-footer-signup__form {
  display: grid;
  gap: 12px;
  margin: 0;
}

.anchor-footer-signup__field {
  display: grid;
  gap: 6px;
}

.anchor-footer-signup__label {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.anchor-site-footer .anchor-footer-signup__input {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 11px 13px;
  border: 1px solid rgba(233, 244, 230, 0.56);
  border-radius: 0;
  background: rgba(233, 244, 230, 0.96);
  color: #143014;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
  box-shadow: none;
}

.anchor-site-footer .anchor-footer-signup__input:focus,
.anchor-site-footer .anchor-footer-signup__input:focus-visible {
  border-color: #FF9900;
  outline: 3px solid rgba(255, 153, 0, 0.42);
  outline-offset: 2px;
  background: #ffffff;
}

.anchor-site-footer .anchor-footer-signup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  margin: 4px 0 0;
  padding: 12px 22px;
  border: 0;
  border-radius: 0;
  background: #FF9900;
  color: #143014;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.anchor-site-footer .anchor-footer-signup__submit:hover,
.anchor-site-footer .anchor-footer-signup__submit:focus {
  background: #FFD3A4;
  color: #143014;
}

.anchor-site-footer .anchor-footer-signup__submit:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 3px;
}

.anchor-footer-signup__status {
  min-height: 20px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
}

.anchor-footer-signup__honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}

.anchor-mailchimp-target {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  border: 0;
  visibility: hidden;
}

.anchor-site-footer-bottom {
  background: #143014;
  padding: 22px 70px;
}

.anchor-site-footer-bottom-inner {
  width: 100%;
  max-width: 1425px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.anchor-site-footer-bottom p {
  order: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

.anchor-site-footer .anchor-footer-bottom-cta {
  order: 2;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.anchor-site-footer .anchor-footer-bottom-cta__text {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
}

.anchor-site-footer p:last-child {
  margin-bottom: 0;
}

/* Kill default spacing on Salient containers that contain this custom footer */
.wpb_wrapper:has(.anchor-site-footer),
.vc_column-inner:has(.anchor-site-footer),
.wpb_column:has(.anchor-site-footer),
.row_col_wrap_12:has(.anchor-site-footer),
.container-wrap:has(.anchor-site-footer) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 999px) {
  .anchor-site-footer-main {
    padding: 52px 32px 46px;
  }

  .anchor-site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .anchor-footer-brand {
    grid-column: 1 / -1;
  }

  .anchor-footer-signup {
    max-width: none;
  }

  .anchor-footer-logo-link,
  .anchor-footer-logo {
    max-width: 260px !important;
  }

  .anchor-site-footer-bottom {
    padding: 20px 32px;
  }

  .anchor-site-footer-bottom-inner {
    align-items: flex-start;
    gap: 18px;
  }

  .anchor-site-footer .anchor-footer-bottom-cta {
    flex-wrap: wrap;
  }
}

@media (max-width: 690px) {
  .anchor-site-footer-main {
    padding: 42px 24px 38px;
  }

  .anchor-site-footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .anchor-footer-logo-link,
  .anchor-footer-logo {
    max-width: 235px !important;
  }

  .anchor-footer-summary {
    margin-top: 22px;
    font-size: 17px;
  }

  .anchor-footer-contact p,
  .anchor-footer-doc-links a,
  .anchor-footer-signup__text {
    font-size: 17px;
  }

  .anchor-site-footer .anchor-footer-signup__submit {
    width: 100%;
  }

  .anchor-site-footer .anchor-footer-risk-cta {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .anchor-footer-ria {
    width: 145px !important;
    max-width: 145px !important;
  }

  .anchor-site-footer-bottom {
    padding: 20px 24px;
  }

  .anchor-site-footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
  }

  .anchor-site-footer-bottom p {
    order: 2;
  }

  .anchor-site-footer .anchor-footer-bottom-cta {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .anchor-site-footer .anchor-footer-bottom-cta__text {
    white-space: normal;
  }
}
/* =========================================
   ANCHOR SINGLE POST CTA / FOOTER GAP FIX
   Removes Salient's leftover white spacing
   between the final post CTA and custom footer.
   ========================================= */

body.single-post #ajax-content-wrap .container-wrap {
  padding-bottom: 0 !important;
}

body.single-post #ajax-content-wrap .container-wrap .main-content,
body.single-post #ajax-content-wrap .container-wrap .row {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

body.single-post .post-content > :last-child,
body.single-post .entry-content > :last-child {
  margin-bottom: 0 !important;
}

body.single-post .anchor-blog-cta-full {
  margin-bottom: 0 !important;
}

body.single-post .anchor-site-footer {
  margin-top: 0 !important;
}

/* =========================================
   HOW WE HELP SERVICE CARDS
   Match homepage Solutions card treatment
   ========================================= */

body.page-id-1056 #services + .wpb_row .card-with-image-custom,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom {
  background: transparent !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom > .vc_column-inner,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom > .vc_column-inner {
  position: relative;
  min-height: 292px;
  overflow: hidden;
  padding: clamp(28px, 2.7vw, 36px) !important;
  border: 1px solid rgba(171, 193, 143, 0.16);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(44, 81, 52, 0.94), rgba(34, 66, 41, 0.92)) !important;
  box-shadow: 0 14px 38px rgba(6, 18, 9, 0.14);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom > .vc_column-inner::before,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom > .vc_column-inner::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 2px;
  background: #FF9900;
  opacity: 0.82;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom:hover > .vc_column-inner,
body.page-id-1056 #services + .wpb_row .card-with-image-custom:focus-within > .vc_column-inner,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom:hover > .vc_column-inner,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom:focus-within > .vc_column-inner {
  border-color: rgba(255, 153, 0, 0.34);
  background:
    linear-gradient(180deg, rgba(48, 88, 57, 0.96), rgba(36, 70, 44, 0.94)) !important;
  transform: translateY(-2px);
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .column-bg-overlay,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .column-bg-overlay {
  display: none !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .wpb_wrapper,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .wpb_wrapper {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .wpb_wrapper::before,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .wpb_wrapper::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 26px;
  background: url('/wp-content/themes/salient-child/assets/icons/Anchor-icons-orange-01.png') center / contain no-repeat;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom:nth-child(2) .wpb_wrapper::before {
  background-image: url('/wp-content/themes/salient-child/assets/icons/Anchor-icons-orange-02.png');
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom:nth-child(3) .wpb_wrapper::before {
  background-image: url('/wp-content/themes/salient-child/assets/icons/Anchor-icons-orange-03.png');
}

body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom:nth-child(1) .wpb_wrapper::before {
  background-image: url('/wp-content/themes/salient-child/assets/icons/Anchor-icons-orange-04.png');
}

body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom:nth-child(2) .wpb_wrapper::before {
  background-image: url('/wp-content/themes/salient-child/assets/icons/Anchor-icons-orange-05.png');
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .img-with-aniamtion-wrap,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .img-with-aniamtion-wrap {
  display: none !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom h5.vc_custom_heading,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom h5.vc_custom_heading {
  margin: 0 !important;
  color: #ffffff !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: clamp(30px, 2.45vw, 40px) !important;
  font-weight: 500 !important;
  line-height: 1.04 !important;
  letter-spacing: 0.01em !important;
  text-align: left !important;
  text-transform: none !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom h5.vc_custom_heading::after,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom h5.vc_custom_heading::after {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  margin: 20px 0 0;
  background: #FF9900;
  opacity: 0.86;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .wpb_text_column,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .wpb_text_column {
  margin: 20px 0 0 !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .wpb_text_column p,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .wpb_text_column p {
  margin: 0 !important;
  color: rgba(233, 244, 230, 0.76) !important;
  font-family: "Albert Sans", Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.68 !important;
  text-align: left !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta {
  margin: auto 0 0 !important;
  padding-top: 26px;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_wrap,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_wrap,
body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: fit-content;
  color: #FF9900 !important;
  font-family: "Albert Sans", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.14em !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text::after,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text::after {
  content: "";
  position: static;
  display: block;
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  margin: 0;
  border-bottom: 0;
  border-left: 0;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  opacity: 1;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 180ms ease;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text:hover,
body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text:focus,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text:hover,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text:focus {
  color: #ffffff !important;
  text-decoration: none !important;
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text:hover::after,
body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text:focus::after,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text:hover::after,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text:focus::after {
  transform: translateX(3px) rotate(45deg);
}

body.page-id-1056 #services + .wpb_row .card-with-image-custom .nectar-cta .link_text:focus-visible,
body.page-id-1056 #services + .wpb_row + .wpb_row .card-with-image-custom .nectar-cta .link_text:focus-visible {
  outline: 2px solid #FF9900;
  outline-offset: 5px;
}

/* =========================================
   WHY WE'RE DIFFERENT CORE VALUES
   ========================================= */

body.page-id-9 .anchor-core-values {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding: clamp(78px, 8vw, 118px) 70px;
  background:
    radial-gradient(circle at 26% 12%, rgba(171, 193, 143, 0.34), transparent 33%),
    radial-gradient(circle at 78% 74%, rgba(91, 126, 81, 0.42), transparent 38%),
    linear-gradient(135deg, #0f2a16 0%, #1D3A1E 48%, #2c5134 100%);
  color: #ffffff;
}

body.page-id-9 .anchor-core-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 153, 0, 0.92) 0 30%, transparent 30% 100%) top left / min(482px, 34vw) 4px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.9;
  pointer-events: none;
}

body.page-id-9 .anchor-core-values__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1425px;
  margin: 0 auto;
}

body.page-id-9 .anchor-core-values__header {
  max-width: 880px;
  margin-bottom: clamp(42px, 5vw, 66px);
}

body.page-id-9 .anchor-core-values__eyebrow {
  margin: 0 0 18px;
  color: #FF9900;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-id-9 .anchor-core-values__heading {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 5vw, 74px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body.page-id-9 .anchor-core-values__intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(233, 244, 230, 0.78);
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: clamp(17px, 1.15vw, 19px);
  font-weight: 400;
  line-height: 1.72;
}

body.page-id-9 .anchor-core-values__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
  align-items: stretch;
}

body.page-id-9 .anchor-core-values__card {
  position: relative;
  grid-column: span 2;
  display: grid;
  min-height: clamp(236px, 18vw, 260px);
  overflow: hidden;
  place-items: center;
  padding: clamp(30px, 3vw, 38px);
  border: 1px solid rgba(171, 193, 143, 0.16);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(44, 81, 52, 0.94), rgba(34, 66, 41, 0.92));
  box-shadow: 0 14px 38px rgba(6, 18, 9, 0.14);
}

body.page-id-9 .anchor-core-values__card:nth-child(4) {
  grid-column: 2 / span 2;
}

body.page-id-9 .anchor-core-values__card:nth-child(5) {
  grid-column: 4 / span 2;
}

body.page-id-9 .anchor-core-values__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(112px, 10vw, 144px);
  height: clamp(112px, 10vw, 144px);
  background: #FF9900;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.96;
  pointer-events: none;
}

body.page-id-9 .anchor-core-values__number {
  position: absolute;
  top: clamp(17px, 1.7vw, 24px);
  left: clamp(22px, 2.1vw, 30px);
  z-index: 1;
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 4.2vw, 60px);
  font-style: normal;
  font-weight: 400;
  line-height: 0.8;
  pointer-events: none;
}

body.page-id-9 .anchor-core-values__card h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: #ffffff;
  font-family: "Albert Sans", Arial, sans-serif;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: center;
}

@media (max-width: 1024px) {
  body.page-id-9 .anchor-core-values {
    padding: 76px 32px;
  }

  body.page-id-9 .anchor-core-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-id-9 .anchor-core-values__card,
  body.page-id-9 .anchor-core-values__card:nth-child(4),
  body.page-id-9 .anchor-core-values__card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 690px) {
  body.page-id-9 .anchor-core-values {
    padding: 64px 24px;
  }

  body.page-id-9 .anchor-core-values__grid {
    grid-template-columns: 1fr;
  }

  body.page-id-9 .anchor-core-values__heading {
    font-size: clamp(39px, 11vw, 52px);
  }

  body.page-id-9 .anchor-core-values__card {
    min-height: 220px;
  }

  body.page-id-9 .anchor-core-values__card::before {
    width: 108px;
    height: 108px;
  }

  body.page-id-9 .anchor-core-values__number {
    top: 17px;
    left: 22px;
    font-size: 42px;
  }
}
