@charset "UTF-8";

/*******************************************************************************
TABLE OF CONTENTS
  1. Color Palette
  2. General / Reset
  3. Sub-navigation bar
  4. Slide-out drawer
  5. Hero banner
  6. Topic cards (home)
  7. Feature blocks (home)
  8. Breadcrumb
  9. Topic detail layout
 10. Sidebar navigation
 11. Benefits tab
 12. Office Visit Guide tab
 13. Copayments tab
 14. Condition cards
 15. Navigation Services CTA block
 16. Footer override
 17. Media queries
*******************************************************************************/

/*******************************************************************************
  1. Color Palette
  --teal:   #3FA89C
  --teal-direct: #277A72   (links, active states)
  --sage:   #86B57D
  --slate:  #5AA3CC
  --bg:     #f7f9fa
  --light-teal: #C8F0EA
*******************************************************************************/

/*******************************************************************************
  2. General / Reset
*******************************************************************************/
#divMainContentContainer.container {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.wh-wrap {
    min-height: 100vh;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    color: #1a1a1a;
}

.wh-wrap p {
    margin: 0 0 1em 0;
}

.wh-wrap h1, .wh-wrap h2, .wh-wrap h3 {
    margin: 0;
    color: inherit;
    font-weight: inherit;
}

/*******************************************************************************
  3. Sub-navigation bar
*******************************************************************************/
.wh-subnav {
    background-color: #000;
    position: sticky;
    top: 60px;
    z-index: 400;
    width: 100%;
}

.wh-subnav-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 48px;
    gap: 12px;
}

.wh-hamburger {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #fff;
    line-height: 0;
}

.wh-hamburger:hover {
    color: #ccc;
}

.wh-subnav-label {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-family: 'Open Sans', sans-serif;
}

/*******************************************************************************
  4. Slide-out drawer
*******************************************************************************/
.wh-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

.wh-drawer-backdrop.is-open {
    display: block;
}

.wh-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 320px;
    background: #fff;
    z-index: 1050;
    box-shadow: 4px 0 24px rgba(0,0,0,0.18);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wh-drawer.is-open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.wh-drawer-header {
    background: #000;
    padding: 20px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wh-drawer-header span {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.02em;
}

.wh-drawer-close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 2px;
    line-height: 0;
}

.wh-drawer-close:hover {
    color: #ccc;
}

.wh-drawer-nav {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    padding: 24px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
}

.wh-drawer-nav a {
    display: block;
    padding: 12px 16px;
    color: #374151;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    -webkit-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
}

.wh-drawer-nav a:hover {
    background: #C8F0EA;
    color: #3FA89C;
    text-decoration: none;
}

/*******************************************************************************
  5. Hero banner
*******************************************************************************/
.wh-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #1a3a3a;
}

@media (min-width: 768px) {
    .wh-hero {
        height: 460px;
    }
}

.wh-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}

.wh-hero-honeycomb {
    position: absolute;
    inset: 0;
    background-image: url('../assets/honeycombBG.png');
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 1;
}

.wh-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
    z-index: 3;
}

.wh-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.20) 40%, transparent 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.20) 40%, transparent 100%);
}

.wh-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1170px;
    margin: 0 auto;
    padding: 75px 16px 64px;
    color: #fff;
}

.wh-hero-content h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #fff;
}

@media (min-width: 768px) {
    .wh-hero-content h1 {
        font-size: 52px;
    }
}

.wh-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.95);
    max-width: 560px;
    line-height: 1.55;
    margin: 0;
}

/*******************************************************************************
  6. Topic cards (home)
*******************************************************************************/
.wh-cards-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 16px 64px;
    position: relative;
    z-index: 20;
}

.wh-cards-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}

.wh-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    -webkit-transition: box-shadow 0.25s, -webkit-transform 0.25s, border-color 0.25s;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    width: 100%;
}

@media (min-width: 768px) {
    .wh-card {
        width: calc(50% - 12px);
    }
}

@media (min-width: 992px) {
    .wh-card {
        width: calc(33.333% - 16px);
    }
}

.wh-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    border-color: rgba(0,112,102,0.30);
    text-decoration: none;
    color: inherit;
}

.wh-card-img {
    display: none;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .wh-card-img {
        display: block;
    }
}

.wh-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.wh-card:hover h3 {
    color: #3FA89C;
}

.wh-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    -webkit-box-flex: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    margin-bottom: 24px;
}

.wh-card-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #3FA89C;
    font-weight: 600;
    font-size: 14px;
    gap: 8px;
    margin-top: auto;
}

.wh-card:hover .wh-card-link {
    text-decoration: underline;
}

/*******************************************************************************
  7. Feature blocks (home)
*******************************************************************************/
.wh-features-section {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 64px 16px;
}

