/* Header: full-width and single-row layout on desktop */
@media (min-width: 992px) {
    /* Make header container full width */
    header.fixed_header .container {
        max-width: 100%;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Keep logo and nav on one row */
    header.fixed_header .row.align-items-center {
        flex-wrap: nowrap;
    }
    header.fixed_header .col-3 {
        flex: 0 0 auto;
    }
    header.fixed_header .col-9 {
        flex: 1 1 auto; /* allow nav area to expand */
    }

    /* Nav list: single line, appointment pinned right */
    header.fixed_header .main-menu #mainNav > ul {
        display: flex;
        align-items: center;
        justify-content: center; /* center navigation items horizontally */
        flex-wrap: nowrap;       /* keep items on one line */
        gap: 12px;               /* slightly tighter spacing */
        padding-right: 160px;    /* reserve space for right-aligned Appointment */
    }
    header.fixed_header .main-menu #mainNav > ul > li {
        display: flex;
        align-items: center;
    }
    /* Desktop: keep Appointment pinned right while others are centered */
    @media (min-width: 992px) {
        header.fixed_header .main-menu #mainNav { position: relative; }
        header.fixed_header .main-menu #mainNav > ul > li:last-child {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            margin-left: 0; /* disable previous auto push */
        }
    }
    header.fixed_header .main-menu #mainNav > ul > li a.btn_1 {
        white-space: nowrap;     /* avoid multi-line button text */
    }
}

/* Wellness, Aesthetic & Dentist page spacing */
.cards-wellness .box_news, .cards-aesthetic .box_news, .cards-dentist .box_news {
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .cards-wellness .box_news, .cards-aesthetic .box_news, .cards-dentist .box_news {
        margin-top: 32px;
        margin-bottom: 32px;
    }
}

/* CTA spacing on wellness, aesthetic & dentist pages */
.cta-wellness .parallax-content-2, .cta-aesthetic .parallax-content-2, .cta-dentist .parallax-content-2 {
    padding-top: 60px;
    padding-bottom: 80px;
}

/* We Care Heroes spacing: increase breathing room around doctor descriptions */
.heroes-wecare .box_news {
    padding: 32px 36px;
}
.heroes-wecare .box_news h4 {
    margin-bottom: 16px;
}
.heroes-wecare .box_news p {
    margin-top: 12px;
    line-height: 1.9;
}
/* Even spacing inside dropdown menus */
@media (min-width: 992px) {
  .submenu_version .main-menu ul ul {
    padding-top: 8px;   /* slight top/bottom breathing room */
    padding-bottom: 8px;
  }
  .submenu_version .main-menu ul ul li + li {
    margin-top: 8px;    /* even vertical gap between items */
  }
}

@media (max-width: 991px) {
  .submenu_version .main-menu ul li.submenu ul li + li {
    margin-top: 10px;   /* even spacing for mobile accordion submenu */
  }
}
