
/* Base callout container */
.dhr-callout {
  background-color: #f7f8fa;           /* very light neutral */
  border-left: 4px solid #0A4B78;      /* brand-ish blue accent */
  border-radius: 6px;                  /* soften corners */
  padding: 1.25rem 1.5rem;             /* internal spacing */
  margin: 1.5rem 0;                    /* space from surrounding text */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Optional subtle “dot” icon at the top-left */
.dhr-callout::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #0A4B78;
  top: 1rem;
  left: 0.75rem;
}

/* Inner content – keep typography, just refine spacing */
.dhr-callout h2,
.dhr-callout h3,
.dhr-callout h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;   /* bring title closer to body text */
}

.dhr-callout p:last-child {
  margin-bottom: 0;        /* avoid extra gap at bottom */
}

/* Links inside callout – slightly emphasized but neutral */
.dhr-callout a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.15em;
}

/* Hover: very subtle lift */
.dhr-callout:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}



/* CARD OVERRIDES */
.dhr-card-test {
  background-color: #f4f4f4;        /* light neutral grey */
  padding: 1.25rem 1.25rem 1.75rem; /* reduced padding */
  border: 1px solid #e0e0e0;        /* light border */
  border-radius: 6px;               /* subtle rounding */
  text-align: center;
  box-shadow: none;                 /* remove default shadows if any */
}

/* ICON — make smaller */
.dhr-card-test .cmp-teaser__image img {
  width: 48px !important;
  height: auto;
  margin-bottom: 0.75rem;
}

