/*
  Phase 8R: sitewide header border cleanup.

  Purpose:
  - Remove the legacy translucent header bottom border on every breakpoint.
  - The old border was rendering as a white horizontal line across hero and
    breadcrumb imagery on both mobile and desktop.
  - Keep the header transparent treatment intact; only remove the line/shadow.

  Load order:
  - This file must load after phase8q-mobile-header-border-cleanup.css.
*/

.header-style-two,
#header-sticky.header-style-two,
.header-style-two.sticky,
#header-sticky.header-style-two.sticky {
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Contact page email overflow fix */
.contact-p-info-area,
.contact-p-info-area .contact-box,
.contact-p-info-area .contact-box .info,
.contact-p-info-area .contact-box .info p {
  max-width: 100%;
  min-width: 0;
}

.contact-p-info-area .contact-box {
  width: 100%;
}

.contact-p-info-area .contact-box .icon-1 {
  flex: 0 0 auto;
}

.contact-p-info-area .contact-box .info {
  flex: 1 1 0;
  width: 0;
}

.contact-p-info-area .contact-box .info p {
  margin-bottom: 0;
}

.contact-p-info-area .contact-box .info a {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 575.98px) {
  .contact-p-info-area .contact-box {
    padding: 34px 24px;
    align-items: flex-start;
    gap: 16px;
  }
}
