.portal-pages {
    color: #102033;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

.portal-home-page .portal-header .portal-search {
    display: none;
}

.portal-pages *,
.portal-pages *::before,
.portal-pages *::after {
    box-sizing: border-box;
}

.portal-pages h1,
.portal-pages h2,
.portal-pages h3,
.portal-pages p {
    overflow-wrap: normal;
    word-break: normal;
}

.portal-pages a {
    color: inherit;
    text-decoration: none;
}

.portal-eyebrow {
    margin: 0 0 10px;
    color: #1769aa;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.portal-muted {
    color: #5e6d7e;
}

.portal-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 25%, rgba(59, 167, 199, 0.24), transparent 28%),
        radial-gradient(circle at 62% 82%, rgba(238, 123, 50, 0.15), transparent 25%),
        linear-gradient(128deg, #0a2949, #123b66);
}

.portal-hero__grid {
    min-height: 520px;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
    align-items: center;
    gap: 72px;
    padding-top: 72px;
    padding-bottom: 72px;
}

.portal-hero .portal-eyebrow {
    color: #8ed7eb;
}

.portal-hero h1 {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 850;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.portal-hero__lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: #dbe9f5;
    font-size: 19px;
}

.portal-hero-search {
    max-width: 760px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 30px;
    padding: 7px;
    border-radius: 14px;
    background: #ffffff;
}

.portal-hero-search input {
    min-width: 0;
    padding: 10px 13px;
    border: 0;
    outline: 0;
    color: #102033;
    background: transparent;
    font: inherit;
}

