  /* 
    Fonts: Use var(--primary-font) & var(--secondary-font)
    Color: Use var(--primary-color) & var(--primary-color-hover) & var(--secondary-color)
*/

body > img {
    display: none; /* GTM generated elements hidden | Causes layout shift */
}

:root {
    --initial-font-size: 18px;
    --space-between-elements: 50px;
    --element-spacing: calc(var(--space-between-elements) / 2) 0
  }

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { height: 100% }
body, html { width: 100%;}

body {
    font-family: var(--secondary-font);
    color: var(--text-color);
    background-color: #fff;
    font-weight: 400;
    font-size: var(--initial-font-size);
    line-height: 1.5;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--primary-font);
    font-weight: bold;
    color: var(--heading-color);
    margin: 0 0 15px;
    line-height: 1.16;
    letter-spacing: -.36px;
}

h1 {
    font-size: 48px
}

h2 {
    font-size: 36px;
}

h3, h4 {
    font-size: 24px
}

.container {
    position: relative;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* SPACING BETWEEN ELEMENTS | PADDING/MARGIN */

.padding, .search .content-wrapper {
    padding: var(--element-spacing);
}

.margin {
    margin: var(--element-spacing);
}

/* END SPACING BETWEEN ELEMENTS */

.article-content {
    position: relative;
}

.flex {
    display: flex;
    align-items: center;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);;
    padding: 10px 25px;
    text-decoration: none;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--primary-font);
}

.btn-alt {    
    background-color: #5b0013;
    border-radius: 5px;
    color: #fff;
    text-transform: none;
    font-size: 18px;
}

.btn.btn-alt:hover {
    color: #fcb900;
   text-decoration: none;
}

.btn-disabled {
    color: #d8d8d8;
    background-color: #536688;
    border: none
}

.btn:hover {
    background-color: var(--primary-color-hover);
    text-decoration: underline;
    color: white;
}

/* .btn-alt:hover {
    color: #fff;
    background-color: var(--primary-color);
} */

.header.pos-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.logged-in .header.pos-fixed {
    top: 46px
}

.primary-color {
    color: var(--primary-color);
}

.secondary-color {
    color: var(--secondary-color);
}

.primary-font {
    font-family: var(--primary-font);
}

.secondary-font {
    font-family: var(--secondary-font);
}

/* BreadCrumbs */
.breadcrumb {
    list-style: none;
    list-style-position: inside;
    display: flex;
    font-size: 15px;
}

.breadcrumb .seperator {
    margin: 0 5px;
}

.breadcrumb li a {
    color: var(--primary-color)
}

/* Search Results Page */
.search .container > h2 {
    margin-bottom: 0;
}

.search .container > p {
    font-size: 14px;
    font-style: italic;
}

.search .container .tease {
    padding: 25px 0;
}

.search .container .tease .read-more {
    color: var(--primary-color)
}

.search .pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search .pagination ul {
    list-style: none;
    display: flex;
    gap: 15px;
    font-size: 14px;
}

/* .search .pagination .pages li * {
    padding: 10px;
} */


@media screen and (max-width: 999px) {
    :root {
        --initial-font-size: 18px;
        --space-between-elements: 50px;
      }

    h1 {
        font-size: 48px
    }
    
    h2 {
        font-size: 26px;
    }
    
    h3, h4 {
        font-size: 24px
    }

    .padding, .search .content-wrapper {
        padding-top:20px;
        padding-bottom: 20px;
    }
    
    
}


/* =========================================================
   Request Info Form – 44px Accessibility Fix
   ========================================================= */

/* Inputs, selects, textarea */
.request-info #eddyform input,
.request-info #eddyform select,
.request-info #eddyform textarea {
    height: auto;                 /* override fixed heights */
    min-height: 44px;             /* WCAG minimum */
    padding: 10px 14px;           /* fits cleanly into 44px */
    font-size: 16px;              /* accessibility-safe */
    line-height: 1.4;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Select-specific spacing */
.request-info #eddyform select {
    padding-right: 40px;          /* room for arrow */
    appearance: none;
    -webkit-appearance: none;
}

/* Center dropdown arrow */
#eddyform [data-field-type="select"] .inner:after {
    top: 50%;
    right: 14px;
    transform: translateY(-50%) scale(1, .65);
    font-size: 14px;
    pointer-events: none;
}

/* Field wrapper cleanup */
.request-info #eddyform .field {
    padding: 0;
    border: 1px solid #777;
    background: #fff;
}

/* Inner wrapper */
.request-info #eddyform .field > .inner {
    padding: 0;
}

/* Keyboard focus visibility */
.request-info #eddyform input:focus-visible,
.request-info #eddyform select:focus-visible,
.request-info #eddyform textarea:focus-visible {
    outline: 2px solid #ffb71e;
    outline-offset: 2px;
}

/* Error message placement */
.request-info #eddyform .error-message {
    top: calc(100% + 4px);
    font-size: 13px;
}


/* Fix disclaimer spacing at bottom */
.request-info .disclaimer {
    margin-top: -1px !important;
    padding-bottom: 8px;
    line-height: 1.4;
    font-size: 10px !important;
}

/* Ensure form container grows correctly */
.request-info {
    padding-bottom: 60px; /* prevents text from being cut off */
}

/* Prevent submit button from crowding disclaimer */
#eddyform .actions {
    margin-bottom: 16px;
}

.why-card .link a {
  display: flex;                 /* key change */
  align-items: center;           /* vertical center */
  justify-content: center;       /* horizontal center */
  min-height: 44px !important;              /* accessibility */
  padding: 2px 20px !important;
  text-align: center;
  box-sizing: border-box;
  padding-top: 12px;
  padding-bottom: 8px;
}

/* =========================================================
   Mobile Override – prevent 31px collapse
   ========================================================= */
@media screen and (max-width: 999px) {
    .request-info #eddyform input,
    .request-info #eddyform select,
    .request-info #eddyform textarea {
        height: auto;
        min-height: 44px;
        font-size: 16px;
    }
}




@media screen and (max-width: 999px) {
    .request-info {
        padding-bottom: 70px;
    }

    .request-info .disclaimer {
        font-size: 11px;
        line-height: 1.5;
    }
}