/* TITLE — uppercase + dark grey */
.icon-card.dhr-card-test .cmp-icon-card__title,
.dhr-card-test .cmp-icon-card__title {
  text-transform: uppercase !important;
  color: #333333 !important;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* BODY TEXT */
.dhr-card-test p {
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

/* BUTTON — rounded outline */
.dhr-card-test .cmp-button {
  background-color: transparent !important;
  color: #333333 !important;         
  border: 2px solid #333333 !important;
  border-radius: 24px !important;    
  padding: 0.5rem 1.25rem !important;
  font-weight: 700;
}

/* BUTTON HOVER — subtle invert */
.dhr-card-test .cmp-button:hover {
  background-color: #0A4B78 !important;
  color: #ffffff !important;
  transition: 0.2s ease;
}



/* wrapper for whole section */
.dhr-divider {
  position: relative;
  margin: 3rem 0;
  text-align: center;
}

/* use the Separator's line but strip extra spacing */
.dhr-divider .cmp-separator {
  margin: 0;
}

/* draw the line at the vertical center of the container */
.dhr-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid #c8102e; /* your red */
  z-index: 0;
}

/* position & style the button */
.dhr-divider__btn,
.dhr-divider .cmp-button {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  transform: translateY(-50%);   /* sit on the line */
  padding: 0.9rem 1.6rem;
  z-index: 1;

  background-color: #005180;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0;
}

/* keep text on one line if possible */
.dhr-divider__btn .cmp-button__text,
.dhr-divider .cmp-button__text {
  white-space: nowrap;
}

/* hover / focus */
.dhr-divider__btn:hover,
.dhr-divider__btn:focus,
.dhr-divider .cmp-button:hover,
.dhr-divider .cmp-button:focus {
  background-color: #003f63;
}

/* Hide the Separator's built-in line so we only see our custom one */
.dhr-divider .cmp-separator {
  margin: 0;
  height: 0;
}

.dhr-divider .cmp-separator__horizontal-rule {
  border: none;
  height: 0;
}


/* =======================================
   EXPERIMENT C – Button over background image
   ======================================= */
.dhr-image-button {
  position: relative;
  padding: 4rem 0;                /* controls section height */
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* dark overlay for contrast */
.dhr-image-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* make sure any inner content sits above overlay */
.dhr-image-button > * {
  position: relative;
  z-index: 1;
}

/* button styling */
.dhr-image-button .cmp-button {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  background-color: #005180;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0;
}

/* hover state */
.dhr-image-button .cmp-button:hover,
.dhr-image-button .cmp-button:focus {
  background-color: #003f63;
}


/* ============================================
   Experiment D – Hero text styles (headings)
   Structure:
   .dhr-text-image                 → outer hero container
     └─ .dhr-text-image__content   → Text component containing H1
     └─ .cmp-text                  → next Text component (supporting line)
   ============================================ */

/* Outer hero container: layout only */
.dhr-text-image {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 320px;
  padding: 4rem 1rem;
}

/* --- TITLE (Text: Title, with H1 or H2 inside) --- */

/* Make sure everything inside the title text block is light */
.dhr-text-image__content h1,
.dhr-text-image__content h2,
.dhr-text-image__content p {
  color: #fdfdfd !important;        /* bright, readable */
  margin: 0;
}

/* Heading styling specifically */
.dhr-text-image__content h1,
.dhr-text-image__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* If the title is just a paragraph (not converted to H1/H2) */
.dhr-text-image__content p {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* --- SUPPORTING TEXT (next Text component) --- */

.dhr-text-image__content + .cmp-text h1,
.dhr-text-image__content + .cmp-text h2,
.dhr-text-image__content + .cmp-text p {
  color: #e0ecff !important;        /* softer secondary color */
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Spacing between title and supporting line */
.dhr-text-image__content {
  margin-bottom: 0.75rem;
}

.dhr-text-image__content + .cmp-text {
  margin-bottom: 1.5rem;
}

/* OPTIONAL: subtle darkening of the image behind for contrast */
.dhr-text-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.dhr-text-image__content,
.dhr-text-image__content + .cmp-text {
  position: relative;
  z-index: 2;
}


/* ============================================
   Experiment D – supporting text readability
   Force the line under TITLE to be light
   ============================================ */

/* The Text component immediately after the title,
   whatever its tag/class happens to be */
.dhr-text-image__content + *,
.dhr-text-image__content + * * {
  color: #fdfdfd !important;        /* bright, readable text */
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  margin: 0;
}

/* Optional spacing between title and that line */
.dhr-text-image__content {
  margin-bottom: 0.75rem;
}

.dhr-text-image__content + * {
  margin-bottom: 1.5rem;
}


.dhr-icon-calendar::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  background-image: url("/content/dam/soi/en/web/dhr/images/icons/Calendar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}







/* HERO SECTION: comet band */
.dhr-hero {
  position: relative;
  padding: 4.5rem 2rem;
  color: #ffffff;
  text-align: left;
  background-size: cover;
  background-position: center;
}

/* dark overlay on whole hero for contrast */
.dhr-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.dhr-hero > * {
  position: relative;
}

/* main heading */
.dhr-hero h1,
.dhr-hero h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 1rem;
  max-width: 40rem;
}

/* supporting copy */
.dhr-hero p {
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

/* hero button */
.dhr-hero .cmp-button {
  background-color: #005180;
  border: none;
  padding: 0.9rem 1.6rem;
  font-weight: 700;
  border-radius: 0;
}

.dhr-hero .cmp-button:hover,
.dhr-hero .cmp-button:focus {
  background-color: #003f63;
}

@media (max-width: 768px) {
  .dhr-hero {
    padding: 3rem 1.25rem;
  }

  .dhr-hero h1,
  .dhr-hero h2 {
    font-size: 2rem;
  }

  .dhr-hero p {
    max-width: none;
  }
}






.dhr-title {
    color: green;
}


.cmp-agency-header__logo {
    height: 2.875rem;
    width: auto;
}

/* Removes width restraints on text components */
.cmp-text {
    max-width: 100%;
}

/* Centers Text in Container */
.text-center {
    text-align: center !important;
}

/* Set attributes for color bar above H1 title text */
.title .cmp-title h1::before {
    width: 5.9375rem;
    content: " ";
    height: .375rem;
    position: absolute;
    top: 0;
    left: 0;
}

/* Set color of bar above H1 Title here */
.title h1::before {
    background-color: #003E62;
    /* Uncomment the code below to remove the bar above the h1 title */
    /*display: none;*/
}

/* Set Agency Footer Color */
.cmp-agency-footer {
    background-color: #005180;
}

/* Set Global Footer Color */
.cmp-global-footer {
    background: #003E62;
}

/* Set color of border for event date icon */
.cmp-news-feed__event-date {
    border: 1px solid #C3371E;
}

/* Set color of background for month portion of event date icon */
.cmp-news-feed__event-date__month {
    background: #C3371E;
}

/* Set color of background for year portion of event date icon */
.cmp-news-feed__event-date__year {
    background: #C3371E;
}

.guideContainerNode .mobileLayout {
    display: none !important;
}

.afCheckBoxItem {
    width: 100%;
}

.guideWidgetLabel.right label,
.guideWidgetLabel.left label {
    line-height: 24px;
}

.guideContainerNode .red {
    color: #E21121;
}

.guideContainerNode .bold {
    font-weight: bold;
}

@media only screen and (min-width : 200px) {}

@media only screen and (min-width : 320px) {}

@media only screen and (max-width : 768px) {
    .afToolbarButton .guidebutton button .iconButton-icon {
        display: none!important;
    }
    .afToolbarButton .guidebutton button .iconButton-label {
        display: block!important;
    }
    .afToolbarButton .guidebutton button.submit {
        margin-right: 0!important;
    }
}

@media only screen and (min-width : 769px) {}

/* Agency Logo Sizing MQ */
@media (min-width: 1101px) .cmp-agency-header__logo {
    height: 4.25rem;
}

@media only screen and (min-width : 1200px) {}

@media only screen and (min-width : 1600px) {}
