/* Corporate_new styling for the .breadcrumbs class — same class name as the
   shared includes/breadcrumbs.php and includes/benefit_breadcrumbs.php so we
   can adopt the legacy convention without forking shared pages. Other
   templates load their own breadcrumbs CSS, so these rules don't collide
   site-wide.

   Markup contract: <div class="breadcrumbs"> with <a> for linked items,
   <strong> for the current page, and <i class="fa-..."> for the chevrons
   between items. Order in DOM follows reading order (RTL = visual right
   to left). */
.breadcrumbs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    font-size: 16px;
    font-weight: 400;
    line-height: 30px;

    padding: 0 10px;
}

.breadcrumbs a {
    text-decoration: none;
    color: #46494F;
}

.breadcrumbs strong {
    font-weight: 600;
    color: #000000;
}

/* Chevron between items — uses the section's brand-ish neutral so it reads
   as a separator rather than competing with the link text. */
.breadcrumbs i {
    color: #46494F;
    font-size: 12px;
}

@media (max-width: 768px) {
    .breadcrumbs {
        gap: 6px;
        font-size: 15px;
        line-height: 24px;
        padding: 0 4px;
        flex-wrap: wrap;
    }

    .breadcrumbs i {
        font-size: 12px;
    }
}

/* Page-level placement when the breadcrumbs sit as a direct child of <main>
   (category, search, module, suggestion-list pages). 125px = 60px section
   gutter + 65px section header padding — aligns with the section title. */
@media (min-width: 769px) {
    main > .breadcrumbs {
        max-width: 1850px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 16px;
        padding-right: 125px;
        box-sizing: border-box;
    }
}

/* No per-element override needed here — global.css now applies
   padding: 0 20px to main on search/module pages, so breadcrumbs
   and the grid section are framed equally by the parent. */