.wh-features-inner {
    max-width: 1170px;
    margin: 0 auto;
}

.wh-features-heading {
    text-align: center;
    margin-bottom: 48px;
}

.wh-features-heading h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.wh-features-heading p {
    font-size: 16px;
    color: #4b5563;
    max-width: 560px;
    margin: 0 auto;
}

.wh-features-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.wh-feature-block {
    text-align: center;
    padding: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .wh-feature-block {
        width: calc(33.333% - 11px);
    }
}

.wh-feature-icon {
    width: 75px;
    height: 75px;
    font-size: 2em;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.wh-feature-icon--teal  { background: rgba(0,112,102,0.10); color: #3FA89C; }
.wh-feature-icon--sage  { background: rgba(132,175,121,0.20); color: #5a8c51; }
.wh-feature-icon--slate { background: rgba(92,156,212,0.20); color: #3a7ab3; }

.wh-feature-block h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.wh-feature-block p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/*******************************************************************************
  8. Breadcrumb
*******************************************************************************/
.wh-breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
    white-space: nowrap;
}

.wh-breadcrumb-bar .wh-inner {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wh-breadcrumb-bar a {
    color: #6b7280;
    text-decoration: none;
}

.wh-breadcrumb-bar a:hover {
    color: #277A72;
}

.wh-breadcrumb-bar .wh-breadcrumb-sep {
    margin: 0 8px;
    color: #9ca3af;
}

.wh-breadcrumb-bar .wh-breadcrumb-current {
    color: #277A72;
}

/*******************************************************************************
  9. Topic detail layout
*******************************************************************************/
.wh-detail-bg {
    background: #f7f9fa;
    border-bottom: 1px solid #e5e7eb;
    padding: 40px 16px 48px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.wh-detail-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/honeycombBG.png');
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
}

.wh-detail-hero {
    max-width: 1170px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wh-detail-hero-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
}

.wh-detail-hero-text h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .wh-detail-hero-text h1 {
        font-size: 36px;
    }
}

.wh-detail-hero-text p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.wh-detail-hero-img {
    -ms-flex-preferred-size: 380px;
    flex-basis: 380px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    aspect-ratio: 4/3;
    display: none;
}

@media (min-width: 992px) {
    .wh-detail-hero-img {
        display: block;
    }
}

.wh-detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wh-detail-body {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 32px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background: #fff;
}

/*******************************************************************************
 10. Sidebar navigation
*******************************************************************************/
.wh-sidebar {
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .wh-sidebar {
        width: 288px;
        position: sticky;
        top: 112px;
    }
}

.wh-sidebar-inner {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    overflow: hidden;
}

.wh-sidebar-heading {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wh-sidebar-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
    border-left: 4px solid transparent;
    color: #4b5563;
}

.wh-sidebar-link:hover {
    background: #f9fafb;
    color: #111827;
    text-decoration: none;
}

.wh-sidebar-link.is-active {
    border-left-color: #277A72;
    background: rgba(1,110,113,0.05);
    color: #277A72;
}

.wh-sidebar-link svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wh-sidebar-link.is-active svg {
    color: #277A72;
}

.wh-sidebar-divider {
    height: 1px;
    background: #f0f0f0;
}

.wh-main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    min-width: 0;
}

/*******************************************************************************
 11. Benefits tab
*******************************************************************************/
.wh-benefits h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.wh-benefits-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 32px;
}

.wh-benefits-intro a {
    color: #277A72;
}

.wh-benefits-intro a:hover {
    text-decoration: underline;
}

.wh-benefits-title , .wh-resources-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #277A72;
    padding-bottom: 8px;
}

.wh-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.wh-benefits-list li {
    padding-left: 24px;
    position: relative;
    color: #374151;
    font-size: 14px;
    line-height: 1.6;
}

.wh-benefits-list li:last-child {
    border-bottom: none;
}

.wh-benefits-list li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3FA89C;
}

.wh-benefits-list li.is-secondary {
    padding-left: 20px;
    font-size: 13px;
    color: #6b7280;
}

.wh-benefits-list li.is-secondary::before {
    left: 10px;
    background: #86B57D;
    width: 5px;
    height: 5px;
}

.wh-benefits-annotation {
    font-size: 13px;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 32px;
}

.wh-benefits-annotation a {
    color: #277A72;
}

.wh-resources-heading {
    padding-top: 20px;
}

.wh-resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.wh-resource-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wh-resource-icon {
    width: 36px;
    height: 36px;
    background: #eef6f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #277A72;
    margin-bottom: 6px;
    flex-shrink: 0;
}

.wh-resource-type {
    font-size: 11px;
    font-weight: 700;
    color: #277A72;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wh-resource-org {
    font-size: 13px;
    color: #374151;
}

