/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: A plain-vanilla &amp; lightweight theme for Elementor page builder
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 2.7.1.1686763185
Updated: 2023-06-14 12:19:45

*/


/* =============================================================
   TABLE OF CONTENTS
   =============================================================
   1. Thin Line Overlap Fix
   2. Rounded Dividers
   3. Push-Right Button
   4. Flex Column Utilities
   5. Expanding Columns (4-6 Template)
   6. Vidyard Embeds
   7. Gutenberg Button Override
   8. Testimonial Card Typography
   9. Utility Classes
   10. Nav Dropdown Pointer Fix
   11. Secondary Header Buttons (Contact Us + WPML pill)
   12. Pardot / Inline Form Submit Button
   13. Resource Post Inline Links (Hexagon Sky)
   14. HxDR Arrow Buttons (Loop Card CTAs)
   15. Push-Right Icon Color Variants
   ============================================================= */


/* =============================================================
   1. THIN LINE OVERLAP FIX
   Prevents 1px gap between stacked outerGridContainer sections
   ============================================================= */

.e-con.outerGridContainer {
  margin-top: -1px;
}


/* =============================================================
   2. ROUNDED DIVIDERS
   Thick rounded bars used as section/heading accents.
   Apply class .rounded-divider to an Elementor Divider widget.
   Color variants: .land-divider, .sky-dark-divider, .sea-divider
   ============================================================= */

.rounded-divider .elementor-divider-separator {
  display: block;
  height: var(--thickLineWidth);
  background-color: var(--e-global-color-0e01939);
  border-radius: 999px;
  border: none;
  width: 100%;
}

.rounded-divider.land-divider .elementor-divider-separator {
  background: #82C40F;
}

.rounded-divider.sky-dark-divider .elementor-divider-separator {
  background: #005298;
}

.rounded-divider.sea-divider .elementor-divider-separator {
  background: #04CFE6;
}


/* =============================================================
   3. PUSH-RIGHT BUTTON
   Animated button where the arrow slides right on hover.
   Apply class .push-right-btn to the Button widget wrapper.
   ============================================================= */

.push-right-btn .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: padding 0.5s ease, background-color 0.8s ease, color 0.8s ease, transform 0.6s ease;
  gap: clamp(10px, 0.9vw, 12px);
  width: auto;
  max-width: fit-content;
  fill: var(--e-global-color-text);
}

.elementor-button svg path,
.elementor-button:hover svg path,
.elementor-button:active svg path,
.elementor-button:focus svg path,
.elementor-button:visited svg path {
  fill: var(--button-arrow-color) !important;
}

.push-right-btn .elementor-button-icon {
  margin-top: -3px;
  transition: transform 0.6s ease;
  margin-left: auto;
}

.push-right-btn .elementor-button:hover {
  padding-right: clamp(44px, 4vw, 56px) !important;
}

.push-right-btn:hover .elementor-button-icon {
  transform: translateX(clamp(14px, 2vw, 25px));
}


/* =============================================================
   4. FLEX COLUMN UTILITIES
   Two-column layout where one column fits content width and
   the other fills remaining space.
   Apply .flex-row-fit-fill to the parent row container.
   Apply .fit-column / .fill-column to child containers.
   ============================================================= */

.flex-row-fit-fill {
  display: flex;
  width: 100%;
}

.flex-row-fit-fill > .fit-column {
  width: fit-content;
  flex: 0 0 auto;
  max-width: 50%;
}

.flex-row-fit-fill > .fill-column {
  flex: 1 1 auto;
  min-width: 0;
}

@media (max-width: 1024px) {
  .flex-row-fit-fill > .fit-column {
    max-width: 100%;
  }
}


/* =============================================================
   5. EXPANDING COLUMNS (4-6 TEMPLATE)
   Interactive section where clicking a column expands it.
   Used with the [R] 4-6 - Expanding Columns Section template.
   ============================================================= */

/* --- Borders --- */
.contentExpandBorder1 {
  border: none;
}

.contentExpandBorder2,
.contentExpandBorder3,
.contentExpandBorder4 {
  border-left: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
}