.portal-hero-search .portal-button--primary {
    color: #ffffff;
    background: var(--portal-orange, #ee7b32);
}

.portal-hero-panel {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.portal-hero-panel > strong {
    display: block;
    margin-bottom: 18px;
    font-size: 21px;
}

.portal-hero-panel ol {
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.portal-hero-panel li {
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 13px;
}

.portal-hero-panel li > span {
    color: #ffb17b;
    font-weight: 850;
}

.portal-hero-panel li div {
    display: grid;
    gap: 3px;
}

.portal-hero-panel small {
    color: #bcd0e1;
    font-size: 13px;
}

.portal-section {
    padding: 76px 0;
}

.portal-section--soft {
    background: #f4f7f9;
}

.portal-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.portal-section-heading h2,
.portal-page-heading h1 {
    margin: 0;
    color: #102033;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 830;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.portal-section-heading > p {
    max-width: 520px;
    margin: 0;
    color: #5e6d7e;
}

.portal-route-grid,
.portal-category-grid,
.portal-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.portal-route-card,
.portal-category-card,
.portal-brand-grid a,
.portal-navigation-card {
    border: 1px solid #dfe6ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(16, 32, 51, 0.05);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.portal-route-card:hover,
.portal-category-card:hover,
.portal-brand-grid a:hover,
.portal-navigation-card:hover {
    border-color: #9ebbd2;
    box-shadow: 0 16px 38px rgba(16, 32, 51, 0.1);
    transform: translateY(-2px);
}

.portal-route-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.portal-route-card > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #1769aa;
    background: #eaf3fb;
    font-size: 22px;
}

.portal-route-card h3,
.portal-category-card h3,
.portal-navigation-card h2 {
    margin: 20px 0 8px;
    color: #102033;
    font-size: 20px;
    font-weight: 790;
    line-height: 1.25;
}

.portal-route-card p,
.portal-navigation-card p {
    margin: 0 0 20px;
    color: #5e6d7e;
}

.portal-route-card b,
.portal-navigation-card b {
    margin-top: auto;
    color: #1769aa;
    font-size: 14px;
}

.portal-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-category-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.portal-category-card h3 {
    margin-top: 0;
}

.portal-category-card ul {
    display: grid;
    gap: 8px;
    margin: 5px 0 20px;
    padding: 0;
    list-style: none;
}

.portal-category-card li a {
    color: #4c5f72;
}

.portal-category-card li a:hover {
    color: #1769aa;
}

.portal-text-link {
    color: #1769aa !important;
    font-size: 14px;
    font-weight: 760;
}

.portal-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.portal-product-card {
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #dfe6ec;
    border-radius: 16px;
    background: #ffffff;
}

.portal-product-card__image {
    height: 210px;
    min-height: 210px;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 22px;
    position: relative;
    background: #ffffff;
}

.portal-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.portal-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #edf1f4;
    background: #ffffff;
}

.portal-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 7px;
    color: #6a7989;
    font-size: 12px;
}

.portal-product-card h3 {
    min-height: 86px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    margin: 13px 0 9px;
    color: #102033;
    font-size: 16px;
    font-weight: 760;
    line-height: 1.35;
}

.portal-product-card h3 a:hover {
    color: #1769aa;
}

.portal-product-card__etim {
    margin: 0 0 16px;
    color: #5e6d7e;
    font-size: 13px;
}

.portal-product-card__actions {
    margin-top: auto;
}

.portal-brand-grid a {
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.portal-brand-grid strong {
    color: #123b66;
    font-size: 24px;
}

.portal-brand-grid span {
    color: #5e6d7e;
    font-size: 14px;
}

.portal-special-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 42px !important;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(125deg, #0a2949, #123b66);
}

.portal-special-order .portal-eyebrow {
    color: #ffb17b;
}

.portal-special-order h2 {
    max-width: 800px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
}

.portal-special-order p:not(.portal-eyebrow) {
    max-width: 820px;
    margin: 14px 0 0;
    color: #c8d9e7;
}

.portal-catalog-page,
.portal-list-page {
    padding: 0 0 48px;
}

.portal-breadcrumbs {
    padding: 20px 0;
    border-bottom: 1px solid #edf1f4;
}

.portal-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 11px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
}

.portal-breadcrumbs li:not(:last-child)::after {
    margin-left: 11px;
    color: #93a1ae;
    content: "›";
}

.portal-breadcrumbs a {
    color: #1769aa;
}

.portal-breadcrumbs span {
    color: #5e6d7e;
}

.portal-page-heading {
    max-width: 900px;
    padding: 52px 0 34px;
}

.portal-page-heading--compact {
    padding-bottom: 28px;
}

.portal-page-heading > p:last-child {
    max-width: 760px;
    margin: 16px 0 0;
    color: #5e6d7e;
    font-size: 17px;
}

.portal-navigation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.portal-navigation-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
}

.portal-navigation-card__mark,
.portal-code {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border-radius: 8px;
    color: #1769aa;
    background: #eaf3fb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.portal-navigation-card--class h2 {
    margin-top: 16px;
}

.portal-sibling-nav {
    margin: 0 0 26px;
    border: 1px solid #dfe6ec;
    border-radius: 13px;
    background: #ffffff;
}

.portal-sibling-nav summary {
    padding: 16px 18px;
    color: #123b66;
    font-weight: 760;
    cursor: pointer;
}

.portal-sibling-nav > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 18px;
    padding: 0 18px 18px;
}

.portal-sibling-nav a {
    padding: 8px 0;
    color: #4c5f72;
    font-size: 14px;
}

.portal-sibling-nav a:hover {
    color: #1769aa;
}

.portal-list-layout {
    display: grid;
    grid-template-columns: 265px minmax(0, 1fr);
    align-items: start;
    gap: 28px;
}

.portal-list-layout--wide {
    grid-template-columns: minmax(0, 1fr);
}

.portal-filter-foundation {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
    gap: 28px;
    margin: 0 0 28px;
    padding: 24px;
    border: 1px solid #dfe6ec;
    border-radius: 16px;
    background: #f7fafc;
}

.portal-filter-foundation h2 {
    margin: 4px 0 8px;
    color: #102033;
    font-size: 22px;
}

