/*
 * Copyright 2020 Adobe. All rights reserved.
 * This file is licensed to you under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License. You may obtain a copy
 * of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
 * OF ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 */

/*
 * Global Layout Rule: Center Main Content
 * ---------------------------------------------------------------------
 * This ensures that the main content sections are centered on the page,
 * matching the alignment of the header, especially on very wide screens
 * or when the browser is zoomed out.
 */
main .section {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;     
}
:root {
  /* colors */
  --background-color: white;
  --light-color: #f8f8f8;
  --dark-color: #505050;
  --text-color: #131313;
  --link-color: #3b63fb;
  --link-hover-color: #1d3ecf;

  /* fonts */
  --body-font-family:"FordF1", "Mulish", Tahoma, Arial, "Helvetica Neue", Helvetica, sans-serif;
  --heading-font-family: roboto-condensed, roboto-condensed-fallback, sans-serif;

  /* body sizes */
  --body-font-size-m: 22px;
  --body-font-size-s: 19px;
  --body-font-size-xs: 17px;

  /* heading sizes */
  --heading-font-size-xxl: 55px;
  --heading-font-size-xl: 44px;
  --heading-font-size-l: 34px;
  --heading-font-size-m: 27px;
  --heading-font-size-s: 24px;
  --heading-font-size-xs: 22px;

  /* nav height */
  --nav-height: 92px;
}

/* fallback fonts */
@font-face {
  font-family: roboto-condensed-fallback;
  size-adjust: 88.82%;
  src: local('Arial');
}

.font-white{
  color : rgb(253, 241, 241) !important;
}

@font-face {
  font-family: roboto-fallback;
  size-adjust: 99.529%;
  src: local('Arial');
}

 @font-face {
    font-family: 'FordF1';
    src: url('../fonts/FordF1VF.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
  }


@media (width >= 900px) {
  :root {
    /* body sizes */
    --body-font-size-m: 18px;
    --body-font-size-s: 16px;
    --body-font-size-xs: 14px;

    /* heading sizes */
    --heading-font-size-xxl: 45px;
    --heading-font-size-xl: 36px;
    --heading-font-size-l: 28px;
    --heading-font-size-m: 22px;
    --heading-font-size-s: 20px;
    --heading-font-size-xs: 18px;
  }
}
@media (min-width: 900px) {
  body.article main {
    margin-left: 3rem;
  }
}
body {
  display: none;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--body-font-family);
  font-size: var(--body-font-size-m);
  line-height: 1.6;
  width: 100%; /* Ensure body takes full width */
  overflow-x: hidden !important; /* Global rule to prevent horizontal scrollbar */
}

body.appear {
  display: block;
}

header {
  height: var(--nav-height);
}

header .header,
footer .footer {
  visibility: hidden;
}