.wh-resource-title {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.wh-resource-link {
    color: #277A72;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    padding-top: 12px;
}

.wh-resource-link:hover {
    text-decoration: underline;
}

.wh-resource-annotation {
    font-size: 13px;
    color: #f05253;
    font-style: italic;
}

@media (max-width: 600px) {
    .wh-resource-grid {
        grid-template-columns: 1fr;
    }
}

.wh-preventive-section {
    background: #f7f9fa;
    border: 1px solid #C8F0EA;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.wh-preventive-section h4 {
    font-size: 13px;
    font-weight: 700;
    color: #3FA89C;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
    color: #3FA89C;
}

.wh-preventive-section ul {
    margin: 0;
    padding-left: 20px;
}

.wh-preventive-section li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
    line-height: 1.5;
}

/*******************************************************************************
 12. Office Visit Guide tab
*******************************************************************************/
.wh-guide h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.wh-guide-intro {
    color: #6b7280;
    font-size: 14px;
    max-width: 700px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.wh-guide-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.wh-guide-main {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 460px;
    flex: 1 1 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.wh-guide-sidebar {
    -ms-flex-preferred-size: 280px;
    flex-basis: 280px;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.wh-guide-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.wh-guide-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.wh-guide-card-accent--slate { background: #5AA3CC; --wh-guide-accent: #5AA3CC; }
.wh-guide-card-accent--teal  { background: #3FA89C; --wh-guide-accent: #3FA89C; }
.wh-guide-card-accent--sage  { background: #86B57D; --wh-guide-accent: #86B57D; }

/* --wh-guide-accent is set on the accent bar child, not an ancestor of the checklist.
   Use :has() to hoist the value onto the card so it inherits into all descendants. */
.wh-guide-card:has(.wh-guide-card-accent--slate) { --wh-guide-accent: #5AA3CC; }
.wh-guide-card:has(.wh-guide-card-accent--teal)  { --wh-guide-accent: #3FA89C; }
.wh-guide-card:has(.wh-guide-card-accent--sage)  { --wh-guide-accent: #86B57D; }

.wh-guide-card-title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.wh-guide-card-icon {
    padding: 15px;
    border-radius: 8px;
    line-height: 0;
}

.wh-guide-card-icon--slate { background: rgba(92,156,212,0.20); color: #3a7ab3; }
.wh-guide-card-icon--teal  { background: rgba(0,112,102,0.20); color: #3FA89C; }
.wh-guide-card-icon--sage  { background: rgba(132,175,121,0.25); color: #5a8c51; }

.wh-guide-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.wh-guide-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-guide-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wh-guide-checklist li {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    color: var(--wh-guide-accent, #374151);
    font-size: 14px;
    line-height: 1.55;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.wh-guide-checklist li::before {
    /* FA5 (confirmed CDN) first; FA6 as fallback if shared bundle loads it */
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "\f14a";
    color: var(--wh-guide-accent, #374151);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 1.5em;
    line-height: 1;
    margin-top: 1px;
}

.wh-guide-checklist li:last-child {
    border-bottom: none;
}

.wh-guide-checklist li svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.wh-guide-inset {
    background: #f7f9fa;
    border-radius: 12px;
    padding: 10px 20px 20px 20px;
    border: 1px solid #f0f0f0;
    margin: 16px 0;
}

.wh-guide-inset h4 {
    font-weight: 600;
    color: #111827;
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.wh-guide-inset ul {
    margin: 0;
    padding-left: 16px;
}

.wh-guide-inset li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
    line-height: 1.5;
}

.wh-guide-inset--provider {
    background: #C8F0EA;
    border-color: #c4dede;
}

.wh-guide-inset--provider h4 {
    color: #3FA89C !important;
}

.wh-btn-search-directory {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 10px 16px;
    background: #3FA89C;
    color: #fff !important;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wh-btn-search-directory:hover,
.wh-btn-search-directory:focus {
    background: #005c54;
    color: #fff !important;
    text-decoration: none !important;
}

.wh-guide-tip {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
}

.wh-guide-tip h4 {
    font-weight: 600;
    font-size: 13px;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.wh-guide-tip p {
    font-size: 14px;
    color: #374151;
    line-height: 1.55;
    margin: 0;
}

/*******************************************************************************
 13. Copayments tab
*******************************************************************************/
.wh-copay h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

.wh-copay-intro {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.65;
    max-width: 700px;
    margin-bottom: 40px;
}

.wh-copay-intro p {
    margin-bottom: 12px;
}

.wh-copay-intro em {
    font-style: italic;
}

.wh-plan-select-wrap {
    margin-bottom: 40px;
}

.wh-plan-select-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.wh-plan-select {
    width: 100%;
    max-width: 400px;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    font-size: 14px;
    color: #111827;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.wh-plan-select:focus {
    outline: none;
    border-color: #3FA89C;
    box-shadow: 0 0 0 2px rgba(0,112,102,0.20);
}

.wh-copay-btn-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.wh-btn-slate {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    background: #5AA3CC;
    color: #fff !important;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    -webkit-transition: background 0.15s;
    transition: background 0.15s;
    white-space: nowrap;
}

.wh-btn-slate:hover,
.wh-btn-slate:focus {
    background: #4a87be;
    color: #fff !important;
    text-decoration: none !important;
}

.wh-plan-panel {
    display: none;
    margin-bottom: 40px;
}

.wh-plan-panel.is-visible {
    display: block;
}

.wh-plan-panel h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
}

/* Bootstrap 3 panel-based accordion, re-skinned */
.wh-accordion .panel {
    border: 1px solid #e5e7eb;
    border-radius: 8px !important;
    margin-bottom: 8px;
    box-shadow: none !important;
}

.wh-accordion .panel-heading {
    background: #fff !important;
    border-radius: 8px !important;
    padding: 0;
}

.wh-accordion .panel-title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 14px 20px;
    color: #111827;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: background 0.15s;
    transition: background 0.15s;
}

.wh-accordion .panel-title a:hover {
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
}

.wh-accordion .panel-title a .wh-chevron {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #6b7280;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.wh-accordion .panel-title a .wh-chevron i {
    display: block;
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    -webkit-transform-origin: center;
    transform-origin: center;
}

.wh-accordion .panel-title a.collapsed .wh-chevron i {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.wh-accordion .panel-title a:not(.collapsed) .wh-chevron i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.wh-accordion .panel-collapse .panel-body {
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 8px 8px;
    padding: 16px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.65;
}

.wh-accordion .panel-body p {
    margin-bottom: 10px;
}

.wh-accordion .panel-body ul {
    padding-left: 20px;
    margin: 6px 0;
}

.wh-accordion .panel-body li {
    margin-bottom: 4px;
}

.wh-accordion .panel-body h4 {
    font-size: 18px;
    font-weight: 700;
    color: #3FA89C;
    margin: 16px 0 8px;
}

.wh-accordion .panel-body a {
    color: #277A72;
}

/*******************************************************************************
 14. Condition cards (Women's Health Conditions topic)
*******************************************************************************/
.wh-condition-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.wh-condition-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    text-decoration: none;
    color: inherit;
    -webkit-transition: box-shadow 0.25s, -webkit-transform 0.25s, border-color 0.25s;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    width: 100%;
}

@media (min-width: 768px) {
    .wh-condition-card {
        width: calc(50% - 10px);
    }
}

@media (min-width: 992px) {
    .wh-condition-card {
        width: calc(33.333% - 14px);
    }
}

.wh-condition-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    border-color: rgba(0,112,102,0.30);
    text-decoration: none;
    color: inherit;
}

.wh-condition-card-icon {
    color: #3FA89C;
    margin-bottom: 16px;
    line-height: 0;
}

.wh-condition-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.wh-condition-card:hover h3 {
    color: #3FA89C;
}

.wh-condition-card:hover .wh-card-link {
    text-decoration: underline;
}

.wh-condition-card p {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-flex: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
    margin-bottom: 16px;
}

/*******************************************************************************
 15. Navigation Services CTA block
*******************************************************************************/
.wh-navsvc {
    background: #3FA89C;
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 64px;
}

.wh-navsvc::before {
    content: '';
    position: absolute;
    top: -64px;
    right: -64px;
    width: 256px;
    height: 256px;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    filter: blur(40px);
}

.wh-navsvc-inner {
    position: relative;
    z-index: 1;
}

.wh-navsvc h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.wh-navsvc p, .wh-navsvc li {
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    line-height: 1.65;
}

.wh-navsvc ul {
    padding-left: 20px;
    margin: 8px 0 16px;
}

.wh-navsvc li {
    margin-bottom: 4px;
}

/*******************************************************************************
 16. Shared inner width helper
*******************************************************************************/
.wh-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 16px;
}

/*******************************************************************************
 17. Media queries
*******************************************************************************/
@media (min-width: 768px) {
    .wh-cards-section { padding: 48px 24px 64px; }
    .wh-hero-content  { padding: 75px 24px 64px; }
    .wh-inner         { padding: 0 24px; }
}

@media (min-width: 992px) {
    .wh-cards-section { padding: 48px 32px 64px; }
    .wh-hero-content  { padding: 75px 32px 64px; }
    .wh-inner         { padding: 0 32px; }
    .wh-detail-body   { padding: 40px 32px 64px; }
}

@media (max-width: 767px) {
    .wh-guide-sidebar {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        width: 100%;
    }

    .wh-hero-content {
        padding-top: 0px;
    }
}