.portal-filter-foundation p {
    margin: 0;
    color: #5e6d7e;
}

.portal-filter-stages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.portal-filter-stages li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    padding: 14px;
    border: 1px solid #dfe6ec;
    border-radius: 12px;
    background: #ffffff;
}

.portal-filter-stages li > span {
    color: var(--portal-orange, #ee7b32);
    font-weight: 850;
}

.portal-filter-stages b,
.portal-filter-stages small {
    display: block;
}

.portal-filter-stages b {
    color: #102033;
}

.portal-filter-stages small {
    margin-top: 5px;
    color: #5e6d7e;
    line-height: 1.4;
}

.portal-filter-panel {
    position: sticky;
    top: 164px;
    border: 1px solid #dfe6ec;
    border-radius: 14px;
    background: #ffffff;
}

.portal-filter-panel details > summary {
    padding: 18px;
    color: #102033;
    font-weight: 800;
    cursor: pointer;
}

.portal-filter-panel form {
    display: grid;
    gap: 10px;
    padding: 0 18px 18px;
}

.portal-filter-panel label {
    margin-top: 5px;
    color: #405368;
    font-size: 13px;
    font-weight: 750;
}

.portal-filter-panel input,
.portal-filter-panel select {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid #c8d3dc;
    border-radius: 9px;
    color: #102033;
    background: #ffffff;
}

.portal-filter-panel input[type="checkbox"],
.portal-filter-panel input[type="radio"] {
    width: 18px;
    min-height: 18px;
    padding: 0;
    border-radius: 4px;
}

.portal-filter-panel select[multiple] {
    min-height: 108px;
}

.portal-filter-reset {
    justify-self: center;
    color: #1769aa !important;
    font-size: 13px;
    font-weight: 700;
}

.portal-engineering-filter form {
    gap: 12px;
}

.portal-engineering-filter select:disabled {
    color: #8996a4;
    background: #f2f5f7;
    cursor: not-allowed;
}

.portal-etim-filter-fields {
    display: grid;
    gap: 12px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #e4e9ee;
}

.portal-etim-filter-field {
    display: grid;
    gap: 6px;
}

.portal-etim-filter-field label {
    margin: 0;
    line-height: 1.35;
}

.portal-filter-status {
    margin: 0;
    color: #69798a;
    font-size: 13px;
    line-height: 1.5;
}

.portal-filter-note {
    display: grid;
    gap: 4px;
    margin: 0 18px 18px;
    padding: 13px;
    border-radius: 10px;
    color: #405368;
    background: #f4f7f9;
    font-size: 12px;
}

.portal-product-grid--listing {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portal-product-grid--listing.portal-product-grid--rows {
    grid-template-columns: 1fr;
}

.portal-product-grid--rows .portal-product-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
}

.portal-product-grid--rows .portal-product-card__image {
    height: 100%;
    min-height: 190px;
    padding: 16px;
}

.portal-product-grid--rows .portal-product-card__body {
    border-top: 0;
    border-left: 1px solid #edf1f4;
}

.portal-product-grid--rows .portal-product-card h3 {
    min-height: 0;
    -webkit-line-clamp: 3;
    font-size: 17px;
}

.portal-listing-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 12px;
    margin-bottom: 18px;
    padding: 14px;
    border: 1px solid #dfe6ec;
    border-radius: 14px;
    background: #f8fafc;
}

.portal-listing-toolbar__count {
    align-self: center;
    margin-right: auto;
    color: #5e6d7e;
    font-size: 14px;
}

.portal-listing-toolbar__field {
    display: grid;
    gap: 5px;
    min-width: 220px;
    color: #526477;
    font-size: 12px;
    font-weight: 750;
}

.portal-listing-toolbar__field--compact {
    min-width: 110px;
}

.portal-listing-toolbar select {
    min-height: 42px;
    padding: 7px 34px 7px 10px;
    border: 1px solid #c8d3dc;
    border-radius: 9px;
    color: #102033;
    background: #ffffff;
    font: inherit;
    font-size: 14px;
}