header .header[data-block-status="loaded"],
footer .footer[data-block-status="loaded"] {
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {  
  /* font-family: var(--heading-font-family); */
  font-family: "FordF1", "Mulish", Tahoma, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  line-height: 2.625rem;
  font-size: 1.5625rem;
  scroll-margin: 40px;
  color: #00095b;
  margin-top: 0.8rem;
  margin-bottom: 1.3rem;
}
h6{  
   margin: 0 !important;
}
h7{
  color : none;
  line-height: 1rem;
  font-size: 0.8rem;
   margin: 0 !important;
}
h1 {
  font-size: 3.375rem;
  line-height: 3.875rem;
  margin-top: 3.5rem !important;
  margin-bottom: 2.5rem !important;
}
h2 { 
  font-size: 2.875rem;
  line-height: 3.25rem;
  margin-top: 3.5rem !important;
  margin-bottom: 2.5rem !important;
 }
h3 {
   font-size: 1.75rem;
   line-height: 2.125rem;
   margin-top: 1rem !important;
   margin-bottom: 1.5rem !important;
}
h4 { font-size: var(--heading-font-size-m); }
h5 { font-size: var(--heading-font-size-s);
margin-bottom: 0.5rem; }
h6 { font-size: var(--heading-font-size-xs); }


body.article-page main p.list-label-no-bottom-margin {
  margin-bottom: 0 !important;
}

dl,
ol,
ul,
pre,
blockquote {
  margin-top: 0.8em;
  margin-bottom: 0.8rem;
  font-size: 1rem;
  line-height: 1.8rem;
}
/* body.article-page main{
  margin-left: auto;
  margin-right: auto;
} */
body.article-page main p {
  margin-bottom: 1.5rem !important; /* Override for article pages */
  line-height: 1.6rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3d3d3d;
}

/* body.article-page ul {
  margin-bottom: 1.5rem !important; 
  line-height: 1.3rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3d3d3d;
} */


 body.article-page main .p-small-line-height p {
  margin-bottom: 1.5rem !important; 
  line-height: 1rem !important;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3d3d3d;
}

body.article-page main p strong{
  font-weight: 700; 
}

body.article-page ul {
  margin-top : 0rem !important;
}


code,
pre {
  font-size: var(--body-font-size-s);
}

pre {
  padding: 16px;
  border-radius: 8px;
  background-color: var(--light-color);
  overflow-x: auto;
  white-space: pre;
}

main > div {
   margin: 40px 16px; 
}

input,
textarea,
select,
button {
  font: inherit;
}

/* links */
a:any-link {
  color: var(--link-color);
  text-decoration: none;
  overflow-wrap: break-word;
  font-family: "FordF1", sans-serif;
}

a:hover:not(a.button.button.tertiary,a.button.button.primary,a.button.button.secondary) {
  color: #636262;
  text-decoration: none;
}
/* In styles.css */

/* 1. SETUP THE BASE BUTTON STATE & TRANSITIONS */
a.button.primary,
button.primary,a.button.secondary,
button.secondary {
  /* --- Basic Appearance --- */
  box-sizing: border-box;
  display: inline-block;
  max-width: 100%;
  margin: 12px 0;
  border: 2px solid transparent;
  border-radius: 2.4em;
  padding: 0.5em 1.2em;
  font-family: var(--body-font-family);
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  background-color: var(--link-color);
  color: var(--background-color);
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
     max-width : 14rem !important; 

  /* --- Animation Setup --- */
  position: relative; /* Essential for positioning the animation layer */
  z-index: 1; /* Ensures text stays on top of the animation */
  transition: color 0.4s ease-in-out; /* Smoothly transitions the text color */

    border-radius: 25px;
  padding: 12px 24px;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 900;
}

/* 2. DEFINE INITIAL COLORS FOR EACH BUTTON TYPE */

/* --- Primary Button: Blue background, White text --- */
a.button.primary,
button.primary {
  background-color: var(--link-color);
  color: white;
  border-color: var(--link-color);
}

/* --- Secondary Button: Dark background, White text --- */
/* We use a dark background so the initial white text is visible */
a.button.secondary,
button.secondary {
  background-color: white;
  color: white;
  border-color: var(--dark-color);
  color: var(--dark-color);
}

/* 3. CREATE THE HIDDEN ANIMATION LAYER */
a.button.primary::before,
button.primary::before,
a.button.secondary::before,
button.secondary::before {
  content: '';
  position: absolute;
  z-index: -1; /* Places it behind the text */
  background-color: white; /* The color that will wipe across */

  /* Start it off-screen to the left */
  top: 0;
  bottom: 0;
  left: -100%;
  width: 100%;
  
  /* Animate its movement when it changes */
  transition: left 0.4s ease-in-out;
}

/* 4. DEFINE THE HOVER STATE */

/* --- Animate the Layer: On hover, slide the white layer into view --- */
a.button.primary:hover::before,
a.button.primary:focus::before,
button.primary:hover::before,
button.primary:focus::before,
a.button.secondary:hover::before,
a.button.secondary:focus::before {
  left: 0;
}

/* --- Change Text Color: On hover, change BOTH buttons' text to blue --- */
a.button.primary:hover,
a.button.primary:focus,
button.primary:hover,
button.primary:focus,
a.button.secondary:hover,
a.button.secondary:focus,
button.secondary:hover,
button.secondary:focus {
  color: var(--link-color); /* Change text to blue */
  border-color: var(--link-color);
}

 a.button.tertiary,
button.tertiary {
  font-family: var(--body-font-family);
  display: inline-block;
  max-width: 100%;
  font-style: bold;
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  /* overflow: hidden; */
  text-overflow: ellipsis;
  white-space: nowrap;
} 

a.button.tertiary::after {
  content: '';
  display: inline-block;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 9 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1.5 1L7.5 7L1.5 13' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 10px;
  margin-left: 8px;
  transition: transform 0.2s ease-in-out;
  margin-top: 0.8em;
}

.button.tertiary:hover::after {
  transform: translateX(3px);
}


main img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 16px;
  margin-bottom: 3rem;
  /* margin-top: 3rem; */
  /* padding-top: 1.5rem; */  
}