/* --- Desktop layout --- */
.innerExpandGridContainer {
  display: flex;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.contentExpandContainer {
  position: relative;
  flex: 1;
  transition: flex 0.7s ease !important;
  overflow: hidden;
  cursor: pointer;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(24px, 2.8vw, 42px);
}

.contentExpandContainer.active {
  flex: 4;
}

.contentExpandContainer:not(.active) {
  flex: 1;
}

.contentExpandContainer h3 {
  z-index: 2;
  position: relative;
}

.contentExpandColumn,
.buttonExpandColumn {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.contentExpandContainer.active .contentExpandColumn,
.contentExpandContainer.active .buttonExpandColumn {
  opacity: 1;
  visibility: visible;
}

.contentExpandContainer > * {
  position: relative;
  z-index: 1;
}

/* --- Tablet (2x2 grid) --- */
@media (max-width: 1200px) {
  .contentExpandBorder1 {
    border-bottom: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
  }

  .contentExpandBorder2 {
    border-left: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
    border-bottom: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
  }

  .contentExpandBorder3 {
    border: none;
  }

  .contentExpandBorder4 {
    border-left: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
  }

  .innerExpandGridContainer {
    flex-wrap: wrap;
    height: auto;
  }

  .contentExpandContainer {
    flex: 0 0 50%;
    height: 500px;
    cursor: default;
  }

  .contentExpandColumn,
  .buttonExpandColumn {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100%;
  }

  .contentExpandContainer,
  .contentExpandContainer.active,
  .contentExpandContainer:not(.active) {
    flex: 0 0 50% !important;
  }
}

/* --- Mobile landscape (single column) --- */
@media (max-width: 880px) {
  .contentExpandBorder1,
  .contentExpandBorder2,
  .contentExpandBorder3,
  .contentExpandBorder4 {
    border-left: none !important;
    border-bottom: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
  }

  .contentExpandContainer,
  .contentExpandContainer.active,
  .contentExpandContainer:not(.active) {
    flex: 0 0 100% !important;
    height: auto;
    min-height: 320px;
  }

  .innerExpandGridContainer {
    flex-direction: column;
  }
}

/* --- Mobile portrait --- */
@media (max-width: 767px) {
  .contentExpandContainer,
  .contentExpandContainer.active,
  .contentExpandContainer:not(.active) {
    flex: 0 0 100% !important;
    min-height: 0;
  }

  .contentExpandBorder1,
  .contentExpandBorder2,
  .contentExpandBorder3,
  .contentExpandBorder4 {
    border-bottom: var(--thinLineWidth) solid var(--e-global-color-d7fa53c) !important;
    border-left: none !important;
  }
}


/* =============================================================
   6. VIDYARD EMBEDS
   Two wrapper patterns for Vidyard video iframes.
   .custom-vidyard-wrapper — centered 75% width with border
   .responsive-vidyard-wrapper — fluid 16:9 aspect ratio
   ============================================================= */

.custom-vidyard-wrapper {
  width: 75%;
  margin: 0 auto;
}

.custom-vidyard-wrapper iframe {
  border-radius: 24px;
  padding: 10px;
  border: solid 1px var(--e-global-color-secondary);
  background-color: transparent;
  height: 100%;
}

@media (max-width: 880px) {
  .custom-vidyard-wrapper {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .custom-vidyard-wrapper iframe {
    aspect-ratio: 16 / 9;
    height: clamp(260px, 56vw, 400px);
  }
}

.responsive-vidyard-container {
  padding: clamp(32px, 4vw, 48px) 0;
}

.responsive-vidyard-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--cardBorderRadius);
}

.responsive-vidyard-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--cardBorderRadius);
}


/* =============================================================
   7. GUTENBERG BUTTON OVERRIDE
   Makes WP block editor buttons match Elementor button styling.
   ============================================================= */

.wp-element-button,
.wp-block-button__link {
  background-color: var(--e-global-color-primary) !important;
  color: var(--e-global-color-text) !important;
  font-family: var(--e-global-typography-text-font-family), Sans-serif !important;
  font-weight: var(--e-global-typography-text-font-weight) !important;
  border: 1px solid var(--e-global-color-text) !important;
  border-radius: 100px !important;
  padding: clamp(14px, 1.1vw, 16px) clamp(28px, 3vw, 42px) !important;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer;
  transition: all 0.25s ease !important;
  line-height: 1.2 !important;
}

.wp-element-button:hover,
.wp-element-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  background-color: var(--e-global-color-secondary) !important;
  color: var(--e-global-color-text) !important;
  border: 1px solid var(--e-global-color-secondary) !important;
}