.portal-view-switch {
    display: inline-flex;
    padding: 3px;
    border: 1px solid #c8d3dc;
    border-radius: 10px;
    background: #ffffff;
}

.portal-view-switch button {
    width: 38px;
    height: 36px;
    border: 0;
    border-radius: 7px;
    color: #53677b;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

.portal-view-switch button[aria-pressed="true"] {
    color: #ffffff;
    background: #1769aa;
}

.portal-pagination {
    display: grid;
    gap: 12px;
    margin-top: 34px;
    padding: 18px 0 0;
    border-top: 1px solid #dfe6ec;
    font-size: 14px;
}

.portal-pagination__summary {
    color: #657587;
    text-align: center;
}

.portal-pagination__controls,
.portal-pagination__pages {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.portal-pagination a,
.portal-pagination__page,
.portal-pagination__edge,
.portal-pagination__direction {
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border: 1px solid #d5dee6;
    border-radius: 9px;
    color: #1769aa;
    background: #ffffff;
    font-weight: 750;
}

.portal-pagination__direction {
    min-width: 88px;
}

.portal-pagination__page.is-current {
    border-color: #1769aa;
    color: #ffffff;
    background: #1769aa;
}

.portal-pagination .is-disabled {
    color: #9aa6b2;
    background: #f2f5f7;
}

.portal-pagination__ellipsis {
    padding: 8px 4px;
    color: #788797;
}

.portal-alert,
.portal-empty-state {
    padding: 20px;
    border: 1px solid #efc188;
    border-radius: 12px;
    background: #fff7eb;
}

.portal-alert {
    margin-bottom: 24px;
}

.portal-empty-state {
    grid-column: 1 / -1;
}

.portal-empty-state h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.portal-empty-state p {
    margin: 0;
    color: #5e6d7e;
}

.portal-search-heading {
    max-width: 980px;
}

.portal-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 24px;
}

.portal-search-form input {
    min-width: 0;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid #cbd7e2;
    border-radius: 10px;
    background: #fff;
    color: #24384c;
    font: inherit;
}

.portal-search-form input:focus {
    border-color: #1769aa;
    outline: 3px solid rgba(23, 105, 170, 0.14);
}

.portal-search-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    color: #657587;
    font-size: 14px;
}

.portal-search-examples a {
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf4f9;
    color: #1769aa;
    font-weight: 700;
}

.portal-search-guide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 64px;
}

.portal-search-guide article {
    padding: 24px;
    border: 1px solid #dfe6ec;
    border-radius: 14px;
    background: #fff;
}

.portal-search-guide strong {
    color: #1769aa;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.portal-search-guide h2 {
    margin: 10px 0 8px;
    font-size: 20px;
}

.portal-search-guide p {
    margin: 0;
    color: #5e6d7e;
}

.portal-smart-search {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 20px;
    border: 1px solid #bcd7ea;
    border-radius: 14px;
    background: #f3f8fc;
}

.portal-smart-search h2 {
    margin: 4px 0 0;
    color: #102033;
    font-size: 22px;
}

.portal-smart-search__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.portal-smart-search__chips span,
.portal-product-card__match {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    color: #145f98;
    background: #e2f0fa;
    font-size: 12px;
    font-weight: 750;
}

.portal-smart-search__status,
.portal-smart-search__clarification {
    margin: 0;
    color: #405368;
    line-height: 1.5;
}

.portal-smart-search__clarification {
    padding: 12px 14px;
    border-left: 4px solid #f47b20;
    border-radius: 8px;
    background: #fff7ef;
}

.portal-product-card__match {
    width: max-content;
    padding: 3px 7px;
    font-size: 11px;
}

.portal-smart-filter {
    max-height: calc(100vh - 185px);
    overflow: auto;
}