.icon {
  display: inline-block;
  height: 4rem;
  width: 2rem;
}

.icon img {
  height: 100%;
  width: 100%;
}

/* sections */
main > .section {
  /* margin: 0px 0; */
}

main > .section > div {
  max-width: 1230px;
  /* overflow-x: hidden; */
  font-family: "FordF1", "Mulish", Tahoma, Arial, "Helvetica Neue", Helvetica, sans-serif;
  /* margin-left: 20px; */
}

main > .section:first-of-type {
  margin-top: 0;
}

/* @media (width >= 900px) {
  main > .section > div {
    padding: 0 32px;
  }
} */

/* section metadata */
main .section.light,
main .section.highlight {
  background-color: var(--light-color);
  margin: 0;
  padding: 40px 0;
}


/* Add this new rule to target only the mail icon */
.icon.icon-mail {
  height: 4rem; /* Or any size you prefer */
  width: 4rem;  /* Or any size you prefer */
}
.icon.icon-location2 {
  height: 4rem; /* Or any size you prefer */
  width: 4rem;  /* Or any size you prefer */
  color: var(--link-color);
}
p:has(.icon.icon-mail) {
  /* Turn the paragraph into a flex container */
  display: flex;
  
  /* Center the items horizontally */
  justify-content: left;
  
  /* Align the items vertically to their center (important for different-sized text/icons) */
  align-items: center;
  
  /* Optional: Add a small gap between the icon and the text */
  gap: 8px;
}
p:has(.a) {
  /* Turn the paragraph into a flex container */
  display: flex;
  /* Center the items horizontally */
  justify-content: left;
  /* Align the items vertically to their center (important for different-sized text/icons) */
  align-items: center;
}

p:has(> span.icon) {
  display: flex;         /* 1. Turns the <p> into a flex container */
  align-items: center;  
  gap: 8px;              /* 3. (Recommended) Adds a clean 8px space between them */
}
p:has(.icon.icon-location2) {
  /* Turn the paragraph into a flex container */
  display: flex;
  
  /* Center the items horizontally */
  justify-content: left;
  
  /* Align the items vertically to their center (important for different-sized text/icons) */
  align-items: center;
  
  /* Optional: Add a small gap between the icon and the text */
  gap: 8px;
}

p:has(.icon.icon-location) {
  /* Turn the paragraph into a flex container */
  display: flex;
  
  /* Center the items horizontally */
  justify-content: left;
  
  /* Align the items vertically to their center (important for different-sized text/icons) */
  align-items: center;
  
  /* Optional: Add a small gap between the icon and the text */
  gap: 8px;
}

p.button-container{
 font-family: var(--body-font-family); 
}

p.button-container text{
  align-items: center;
  justify-content: center;
  justify-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  width : fit-content ;
    font-family: var(--body-font-family);
  display: inline-block;
  font-style: bold;
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
p{
  font-family: var(--body-font-family);
  margin-top: 0rem !important;
  margin-bottom: 0.5rem !important;
  color : #3d3d3d;
  font-size: 0.95rem;
  line-height: 1.8rem;
  font-weight: 400;
}
  
.p-without-space{
  margin-bottom: 0rem !important;
}


/* The container for the tags, allowing them to wrap. */
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px; /* 8px vertical gap, 12px horizontal gap */
  margin-top: 2rem;
  margin-bottom: 3.75rem; /* Add some space below the tags before the next content */
}