@media (max-width: 880px) {
  .wp-element-button,
  .wp-block-button__link {
    padding: 14px 34px !important;
  }
}

@media (max-width: 767px) {
  .wp-element-button,
  .wp-block-button__link {
    padding: 14px 28px !important;
  }
}


/* =============================================================
   8. TESTIMONIAL CARD TYPOGRAPHY
   Font sizes for the testimonial quote card component.
   Apply classes to Text Editor widgets inside the card.
   ============================================================= */

.testimonial-card-label,
.testimonial-card-author,
.testimonial-card-company {
  font-size: 1.111rem;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-card-author {
  font-weight: 700;
}

.testimonial-card-text {
  font-size: 1.778rem;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1366px) {
  .testimonial-card-text {
    font-size: 1.6rem;
  }
}

@media (max-width: 1200px) {
  .testimonial-card-label,
  .testimonial-card-author,
  .testimonial-card-company {
    font-size: 1rem;
  }

  .testimonial-card-text {
    font-size: 1.444rem;
    line-height: 1.35;
  }
}

@media (max-width: 1024px) {
  .testimonial-card-label,
  .testimonial-card-author,
  .testimonial-card-company {
    font-size: 0.944rem;
  }

  .testimonial-card-text {
    font-size: 1.333rem;
    line-height: 1.4;
  }
}

@media (max-width: 880px) {
  .testimonial-card-label,
  .testimonial-card-author,
  .testimonial-card-company {
    font-size: 0.889rem;
  }

  .testimonial-card-text {
    font-size: 1.222rem;
  }
}

@media (max-width: 767px) {
  .testimonial-card-label,
  .testimonial-card-author,
  .testimonial-card-company {
    font-size: 0.833rem;
  }

  .testimonial-card-text {
    font-size: 1.111rem;
    line-height: 1.45;
  }
}


/* =============================================================
   9. UTILITY CLASSES
   Small helpers applied via CSS Classes in Elementor Advanced tab.
   ============================================================= */

.hxdr-hidden {
  display: none !important;
}

.small-font {
  font-size: clamp(12px, 0.85vw, 13px);
}

.text-light-mode {
  color: var(--e-global-color-b0ec2a8);
}

.card-thumbnail-container {
  background-size: cover !important;
  background-position: center center !important;
}

span.post-navigation__next--title {
  padding: 0 10px;
}


/* =============================================================
   10. NAV DROPDOWN POINTER FIX
   Removes the underline pointer effect from dropdown menu items.
   Elementor applies .elementor-item to both top-level and
   dropdown links, so the pointer ::after leaks into dropdowns.
   ============================================================= */

/* Target all dropdown links — both .elementor-item and .elementor-sub-item */
.elementor-nav-menu--dropdown .elementor-item::before,
.elementor-nav-menu--dropdown .elementor-item::after,
.elementor-nav-menu--dropdown .elementor-sub-item::before,
.elementor-nav-menu--dropdown .elementor-sub-item::after,
/* Active state in dropdown (WordPress marks current page link) */
.elementor-nav-menu--dropdown .elementor-item.elementor-item-active::before,
.elementor-nav-menu--dropdown .elementor-item.elementor-item-active::after,
.elementor-nav-menu--dropdown .elementor-sub-item.elementor-item-active::before,
.elementor-nav-menu--dropdown .elementor-sub-item.elementor-item-active::after,
/* High-specificity overrides for Elementor widget CSS (post-2544, post-10859, etc.) */
.elementor .elementor-nav-menu--dropdown a.elementor-item::after,
.elementor .elementor-nav-menu--dropdown a.elementor-item::before,
.elementor .elementor-nav-menu--dropdown a.elementor-sub-item::after,
.elementor .elementor-nav-menu--dropdown a.elementor-sub-item::before,
.elementor .elementor-nav-menu--dropdown a.elementor-item-active::after,
.elementor .elementor-nav-menu--dropdown a.elementor-item-active::before {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  height: 0 !important;
}


/* =============================================================
   11. SECONDARY HEADER BUTTONS
   Contact Us pill + WPML language switcher pill.
   Dark mode is default. Light mode activates when a parent
   container has the class .hxdr-header-light.

   Replaces WPCode snippet 10170 "Header-SecondaryNav-ButtonsStyling"
   ============================================================= */

/* --- Contact Us pill (dark) --- */
.contact-header-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 2px solid var(--e-global-color-accent) !important;
  border-radius: 40px;
  color: var(--e-global-color-text) !important;
  background-color: var(--e-global-color-primary) !important;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.contact-header-button a:hover {
  background-color: var(--e-global-color-accent) !important;
  color: #000 !important;
  border-color: var(--e-global-color-accent) !important;
}

.contact-header-button a:focus,
.contact-header-button a:active,
.contact-header-button a:visited {
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

/* --- Login Header Button (dark) --- */
li.login-header-button.menu-item {
  flex-shrink: 0;
  width: fit-content;
}

li.login-header-button.menu-item > a.elementor-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 20px !important;
  min-height: 50px;
  box-sizing: border-box;
  border: 1px solid var(--e-global-color-d7fa53c) !important;
  border-radius: 100px !important;
  color: var(--e-global-color-text) !important;
  background-color: transparent !important;
  font-weight: 500;
  transition: all 0.25s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

li.login-header-button.menu-item > a.elementor-item:hover {
  border-color: var(--e-global-color-accent) !important;
  color: var(--e-global-color-accent) !important;
  background-color: transparent !important;
}

li.login-header-button.menu-item > a.elementor-item:focus,
li.login-header-button.menu-item > a.elementor-item:active,
li.login-header-button.menu-item > a.elementor-item:visited {
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

/* --- WPML language switcher pill (dark) --- */
li.wpml-ls-current-language.wpml-ls-menu-item > a.elementor-item {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px !important;
  min-height: 50px;
  box-sizing: border-box;
  border: 1px solid var(--e-global-color-d7fa53c) !important;
  border-radius: 100px !important;
  color: var(--e-global-color-text) !important;
  background-color: var(--e-global-color-primary) !important;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

li.wpml-ls-current-language.wpml-ls-menu-item > a.elementor-item:hover {
  border-color: var(--e-global-color-accent) !important;
  color: var(--e-global-color-accent) !important;
}

/* --- Remove Elementor pointer animation for both pills --- */
li.wpml-ls-current-language.wpml-ls-menu-item > a.elementor-item::before,
li.wpml-ls-current-language.wpml-ls-menu-item > a.elementor-item::after,
.contact-header-button .elementor-item::before,
.contact-header-button .elementor-item::after,
li.login-header-button.menu-item > a.elementor-item::before,
li.login-header-button.menu-item > a.elementor-item::after {
  background-color: transparent !important;
  transition: none !important;
  content: none !important;
}

/* --- WPML dropdown panel --- */
li.wpml-ls-current-language.wpml-ls-menu-item {
  position: relative;
  flex-shrink: 0;
  width: fit-content;
}

li.wpml-ls-current-language.wpml-ls-menu-item > .sub-menu {
  background: #fff !important;
  border: 1px solid var(--e-global-color-d7fa53c) !important;
  border-radius: 14px !important;
  padding: 0 !important;
  margin-top: 6px !important;
  overflow: hidden;
  left: auto !important;
  right: 0 !important;
  min-width: 100% !important;
  width: max-content;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  z-index: 9999;
}

li.wpml-ls-current-language.wpml-ls-menu-item > .sub-menu li {
  border-bottom: 1px solid var(--e-global-color-d7fa53c) !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

li.wpml-ls-current-language.wpml-ls-menu-item > .sub-menu li:last-child {
  border-bottom: 0 !important;
}

li.wpml-ls-current-language.wpml-ls-menu-item > .sub-menu a {
  display: block !important;
  padding: 8px 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
  color: #000 !important;
  background: transparent !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.4;
  text-align: center !important;
  transition: background-color 0.2s ease;
}

li.wpml-ls-current-language.wpml-ls-menu-item > .sub-menu a:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #000 !important;
}

/* --- Nav dropdown panels (match WPML pill dropdown) --- */
.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown {
  background: #fff !important;
  border: 1px solid var(--e-global-color-d7fa53c) !important;
  border-radius: 14px !important;
  padding: 0 !important;
  margin-top: 6px !important;
  overflow: hidden;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  min-width: 100% !important;
  width: max-content;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
  z-index: 9999;
}

.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown li {
  border-bottom: 1px solid var(--e-global-color-d7fa53c) !important;
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown li:last-child {
  border-bottom: 0 !important;
}

.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown a {
  padding: 8px 16px !important;
  border-left: 0 !important;
  border-right: 0 !important;
  color: #000 !important;
  background: transparent !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  transition: background-color 0.2s ease;
}

.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown a:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  color: #000 !important;
}

/* Remove Elementor pointer from dropdown sub-items */
.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown a::before,
.elementor-nav-menu--layout-horizontal li.menu-item-has-children:not(.wpml-ls-menu-item) > .sub-menu.elementor-nav-menu--dropdown a::after {
  content: none !important;
}

/* --- Pill spacing --- */
.contact-header-button,
li.wpml-ls-current-language.wpml-ls-menu-item {
  margin-right: 6px;
}

/* --- Light mode overrides (.hxdr-header-light on parent container) --- */
.hxdr-header-light .contact-header-button a {
  background-color: #fff !important;
  color: var(--e-global-color-b0ec2a8) !important;
}

.hxdr-header-light .contact-header-button a:hover {
  background-color: var(--e-global-color-accent) !important;
  color: #000 !important;
}

.hxdr-header-light li.login-header-button.menu-item > a.elementor-item {
  border-color: var(--e-global-color-d7fa53c) !important;
  color: var(--e-global-color-b0ec2a8) !important;
  background-color: transparent !important;
}

.hxdr-header-light li.login-header-button.menu-item > a.elementor-item:hover {
  border-color: var(--e-global-color-secondary) !important;
  color: var(--e-global-color-secondary) !important;
  background-color: transparent !important;
}

.hxdr-header-light li.wpml-ls-current-language.wpml-ls-menu-item > a.elementor-item {
  background-color: transparent !important;
  color: var(--e-global-color-b0ec2a8) !important;
}

.hxdr-header-light li.wpml-ls-current-language.wpml-ls-menu-item > a.elementor-item:hover {
  border-color: var(--e-global-color-secondary) !important;
  color: var(--e-global-color-secondary) !important;
}

.hxdr-header-light li.wpml-ls-current-language.wpml-ls-menu-item > a .sub-arrow svg {
  fill: var(--e-global-color-b0ec2a8) !important;
}

.hxdr-header-light li.wpml-ls-current-language.wpml-ls-menu-item > a:hover .sub-arrow svg {
  fill: var(--e-global-color-secondary) !important;
}


/* =============================================================
   12. LEGAL CONTENT (Terms of Use, etc.)
   Applied via .legal-content class on the Elementor container.
   Uses `selector` scoping to avoid leaking into header.
   ============================================================= */

.legal-content .elementor-widget-text-editor {
  max-width: 860px;
  line-height: 1.75;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  color: #fff;
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-weight: 600;
  line-height: 1.3;
}

.legal-content h2 { font-size: 22px; }
.legal-content h3 { font-size: 18px; }
.legal-content h4 { font-size: 16px; }
.legal-content h5 { font-size: 15px; font-weight: 500; }

.legal-content p {
  margin-bottom: 0.8em;
}

.legal-content a {
  color: var(--e-global-color-secondary);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* Reduce excessive bold from Word paste */
.legal-content b,
.legal-content strong {
  font-weight: 600;
}

/* Tighten up lists */
.legal-content ul,
.legal-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.legal-content li {
  margin-bottom: 0.4em;
}


/* =============================================================
   12. PARDOT / INLINE FORM SUBMIT BUTTON
   Styles the plain <input type="submit"> in Pardot/HTML-widget
   forms to match the site's button design system.
   ============================================================= */

.elementor-widget-html input[type="submit"] {
  background-color: var(--e-global-color-secondary);
  color: #fff;
  font-family: "Calibri", "Helvetica Neue", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.elementor-widget-html input[type="submit"]:hover {
  background-color: #009ae6;
}


/* =============================================================
   13. RESOURCE POST INLINE LINKS (HEXAGON SKY)
   Inline <a> tags inside the light-mode post-content widget on
   resource singles (articles, case studies, newsletters — all use
   [P] Blog Post template 2704). Excludes Gutenberg and Elementor
   button-class anchors so embedded CTAs keep their pill styling.
   Inline style="color:..." still wins via specificity.
   ============================================================= */

body.single-post .elementor-widget-theme-post-content a:not(.wp-block-button__link):not(.wp-element-button):not(.elementor-button) {
  color: var(--e-global-color-secondary);
}

body.single-post .elementor-widget-theme-post-content a:not(.wp-block-button__link):not(.wp-element-button):not(.elementor-button):hover {
  color: #009ae6;
}


/* =============================================================
   14. HXDR ARROW BUTTONS (LOOP CARD CTAs)
   Pure arrow, no border, no background. Arrow sits with invisible
   runway to its right so the hover-slide reads clearly. Card-level
   hover (.e-loop-item:hover) also fires the effect.
   Classes applied in Elementor → Advanced → CSS Classes:
     .hxdr-arrow-btn-dark   → white arrow → Land Accent on hover
     .hxdr-arrow-btn-light  → black arrow → Sky on hover
   ============================================================= */

.hxdr-arrow-btn-dark .elementor-button,
.hxdr-arrow-btn-light .elementor-button {
  display: inline-flex !important;
  align-items: center;
  padding: 10px 24px 10px 4px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  line-height: 1 !important;
  overflow: visible;
  transform: translateZ(0);
  will-change: transform;
}

.hxdr-arrow-btn-dark .elementor-button-icon,
.hxdr-arrow-btn-light .elementor-button-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hxdr-arrow-btn-dark .elementor-button-icon svg,
.hxdr-arrow-btn-light .elementor-button-icon svg {
  width: 28px;
  height: auto;
  display: block;
}

/* --- Dark variant: white default → Land Accent on hover --- */
.hxdr-arrow-btn-dark .elementor-button-icon svg path {
  fill: var(--e-global-color-text) !important;
  transition: fill 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hxdr-arrow-btn-dark .elementor-button:hover .elementor-button-icon svg path,
.hxdr-arrow-btn-dark .elementor-button:focus-visible .elementor-button-icon svg path,
.e-loop-item:hover .hxdr-arrow-btn-dark .elementor-button-icon svg path {
  fill: var(--e-global-color-accent) !important;
}

.hxdr-arrow-btn-dark .elementor-button:hover .elementor-button-icon,
.hxdr-arrow-btn-dark .elementor-button:focus-visible .elementor-button-icon,
.e-loop-item:hover .hxdr-arrow-btn-dark .elementor-button-icon {
  transform: translateX(20px);
}

/* --- Light variant: black default → Sky on hover --- */
.hxdr-arrow-btn-light .elementor-button-icon svg path {
  fill: #000000 !important;
  transition: fill 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hxdr-arrow-btn-light .elementor-button:hover .elementor-button-icon svg path,
.hxdr-arrow-btn-light .elementor-button:focus-visible .elementor-button-icon svg path,
.e-loop-item:hover .hxdr-arrow-btn-light .elementor-button-icon svg path {
  fill: var(--e-global-color-secondary) !important;
}

.hxdr-arrow-btn-light .elementor-button:hover .elementor-button-icon,
.hxdr-arrow-btn-light .elementor-button:focus-visible .elementor-button-icon,
.e-loop-item:hover .hxdr-arrow-btn-light .elementor-button-icon {
  transform: translateX(20px);
}


/* =============================================================
   15. PUSH-RIGHT ICON COLOR VARIANTS
   Opt-in color-hover variants of .push-right-btn. Icon fill
   transition matches the existing .push-right-btn color
   transition (0.8s ease) for consistent feel.
   Add BOTH classes on the button widget, e.g.:
     .push-right-btn .push-right-icon-black-to-white
     .push-right-btn .push-right-icon-white-to-black
   ============================================================= */

.push-right-icon-black-to-white .elementor-button svg path {
  fill: #000000 !important;
  transition: fill 0.8s ease;
}

.push-right-icon-black-to-white:hover .elementor-button svg path,
.push-right-icon-black-to-white .elementor-button:focus-visible svg path {
  fill: var(--e-global-color-text) !important;
}

.push-right-icon-white-to-black .elementor-button svg path {
  fill: var(--e-global-color-text) !important;
  transition: fill 0.8s ease;
}

.push-right-icon-white-to-black:hover .elementor-button svg path,
.push-right-icon-white-to-black .elementor-button:focus-visible svg path {
  fill: #000000 !important;
}