@media (max-width: 1100px) {
    .portal-route-grid,
    .portal-product-grid,
    .portal-brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portal-hero__grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .portal-hero-panel {
        max-width: 760px;
    }

    .portal-product-grid--listing {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .portal-section {
        padding: 54px 0;
    }

    .portal-search-form,
    .portal-search-guide {
        grid-template-columns: 1fr;
    }

    .portal-listing-toolbar {
        align-items: stretch;
    }

    .portal-listing-toolbar__count {
        width: 100%;
    }

    .portal-listing-toolbar__field {
        min-width: min(100%, 220px);
        flex: 1;
    }


    .portal-section-heading {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .portal-category-grid,
    .portal-navigation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portal-list-layout {
        grid-template-columns: 1fr;
    }

    .portal-filter-panel {
        position: static;
    }

    .portal-smart-filter {
        max-height: none;
        overflow: visible;
    }

    .portal-filter-foundation {
        grid-template-columns: 1fr;
    }

    .portal-filter-panel details:not([open]) form,
    .portal-filter-panel details:not([open]) .portal-filter-note {
        display: none;
    }

    .portal-sibling-nav > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .portal-hero__grid {
        min-height: 0;
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .portal-hero h1 {
        font-size: 34px;
        letter-spacing: -0.035em;
        line-height: 1.08;
    }

    .portal-hero__lead {
        font-size: 16px;
    }

    .portal-hero-search {
        grid-template-columns: 1fr;
    }

    .portal-route-grid,
    .portal-category-grid,
    .portal-product-grid,
    .portal-brand-grid,
    .portal-navigation-grid,
    .portal-product-grid--listing {
        grid-template-columns: 1fr;
    }

    .portal-route-card {
        min-height: 205px;
    }

    .portal-product-card {
        display: flex;
        flex-direction: column;
    }

    .portal-product-card__image {
        height: 190px;
        min-height: 190px;
        padding: 16px;
    }

    .portal-product-card__body {
        padding: 15px;
        border-top: 1px solid #edf1f4;
        border-left: 0;
    }

    .portal-product-card__meta {
        display: flex;
        justify-content: space-between;
    }

    .portal-product-card h3 {
        min-height: 0;
        -webkit-line-clamp: 5;
        font-size: 15px;
    }

    .portal-product-card__etim {
        display: none;
    }

    .portal-product-card__actions .portal-text-link {
        font-size: 12px;
    }

    .portal-product-grid--rows .portal-product-card {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .portal-product-grid--rows .portal-product-card__image {
        height: 100%;
        min-height: 170px;
        padding: 10px;
    }

    .portal-product-grid--rows .portal-product-card__body {
        border-top: 0;
        border-left: 1px solid #edf1f4;
    }

    .portal-product-grid--rows .portal-product-card__meta {
        display: grid;
        justify-content: start;
    }

    .portal-product-grid--rows .portal-product-card h3 {
        -webkit-line-clamp: 4;
        font-size: 14px;
    }

    .portal-special-order {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px !important;
    }

    .portal-breadcrumbs {
        padding: 13px 0;
    }

    .portal-breadcrumbs ol {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 3px;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .portal-breadcrumbs ol::-webkit-scrollbar {
        display: none;
    }

    .portal-breadcrumbs li:last-child {
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .portal-page-heading {
        padding: 34px 0 24px;
    }

    .portal-page-heading h1,
    .portal-section-heading h2 {
        font-size: clamp(26px, 8vw, 30px);
    }

    .portal-filter-stages {
        grid-template-columns: 1fr;
    }

    .portal-navigation-card {
        min-height: 185px;
    }

    .portal-sibling-nav > div {
        grid-template-columns: 1fr;
    }

    .portal-pagination {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .portal-pagination__controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portal-pagination__pages,
    .portal-pagination__edge {
        display: none;
    }

    .portal-pagination__direction {
        width: 100%;
    }
}