/* Individual tag pill styling */
.tags-wrapper .tag {
  display: inline-block;
  background-color: #E5E5E5; /* Light grey background */
  border: 1px solid #dcdcdc; /* Subtle border */
  padding: 4px 1rem;
  line-height: 1rem;
  border-radius: 0.25rem; /* Slightly rounded corners as in your design */
  font-size: 0.9rem;
  color: #0c0c0c;
  width:fit-content ;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  font-family: var(--body-font-family);
}


.columns-wrapper .contained-section {
  background-color: #f7f7f7; /* A light grey background */
  border-radius: 20px;       /* The rounded corners */
  
  /* Optional: A very subtle shadow for depth */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.background-grey{
   padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #f2f2f2;
  border-radius: 2.5rem;
  /* margin-left: 2rem !important;
  margin-right: 2rem !important; */
}

.bg-blue{
  background-color: #00095b;
  border-radius: 2rem;
  padding: 3rem;
  color: white !important;
}
.center{
   text-align: center;
}
.background-grey p{
  font-size: 1rem;
  line-height: 1.625rem;
  color: #000;
  font-weight: 500;
}

.background-grey h2{
  margin-bottom: 1rem;
}

.background-grey-support .columns > div > div{
  justify-content: center;
}
.background-grey-support{
  background-color: #f2f2f2;
  border-radius: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: auto;
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.background-grey-support p{
  font-size: 1rem;
  line-height: 1.625rem;
  color: #000;
  font-weight: 500;
}

.background-grey-support h2{
  margin-bottom: 1rem;
}
.text-blue {
  color: #066fef !important;
  display: inline;
}
.text-black {
  color: #010203 !important;
  display: inline;
}
.text-grey {
  color: #3d3d3d !important;
  display: inline;
}
.text-white {
  color: #e1e1e1 !important;
  display: inline;
}
.icon.icon-x-white{
   color: #e1e1e1 !important;
}
/* 
  This rule now says: "Find a body tag with the 'article-page' class,
  then find the main tag inside it, and apply these styles to every
  .section element within that main tag."
*/
body.article-page main .section {
  /* padding-left: 0.6rem;  */
  padding-right: 0.5rem;
  box-sizing: border-box;
  margin-left: auto;
  margin-right : auto;
}
body.article-page main > div{
   margin : 0px !important
}
/* 
  This rule is from our earlier discussion and should also be included.
  It creates the two-column layout for the social media icons and the content.
*/
body.article-page main {
  /* display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 2rem; */
  padding-left: 10px ; 
  padding-right: 25px ; 
}

/* body.article-page main > .social-share-wrapper {
  grid-column: 1 / 2;
}
body.article-page main > .section {
  grid-column: 2 / 3;
  padding-left: 0; 
} */
/* Import the new block's CSS */
@import url('../blocks/social-share/social-share.css');
body.article-page main > .social-share-wrapper {
  grid-column: 1 / 2; /* Place this wrapper in the first column */
  position: sticky; /* This is the key to making it stay on screen */
  top: 15rem; /* Adjust based on your header height to prevent overlap */
  align-self: start; /* Important for sticky positioning in a grid */
  z-index: 1; /* Ensure it stays on top of other content if needed */
  width: 2rem !important;
}
body.article-page main > .section {
  grid-column: 2 / 3; /* Place all article sections in the second column */
}
/* ==========================================================================
   FLOATING SOCIAL SHARE ICONS FOR ARTICLE PAGE
   ========================================================================== */
/*
 * Step 1: Add some space on the left side of the main content area
 * to make room for our floating icons. This applies to the entire <main>
 * container on article pages.
*/
body.article-page main {
  position: relative; /* Establishes a positioning context */
  margin-left: 2.5rem; /* Creates the empty space on the left */
}
/*
 * Step 2: Style the social share block to float on top of the page.
*/
body.article-page .social-share {
  /* --- Positioning --- */
  position: fixed; /* Lifts the element out of the document flow */
  top: 17rem;      /* Distance from the top of the viewport. Adjust as needed. */
  left: 0.5rem;      /* Distance from the left edge of the viewport. */
  z-index: 10;     /* Ensures it floats above other content. */
  /* --- Sizing --- */
  width: 2rem;     /* Sets the width of the icon container */
  height: auto;
  /* --- Reset Margins --- */
  margin: 0;
}
body.article-page h3 {
  margin-top: 0.5rem !important;
}
/* body.article-page h3 {
  margin-top: 3rem;
  margin-bottom: 7rem;
}
body.article-page h2 {
  margin-top: 3rem;
  margin-bottom: 7rem;
} */
body.article-page .columns-container {
   margin-top: 3rem;
   margin-bottom: 5rem;
   margin-left: 0;
   margin-right: 0;
}
footer .footer{
  background-color: #f2f2f2;
}
header nav .nav-sections ul > li > a, header nav .nav-sections ul > li > span{
  color : #00095b; 
}
.icon.icon-contact-us-email{
  border-radius: 0px;
  width: 3rem;
  height: 3rem;
}
.icon.icon-contact-us-location{
  width: 3rem;
  height: 3rem;
}
.main.icon.icon-contact-us-email.img{
  border-radius: 0px;
}
/* ==========================================================================
   GLOBAL MOBILE & TABLET RESPONSIVE STYLES (769px and smaller)
   ========================================================================== */
@media (max-width: 769px) {
  /* --- NEW: Hide the hero content section on mobile --- */
  .hero-content, .quote-content-wrapper, .social-share {
    display: none !important; /* Hide this element and remove its space */
  }
  /* --- Part 1: Fix Global Content Overflow --- */
  html,
  body {
    width: 100%;
    /* Removed: overflow-x: hidden; - handled by global body rule */
  }
  img {
    max-width: 100%;
    height: auto;
  }
  /* --- Part 2: Fix the Header Layout --- */
  header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  header nav .nav-brand img {
    max-width: 250px;
    height: auto;
    margin: 0;
  }
  /* --- Part 3: General Mobile-Friendly Adjustments --- */
  main > .section > div {
    max-width: none;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: 0; /* Ensure no auto margins from desktop rule */
    margin-right: 0; /* Ensure no auto margins from desktop rule */
  }
  main .columns {
    flex-direction: column;
  }
  .article-list-controls {
    flex-direction: column;
    gap: 1rem;
  }
  body.article-page main {
    margin-left: 0;
  }
  body.article-page .social-share {
    position: static;
    width: 100%;
    margin-bottom: 2rem;
  }
  .background-grey-support{
  background-color: #f2f2f2;
  border-radius: 2.5rem;
  padding: 2rem;
  height: auto;
  padding-top: 0.25rem;
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}
.columns > div > div text {
   margin-bottom: 0.5rem !important;
   /* margin-top: 0.2rem !important; */
}
/* .columns img{
  margin-top: 1.5rem !important;
} */
}
/* ==========================================================================
   STICKY FOOTER LAYOUT
   This ensures the footer always stays at the bottom of the viewport,
   even on pages with very little content.
   ========================================================================== */
/* 1. Prepare the root containers */
html {
  height: 100%; /* Ensure html tag takes full height */
}
body {
  display: flex; /* Turn the body into a vertical flex container */
  flex-direction: column;
  min-height: 100vh; /* Make the body at least as tall as the viewport */
  margin: 0; /* Remove any default body margin */
}
/* 2. Allow the main content area to grow */
/* This is the key step: 'main' will expand to fill all available empty space,
   pushing the footer down to the bottom. */
main {
  flex: 1 0 auto;
}
/* 3. Style the footer wrapper */
/* Now that the footer is at the bottom, we ensure its background
   spans the full width of the page. */
footer.footer-wrapper {
  width: 100%;
  /* The background color should be applied here for a full-bleed effect */
  background-color: #e6f0ff; /* <<< Your footer background color */
}
/* --- Optional but Recommended Fixes --- */
/* If your header is fixed, prevent it from overlapping the main content */
/* body.header-is-fixed main {
  padding-top: var(--nav-height); 
} */
/* Prevent unwanted margin from the last element inside main creating a gap */
main > .section:last-of-type {
  margin-bottom: 0;
}
.divider {
    border-bottom: 1px solid #bebbbb;
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
}



.partners-logo .columns > div > .columns-img-col{
    padding : 2rem 3rem !important;
}



.global-caring-month a.button.primary, button.primary, a.button.secondary, button.secondary{
   max-width: 30rem !important;

}

main .section .background-grey{
  margin: 0 !important;
}
main br { display: block; margin-bottom: 3rem;}


/* Container that gets an explicit pixel width from JS */
main .default-content-wrapper .docx-img-size {
  line-height: 0;                /* kill inline gaps around images */
  margin-left: 0;             /* center by default */
  margin-right: 0;
  margin-bottom: 1.5rem;
  /* width is set inline (px) by JS; max-width clamps to column/viewport */
}

/* Make media fill the container’s width while preserving aspect ratio */
main .default-content-wrapper .docx-img-size > picture,
main .default-content-wrapper .docx-img-size > img,
main .default-content-wrapper .docx-img-size > a > picture,
main .default-content-wrapper .docx-img-size > a > img {
  display: block;
  width: 100%;
  height: auto;                  /* height scales from width */
}



main .default-content-wrapper .docx-img-size {
  margin-left: 0;
  text-align: left;
}

/* Inline description that appears next to the image */
.docx-img-description {
  font-size: 0.7rem;
  line-height:0 !important;
  color: inherit;      /* or a specific color */
}
@media (max-width: 767px) {
  /* make the columns block not overflow */
  .columns .columns-img-col {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .columns .columns-img-col picture,
  .columns .columns-img-col img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
}
.default-content-wrapper p > hr {
  margin: 0; /* no extra margin inside the p */
}
.default-content-wrapper p:has(> hr) {
  margin: 2rem 0;  /* control spacing via p instead */
}
.section hr,
.default-content-wrapper hr,
.columns-wrapper hr {
  border: 0;                       /* remove browser default */
  border-bottom: 1px solid #bebbbb;/* your grey line */
  margin: 1rem 0;                  /* adjust spacing as needed */
  width: 100%;
  box-sizing: border-box;
}
body.article-page main .p-title{
  margin-bottom: 0rem !important;
}
.img-center{
  justify-items: center;
}
body.article-page main .columns{
  margin-top: 5rem;
  margin-bottom: 5rem;
}
body.article-page main .columns img{
  margin: 0 ;
}
body.article-page main img{
  margin-bottom: 0 ;
}
body.article-page main .li-with-space ul li {
  margin-bottom: 1.5rem !important;
}
body.article-page main ul {
  margin-top: 5rem !important; 
  margin-bottom: 4rem !important; /* Override for article pages */
  line-height: 1.6rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: #3d3d3d;
}
body.article-page main .no-top-gap-ul ul {
  margin-top: 0rem !important;  
  margin-bottom: 2rem !important;  
}
body.article-page main .right{
  text-align: right;
}
.icon.icon-contact-us-email img,.icon.icon-contact-us-location img{
  margin: 0rem !important;
}
.partners-logo img, .hero-wrapper img{
  margin-top: 0;
}

.section.single-row .default-content-wrapper {
  display: flex;
  flex-wrap: nowrap;         /* keep all buttons on a single line */
  gap: 1rem;                 /* space between buttons */
  justify-content: center;   /* or flex-start / space-between as you prefer */
}

.section.single-row .default-content-wrapper > p.button-container {
  margin: 0;
  display: flex;             /* shrink to fit the button */
}
.section.single-row .default-content-wrapper > p.button-container .button {
  white-space: nowrap;
}
