:root {
    --bibip-ink: #15324a;
    --bibip-blue: #1f4f7a;
    --bibip-red: #d52e2e;
    --bibip-sand: #f5efe6;
    --bibip-mist: #edf3f6;
    --bibip-night: #0e2234;
    --bibip-line: rgba(21, 50, 74, 0.12);
    --bibip-shadow: 0 24px 60px rgba(14, 34, 52, 0.12);
}

body.bibip-redesign {
    font-family: 'Outfit', sans-serif;
    color: var(--bibip-ink);
    background:
        radial-gradient(circle at top left, rgba(213, 46, 46, 0.08), transparent 28%),
        linear-gradient(180deg, #fcfdff 0%, #f6f8fb 100%);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    backdrop-filter: blur(18px);
    background: rgba(252, 253, 255, 0.9);
    border-bottom: 1px solid rgba(21, 50, 74, 0.08);
}

.bibip-navbar {
    padding: 1rem 0;
}

.brand-logo {
    max-height: 62px;
}

.nav-link {
    color: var(--bibip-ink);
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bibip-red);
}

.btn-bibip-primary,
.btn-bibip-secondary {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-bibip-primary {
    background: linear-gradient(135deg, var(--bibip-red), #ef5b43);
    color: #fff;
    border: none;
    box-shadow: 0 15px 35px rgba(213, 46, 46, 0.22);
}

.btn-bibip-secondary {
    background: #fff;
    border: 1px solid rgba(21, 50, 74, 0.12);
    color: var(--bibip-ink);
}

.btn-bibip-primary:hover,
.btn-bibip-secondary:hover {
    transform: translateY(-2px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bibip-red);
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
}

h1,
h2,
h3,
.featured-story-card h2 {
    font-family: 'Fraunces', serif;
    letter-spacing: -0.03em;
}

.hero-copy,
.footer-copy,
.article-body p,
.blog-card p,
.service-result-card p {
    color: rgba(21, 50, 74, 0.8);
    line-height: 1.7;
}

.home-hero,
.editorial-hero,
.search-hero,
.category-hero,
.article-hero {
    padding: 5.2rem 0 3.2rem;
}

.home-hero {
    position: relative;
    overflow: hidden;
}

.hero-panel {
    background: linear-gradient(135deg, rgba(15, 33, 52, 0.96), rgba(31, 79, 122, 0.9));
    color: #fff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--bibip-shadow);
}

.hero-panel h1,
.editorial-hero h1,
.search-hero h1,
.category-hero h1,
.article-copy h1 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 0.98;
    margin: 1rem 0 1.25rem;
}

.hero-panel .hero-copy,
.editorial-hero .hero-copy,
.search-hero .hero-copy,
.category-hero .hero-copy,
.article-copy .hero-copy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.hero-search-form {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 1.6rem;
}

.hero-search-form input {
    flex: 1 1 280px;
    min-height: 58px;
    border-radius: 999px;
    border: none;
    padding: 0 1.2rem;
}

.hero-visual,
.category-visual,
.article-visual {
    border-radius: 28px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: var(--bibip-shadow);
}

.hero-visual img,
.category-visual img,
.article-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-quick-links,
.blog-pill,
.service-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    font-weight: 500;
}

.hero-quick-links {
    margin-right: 0.45rem;
    margin-top: 0.6rem;
}

.home-side-card,
.featured-story-card,
.stats-card,
.aside-card,
.service-result-card,
.empty-state {
    background: #fff;
    border-radius: 28px;
    padding: 1.8rem;
    box-shadow: var(--bibip-shadow);
    border: 1px solid rgba(21, 50, 74, 0.06);
}

.featured-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--bibip-red);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.home-side-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 1.2rem;
}

.section-block {
    padding: 2.4rem 0 5.2rem;
}

.section-heading,
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-category-card,
.blog-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(21, 50, 74, 0.08);
    box-shadow: 0 20px 45px rgba(14, 34, 52, 0.08);
}

.service-category-card img,
.blog-card-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-category-card-body,
.blog-card-body {
    padding: 1.4rem;
}

.service-category-card h3,
.blog-card h3,
.service-result-card h3,
.aside-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.blog-card-placeholder {
    min-height: 240px;
    background:
        radial-gradient(circle at top right, rgba(213, 46, 46, 0.22), transparent 35%),
        linear-gradient(135deg, var(--bibip-mist), #dfe7ec);
}

.blog-card-meta,
.article-meta,
.service-result-top {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    flex-wrap: wrap;
    color: rgba(21, 50, 74, 0.56);
    font-size: 0.92rem;
}

.blog-pill {
    background: rgba(31, 79, 122, 0.08);
    color: var(--bibip-blue);
    margin-bottom: 1rem;
}

.partner-strip {
    background: linear-gradient(135deg, #ffffff, #eef3f7);
    border: 1px solid rgba(21, 50, 74, 0.08);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--bibip-shadow);
}

.partner-strip img {
    width: 100%;
    border-radius: 18px;
}

.search-hero-inner {
    background: linear-gradient(135deg, rgba(15, 33, 52, 0.96), rgba(31, 79, 122, 0.9));
    border-radius: 32px;
    color: #fff;
    padding: 3rem;
}

.search-hint {
    display: inline-block;
    margin-top: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.results-section+.results-section {
    border-top: 1px solid var(--bibip-line);
    padding-top: 3rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 1.2rem;
}

.service-tags span {
    background: rgba(21, 50, 74, 0.06);
}

.service-result-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 40px;
    border-radius: 999px;
    background: rgba(213, 46, 46, 0.12);
    color: var(--bibip-red);
    font-weight: 700;
}

.article-body-wrap {
    padding: 1rem 0 4rem;
}

.article-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: stretch;
}

.article-body {
    background: #fff;
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: var(--bibip-shadow);
}

.article-body img {
    width: 100%;
    border-radius: 18px;
    margin: 1.2rem 0;
}

.article-body h2,
.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
    padding-left: 1.25rem;
}

.article-aside {
    display: grid;
    gap: 1rem;
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: rgba(21, 50, 74, 0.58);
    margin-bottom: 1rem;
}

.site-footer {
    background: linear-gradient(180deg, var(--bibip-night), #081623);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    max-height: 80px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.footer-links a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.78);
}

.footer-socials {
    display: flex;
    gap: 0.9rem;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.5rem;
    padding-top: 1.4rem;
    font-size: 0.92rem;
}

.pagination-wrap {
    margin-top: 2rem;
}

.pagination {
    gap: 0.45rem;
}

.page-item .page-link {
    border-radius: 999px !important;
    border: 1px solid rgba(21, 50, 74, 0.08);
    color: var(--bibip-ink);
}

.page-item.active .page-link {
    background: var(--bibip-red);
    border-color: var(--bibip-red);
}

.empty-state {
    text-align: center;
}

.empty-state.compact {
    padding: 1.5rem;
}

@media (max-width: 991.98px) {

    .home-hero,
    .editorial-hero,
    .search-hero,
    .category-hero,
    .article-hero {
        padding-top: 3.5rem;
    }

    .hero-panel,
    .search-hero-inner {
        padding: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-search-form {
        flex-direction: column;
    }

    .hero-search-form input,
    .hero-search-form .btn,
    .service-result-actions .btn {
        width: 100%;
    }

    .section-heading,
    .results-header,
    .article-hero-inner,
    .service-result-top,
    .footer-bottom {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* 2026 public redesign */
:root {
    --bibip-2026-blue: #102f4a;
    --bibip-2026-link: #284f76;
    --bibip-2026-muted: #6d7b8d;
    --bibip-2026-red: #e6332a;
    --bibip-2026-search: #006dff;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {

    html,
    body {
        overflow-x: clip;
    }
}

body.bibip-redesign {
    background: #fff;
    color: var(--bibip-2026-blue);
    font-family: 'Outfit', Arial, sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    body.bibip-redesign {
        overflow-x: clip;
    }
}

.site-header {
    position: relative;
    background: #fff;
    border-bottom: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.bibip-navbar {
    min-height: 145px;
    padding: 24px 0 22px;
}

.brand-logo {
    max-height: 82px;
    width: auto;
}

.main-nav-panel {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.mobile-menu-toggle,
.mobile-menu-close,
.mobile-menu-backdrop,
.mobile-menu-head {
    display: none;
}

.mobile-menu-toggle,
.mobile-menu-close {
    border: 0;
    background: transparent;
    color: var(--bibip-2026-blue);
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    position: relative;
    padding: 0.25rem 0 !important;
    color: #31577a;
    font-size: 1.02rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bibip-2026-blue);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--bibip-2026-red);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.language-flags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 28px;
}

.language-flags img {
    width: 24px;
    height: 18px;
    object-fit: cover;
}

.bibip-home {
    background: #fff;
    overflow: hidden;
}

.home-motion-ready .bibip-home [data-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.home-motion-ready .bibip-home [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.home-find {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 16px 76px;
    overflow: hidden;
}

.home-find::before,
.home-find::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-find::before {
    background:
        radial-gradient(circle at 82% 74%, rgba(255, 196, 134, 0.16), transparent 26%),
        radial-gradient(circle at 19% 24%, rgba(255, 255, 255, 0.16), transparent 25%);
    animation: none;
}

.home-find::after {
    /*background:
        linear-gradient(180deg, rgba(8, 17, 28, 0.2), rgba(8, 17, 28, 0.36)),
        linear-gradient(90deg, rgba(8, 17, 28, 0.24), rgba(8, 17, 28, 0.02) 44%, rgba(8, 17, 28, 0.1));*/
}

.home-find-panel {
    position: relative;
    z-index: 1;
    width: min(860px, 100%);
    max-width: calc(100vw - 32px);
    box-sizing: border-box;
    background: transparent;
    padding: 0;
    text-align: center;
    box-shadow: none;
    backdrop-filter: none;
    animation: none;
}

.home-find-panel h1 {
    margin: 0 0 12px;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.25rem, 5vw, 2rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    text-shadow: var(--bibip-mockup-text-glow);
}

.home-find-panel p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.35;
    text-shadow: var(--bibip-mockup-text-glow);
}

.home-find-search {
    display: grid;
    grid-template-columns: 1fr 67px;
    width: min(100%, 730px);
    margin: 0 auto;
    min-height: 44px;
    border: 0;
    border-radius: var(--bibip-mockup-card-radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 28px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: none;
}

.home-find-search:focus-within {
    transform: none;
    border-color: transparent;
    box-shadow: 0 0 34px rgba(0, 0, 0, 0.64);
}

.home-find-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    padding: 0 14px;
    color: #27405b;
    font-size: 0.9rem;
    font-weight: 400;
}

.home-find-search input::placeholder {
    color: #8b95a1;
}

.home-find-search button {
    border: 0;
    background: var(--bibip-mockup-search);
    color: #fff;
    font-size: 1rem;
}

.home-section {
    padding: 82px 0 0;
}

.home-blog-section {
    padding-top: 120px;
}

.home-section-title {
    margin: 0 0 44px;
    color: #122e48;
    text-align: center;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.65rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.home-blog-card {
    text-align: center;
    transition: transform 0.35s ease;
}

.home-blog-card:hover {
    transform: translateY(-8px);
}

.home-blog-image {
    display: block;
    overflow: hidden;
    border-radius: 4px;
}

.home-blog-image img {
    width: 100%;
    aspect-ratio: 1.52;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.45s ease;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.home-blog-card h3 {
    margin: 17px 0 6px;
    color: #17334e;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
}

.home-blog-card p {
    min-height: 70px;
    margin: 0 auto 13px;
    color: #738091;
    font-size: 0.96rem;
    line-height: 1.35;
}

.home-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 4px 16px;
    border-radius: 4px;
    background: #143451;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-small-button:hover {
    color: #fff;
    background: #0c263e;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(12, 38, 62, 0.2);
}

.home-points-section {
    padding-top: 58px;
    padding-bottom: 108px;
}

.home-points-section .home-section-title {
    margin-bottom: 26px;
}

.home-points-wrap {
    position: relative;
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 42px;
}

.home-points-carousel-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
}

.home-points-carousel-stack>.home-carousel-wrap {
    width: 100%;
    min-width: 0;
}

.home-points-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 6px;
}

.home-points-track::-webkit-scrollbar {
    display: none;
}

.home-point-card {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: calc((100% - 66px) / 4);
    scroll-snap-align: start;
    text-align: center;
    transition: transform 0.35s ease;
}

.home-point-card:hover {
    transform: translateY(-10px);
}

.home-point-card img {
    width: 100%;
    aspect-ratio: 1.55;
    border-radius: 7px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(11, 32, 51, 0.22);
    transition: transform 0.75s ease, box-shadow 0.35s ease;
}

.home-point-card:hover img {
    transform: scale(1.04);
    box-shadow: 0 18px 34px rgba(11, 32, 51, 0.2);
}

.home-point-card h3 {
    margin: 20px 0 0;
    color: #222;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
}

.home-slider-arrow {
    position: absolute;
    top: 44%;
    z-index: 2;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 50%;
    background: #12334f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 24px rgba(18, 51, 79, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.home-slider-arrow:hover {
    background: #0c263e;
    box-shadow: 0 20px 30px rgba(18, 51, 79, 0.24);
    transform: scale(1.08);
}

.home-slider-arrow-left {
    left: 10px;
}

.home-slider-arrow-right {
    right: 10px;
}

.home-promo {
    padding: 0 0 44px;
    text-align: center;
}

.home-promo-rule {
    position: relative;
    height: 45px;
    margin-bottom: 20px;
}

.home-promo-rule::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 17px;
    height: 14px;
    background: #102f4a;
    transform-origin: center;
    animation: homeRulePulse 5.5s ease-in-out infinite;
}

.home-promo-rule img {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    margin: 0 auto;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
}

.home-promo h2 {
    margin: 0 0 29px;
    color: #17334e;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
}

.home-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-logo-row img {
    width: 152px;
    height: 100px;
    object-fit: contain;
    transition: transform 0.35s ease, filter 0.35s ease;
    animation: homeLogoFloat 6.4s ease-in-out infinite;
    animation-delay: calc(var(--logo-index, 0) * 160ms);
}

.home-logo-row img:hover {
    animation-play-state: paused;
    transform: translateY(-6px) scale(1.03);
    filter: saturate(1.06);
}

.article-page-2026 {
    color: #1f3c5c;
    background: #fff;
}

.article-motion-ready .article-page-2026 [data-article-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.988);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--article-reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--article-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.article-motion-ready .article-page-2026 [data-article-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.article-breadcrumb-band {
    background: #f2f4f7;
    border-top: 1px solid rgba(16, 47, 74, 0.04);
    border-bottom: 1px solid rgba(16, 47, 74, 0.04);
}

.article-breadcrumbs-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 1rem 0;
    color: #75849a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.article-breadcrumbs-2026 a {
    color: inherit;
}

.article-shell-2026 {
    padding: 2rem 0 2.2rem;
}

.article-layout-2026 {
    display: grid;
    grid-template-columns: minmax(0, 1024px) 320px;
    justify-content: space-between;
    gap: 3rem;
    align-items: start;
}

.article-main-2026 {
    min-width: 0;
}

.article-kicker-2026 {
    display: inline-block;
    margin-bottom: 0.95rem;
    color: #7a899d;
    font-size: 0.96rem;
    font-weight: 400;
}

.article-title-2026 {
    margin: 0 0 1.7rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2.25rem, 3.3vw, 3.15rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.article-media-2026 {
    margin-bottom: 2rem;
}

.article-media-2026 img {
    width: 100%;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 20px 42px rgba(15, 41, 66, 0.1);
}

.article-content-2026 {
    max-width: 100%;
    color: #7b899d;
    font-size: 1rem;
    line-height: 1.6;
}

.article-content-2026> :first-child {
    margin-top: 0;
}

.article-content-2026 h2,
.article-content-2026 h3,
.article-content-2026 h4 {
    margin: 2.2rem 0 0.85rem;
    color: #1f3c5c;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.9rem, 2.4vw, 2.55rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.16;
}

.article-content-2026 h3,
.article-content-2026 h4 {
    font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.article-content-2026 p {
    margin: 0 0 1.2rem;
    color: #7b899d;
    font-size: 1rem;
    line-height: 1.6;
}

.article-content-2026 strong {
    color: #6f7f94;
    font-weight: 500;
}

.article-content-2026 ul,
.article-content-2026 ol {
    margin: 0 0 1.25rem;
    padding-left: 1.3rem;
}

.article-content-2026 li {
    margin-bottom: 0.45rem;
}

.article-content-2026 img {
    width: 100%;
    display: block;
    margin: 2rem 0 2.2rem;
    border-radius: 4px;
}

.article-content-2026 a {
    color: #31577a;
}

.article-sidebar-2026 {
    padding-top: 4.1rem;
}

.article-sidebar-2026 h2 {
    margin: 0 0 1.55rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0;
}

.article-category-list-2026 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-category-list-2026 li {
    border-bottom: 1px solid rgba(31, 60, 92, 0.16);
}

.article-category-list-2026 a {
    display: block;
    padding: 0.9rem 0;
    color: #314f73;
    font-size: 1rem;
    line-height: 1.35;
}

.article-category-list-2026 a.is-active {
    color: #1d3958;
    font-weight: 700;
}

.article-share-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.3rem;
    color: #1e3a5b;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.article-share-2026 a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1e3a5b;
    font-size: 1.15rem;
}

.article-share-2026--card {
    margin-top: 0.95rem;
}

.article-related-2026 {
    padding: 0 0 5rem;
}

.article-related-2026 h2 {
    margin: 0 0 2rem;
    color: #1d3958;
    text-align: center;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
}

.article-related-grid-2026 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem;
    max-width: 1500px;
    margin: 0 auto;
}

.article-related-card-2026 {
    text-align: center;
    transition: transform 0.35s ease;
}

.article-related-card-2026:hover {
    transform: translateY(-8px);
}

.article-related-image-2026 {
    display: block;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.article-related-image-2026 img {
    width: 100%;
    aspect-ratio: 1.58;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.35s ease;
}

.article-related-card-2026:hover .article-related-image-2026 img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.article-related-body-2026 h3 {
    margin: 0 0 0.8rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.55rem, 1.9vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

.article-related-body-2026 h3 a {
    color: inherit;
}

.article-related-body-2026 p {
    max-width: 340px;
    margin: 0 auto 1rem;
    color: #7b899d;
    font-size: 0.98rem;
    line-height: 1.45;
}

.article-related-button-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 166px;
    min-height: 42px;
    padding: 0.45rem 1.1rem;
    border-radius: 7px;
    background: #1d3958;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.article-related-button-2026:hover {
    color: #fff;
    background: #16314d;
}

.blog-index-page-2026 {
    background: #fff;
}

.blog-index-motion-ready .blog-index-page-2026 [data-blog-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.988);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--blog-reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--blog-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.blog-index-motion-ready .blog-index-page-2026 [data-blog-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.blog-index-breadcrumb-band {
    background: #f2f4f7;
    border-top: 1px solid rgba(16, 47, 74, 0.04);
    border-bottom: 1px solid rgba(16, 47, 74, 0.04);
}

.blog-index-breadcrumbs-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 1rem 0;
    color: #75849a;
    font-size: 0.95rem;
    line-height: 1.5;
}

.blog-index-breadcrumbs-2026 a {
    color: inherit;
}

.blog-index-hero-2026 {
    position: relative;
    min-height: 360px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.blog-index-hero-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 28, 44, 0.2), rgba(12, 28, 44, 0.34)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 40%);
    animation: homeHeroGlow 12s ease-in-out infinite;
}

.blog-index-hero-overlay-2026 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-index-hero-copy-2026 {
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
}

.blog-index-hero-copy-2026 h1 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.blog-index-hero-copy-2026 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.blog-index-intro-2026 {
    padding: 2rem 0 1.2rem;
}

.blog-index-intro-2026 p {
    max-width: 1220px;
    margin: 0 auto;
    color: #7b899d;
    font-size: 1.02rem;
    line-height: 1.52;
}

.blog-index-categories-2026 {
    padding: 1rem 0 5rem;
}

.blog-index-categories-2026 h2 {
    margin: 0 0 2rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.06;
}

.blog-index-category-grid-2026 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3.2rem 2rem;
}

.blog-index-category-card-2026 {
    text-align: center;
    transition: transform 0.35s ease;
}

.blog-index-category-card-2026:hover {
    transform: translateY(-8px);
}

.blog-index-category-image-2026 {
    display: block;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 4px;
}

.blog-index-category-image-2026 img {
    width: 100%;
    aspect-ratio: 1.34;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.35s ease;
}

.blog-index-category-card-2026:hover .blog-index-category-image-2026 img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.blog-index-category-body-2026 h3 {
    margin: 0 0 0.55rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.6rem, 1.8vw, 2.1rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

.blog-index-category-body-2026 h3 a {
    color: inherit;
}

.blog-index-category-body-2026 p {
    max-width: 290px;
    margin: 0 auto 0.95rem;
    color: #7b899d;
    font-size: 0.98rem;
    line-height: 1.45;
}

.blog-index-category-button-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    min-height: 40px;
    padding: 0.42rem 1rem;
    border-radius: 7px;
    background: #1d3958;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.blog-index-category-button-2026:hover {
    color: #fff;
    background: #16314d;
}

.blog-category-page-2026 {
    background: #fff;
}

.blog-category-motion-ready .blog-category-page-2026 [data-blog-category-reveal] {
    opacity: 0;
    transform: translateY(34px) scale(0.988);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--blog-category-reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--blog-category-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.blog-category-motion-ready .blog-category-page-2026 [data-blog-category-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.blog-category-hero-2026 {
    position: relative;
    min-height: 360px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.blog-category-hero-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 28, 44, 0.2), rgba(12, 28, 44, 0.34)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 40%);
    animation: homeHeroGlow 12s ease-in-out infinite;
}

.blog-category-hero-overlay-2026 {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.blog-category-hero-copy-2026 {
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
}

.blog-category-hero-copy-2026 h1 {
    margin: 0 0 0.8rem;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.blog-category-hero-copy-2026 p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.28rem;
    font-weight: 600;
    line-height: 1.25;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.blog-category-intro-2026 {
    padding: 2rem 0 1.2rem;
}

.blog-category-intro-content-2026 {
    max-width: 1220px;
    margin: 0 auto;
    color: #7b899d;
    font-size: 1.02rem;
    line-height: 1.52;
}

.blog-category-intro-content-2026> :first-child {
    margin-top: 0;
}

.blog-category-intro-content-2026> :last-child {
    margin-bottom: 0;
}

.blog-category-intro-content-2026 p,
.blog-category-intro-content-2026 ul,
.blog-category-intro-content-2026 ol,
.blog-category-intro-content-2026 blockquote {
    margin: 0 0 1rem;
}

.blog-category-intro-content-2026 ul,
.blog-category-intro-content-2026 ol {
    padding-left: 1.4rem;
}

.blog-category-intro-content-2026 a {
    color: #1d6fa5;
}

.blog-category-intro-content-2026 strong,
.blog-category-intro-content-2026 b {
    color: #35506b;
}

.blog-category-posts-2026 {
    padding: 1rem 0 5rem;
}

.blog-category-posts-2026 h2 {
    margin: 0 0 2rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.06;
}

.blog-category-post-grid-2026 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem 1.8rem;
}

.blog-category-post-card-2026 {
    text-align: center;
    transition: transform 0.35s ease;
}

.blog-category-post-card-2026:hover {
    transform: translateY(-8px);
}

.blog-category-post-image-2026 {
    display: block;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 4px;
}

.blog-category-post-image-2026 img {
    width: 100%;
    aspect-ratio: 1.36;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease, filter 0.35s ease;
}

.blog-category-post-card-2026:hover .blog-category-post-image-2026 img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.blog-category-post-body-2026 h3 {
    margin: 0 0 0.7rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.8rem, 2vw, 2.45rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

.blog-category-post-body-2026 h3 a {
    color: inherit;
}

.blog-category-post-body-2026 p {
    max-width: 310px;
    margin: 0 auto 0.95rem;
    color: #7b899d;
    font-size: 0.98rem;
    line-height: 1.45;
}

.blog-category-post-button-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 166px;
    min-height: 40px;
    padding: 0.42rem 1rem;
    border-radius: 7px;
    background: #1d3958;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.blog-category-post-button-2026:hover {
    color: #fff;
    background: #16314d;
}

.bibip-categories-page {
    background: #fff;
    color: #132e48;
}

.categories-breadcrumb-strip {
    background: #f6f7f8;
    padding: 34px 0 35px;
}

.categories-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #193653;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.categories-breadcrumbs a {
    color: inherit;
}

.categories-finder-section {
    min-height: auto;
    padding: 3em 1em;
}

.categories-finder-copy {
    margin: 0 auto 42px;
    text-align: center;
}

.categories-finder-copy h1 {
    margin: 0 0 12px;
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(2.45rem, 4.1vw, 3.65rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.06;
}

.categories-finder-copy p {
    margin: 0;
    color: #132e48;
    font-size: clamp(1.15rem, 1.9vw, 1.8rem);
    font-weight: 800;
    line-height: 1.12;
}

.categories-finder-form {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) 74px;
    gap: 19px 14px;
    width: min(670px, 100%);
    margin: 0 auto;
    align-items: start;
}

.categories-finder-form--with-reset {
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) 74px max-content;
    width: min(840px, 100%);
}

.categories-select-wrap {
    position: relative;
    margin: 0;
}

.categories-select-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 19px;
    width: 16px;
    height: 16px;
    border-top: 4px solid #132e48;
    border-left: 4px solid #132e48;
    pointer-events: none;
    transform: translateY(-18%) rotate(45deg);
}

.categories-select-wrap select {
    width: 100%;
    min-height: 52px;
    appearance: none;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    background: #fff;
    box-shadow: 8px 10px 16px rgba(22, 38, 56, 0.16);
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
    outline: none;
    padding: 0 50px 0 19px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.categories-select-wrap select:focus {
    border-color: #006dff;
    box-shadow: 8px 10px 18px rgba(0, 109, 255, 0.18);
}

.categories-finder-form button {
    min-height: 52px;
    border: 0;
    border-radius: 6px;
    background: #006dff;
    box-shadow: 7px 10px 16px rgba(0, 109, 255, 0.22);
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.categories-finder-form button:hover,
.categories-finder-form button:focus-visible {
    background: #005fe0;
    box-shadow: 9px 13px 20px rgba(0, 109, 255, 0.26);
    transform: translateY(-1px);
}

.categories-reset-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid rgba(19, 46, 72, 0.18);
    border-radius: 6px;
    background: #fff;
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 16px;
    white-space: nowrap;
    box-shadow: 6px 9px 14px rgba(22, 38, 56, 0.1);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.categories-reset-link:hover,
.categories-reset-link:focus-visible {
    border-color: #006dff;
    color: #006dff;
    transform: translateY(-1px);
}

.categories-finder-shortcuts {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.categories-map-jump {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid rgba(19, 46, 72, 0.16);
    border-radius: 999px;
    background: #fff;
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1;
    padding: 0 18px;
    box-shadow: 6px 10px 16px rgba(22, 38, 56, 0.1);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.categories-map-jump:hover,
.categories-map-jump:focus-visible {
    border-color: #006dff;
    color: #006dff;
    transform: translateY(-1px);
}

.categories-results-section {
    padding: 0 0 90px;
    scroll-margin-top: 28px;
}

.categories-results-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    border-top: 1px solid rgba(19, 46, 72, 0.12);
    padding-top: 34px;
}

.categories-results-heading h2 {
    margin: 0;
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0;
}

.categories-results-heading p {
    margin: 0;
    color: #637385;
    font-size: 1rem;
    font-weight: 600;
}

.categories-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.categories-client-card {
    border: 1px solid rgba(19, 46, 72, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(18, 47, 74, 0.08);
    overflow: hidden;
}

.categories-client-summary {
    display: grid;
    grid-template-columns: 236px minmax(0, 1fr);
    gap: 30px;
    align-items: center;
    padding: 26px 32px 24px;
}

.categories-client-summary--no-image {
    grid-template-columns: 1fr;
}

.categories-client-image {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: #f2f5f7;
}

.categories-client-image img {
    width: 100%;
    height: 138px;
    object-fit: cover;
}

.categories-client-main {
    min-width: 0;
}

.categories-client-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.categories-client-top h3 {
    margin: 0 0 6px;
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.12;
}

.categories-client-categories {
    margin: 0;
    color: #707f90;
    font-size: 1rem;
    line-height: 1.3;
}

.categories-client-top span {
    flex: 0 0 auto;
    border-radius: 999px;
    background: rgba(230, 51, 42, 0.12);
    color: #e6332a;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 9px;
}

.categories-client-services-inline {
    margin: 10px 0 0;
    color: #3d4e5e;
    font-size: 0.98rem;
    line-height: 1.45;
}

.categories-client-services-inline strong {
    color: #132e48;
}

.categories-client-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.categories-client-call,
.categories-client-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 8px 18px;
}

.categories-client-call {
    border: 1px solid #19925d;
    background: #fff;
    color: #19925d;
}

.categories-client-call:hover {
    color: #15764c;
    border-color: #15764c;
}

.categories-client-link {
    background: #132e48;
    color: #fff;
}

.categories-client-link:hover {
    color: #fff;
    background: #0d253d;
}

.categories-client-details {
    border-top: 1px solid rgba(19, 46, 72, 0.12);
    padding: 20px 32px 26px;
}

.categories-client-details--split {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 34px;
}

.categories-client-contact h4,
.categories-client-hours h4 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 10px;
    color: #1f344c;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0;
}

.categories-client-contact h4::after,
.categories-client-hours h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 104px;
    height: 3px;
    background: #006dff;
}

.categories-client-contact-list {
    display: grid;
    gap: 8px;
}

.categories-client-contact-list p {
    display: flex;
    gap: 8px;
    margin: 0;
    color: #37495c;
    font-size: 0.98rem;
    line-height: 1.42;
}

.categories-client-contact-list i {
    margin-top: 2px;
    color: #1f344c;
}

.categories-client-hours-table {
    overflow-x: auto;
}

.categories-client-hours-table table {
    width: 100%;
    border-collapse: collapse;
}

.categories-client-hours-table th,
.categories-client-hours-table td {
    border-bottom: 1px solid rgba(19, 46, 72, 0.12);
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}

.categories-client-hours-table th {
    color: #1f344c;
    font-size: 0.95rem;
    font-weight: 700;
}

.categories-client-hours-table td {
    color: #47596b;
    font-size: 0.92rem;
    line-height: 1.4;
}

.categories-client-hours-table em,
.categories-client-hours-mobile em {
    color: #5e6d7d;
}

.categories-client-hours-mobile {
    display: grid;
    gap: 8px;
}

.categories-client-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(19, 46, 72, 0.12);
    padding-bottom: 8px;
}

.categories-client-hours-row span:first-child {
    color: #1f344c;
    font-weight: 700;
}

.categories-client-hours-row span:last-child {
    display: grid;
    justify-items: end;
    color: #47596b;
}

.categories-client-hours-row small {
    font-size: 0.88rem;
}

.categories-empty-state {
    grid-column: 1 / -1;
    border: 1px solid rgba(19, 46, 72, 0.12);
    border-radius: 8px;
    padding: 38px 24px;
    text-align: center;
}

.categories-empty-state h2 {
    margin: 0 0 8px;
    font-family: 'Outfit', Arial, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
}

.categories-empty-state p {
    margin: 0;
    color: #637385;
}

.categories-map-section {
    padding: 0 0 110px;
    scroll-margin-top: 32px;
}

.categories-map-shell {
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    background: #dfe4ea;
}

.categories-map-shell #search-results {
    position: absolute;
    top: 20px;
    left: 50%;
    z-index: 3;
    width: min(500px, calc(100% - 32px));
    max-height: 300px;
    overflow-y: auto;
    margin: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(18, 47, 74, 0.18);
    transform: translateX(-50%);
}

.categories-map-shell #map {
    width: 100%;
    height: 620px;
}

.categories-map-shell .client-card {
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
    border-left: 4px solid #183047;
}

.categories-map-shell .client-card:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

.categories-map-shell .map-info-window {
    max-width: 300px;
}

.categories-map-shell .map-info-window h5 {
    margin-bottom: 5px;
    color: #183047;
}

.categories-map-shell .map-info-window p {
    margin-bottom: 5px;
}

.categories-map-shell .map-info-window a {
    color: #183047;
    font-weight: bold;
}

.categories-map-shell .user-location-pin {
    display: flex;
    align-items: center;
    justify-content: center;
}

.categories-map-shell .user-location-dot {
    width: 16px;
    height: 16px;
    background-color: #4285F4;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.3);
}

.categories-map-legend {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
    padding: 18px 22px;
    border: 1px solid rgba(19, 46, 72, 0.12);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 24px rgba(18, 47, 74, 0.06);
}

.categories-map-legend-title {
    flex: 0 0 auto;
    color: #132e48;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.categories-map-legend-items {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
}

.categories-map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #425568;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.categories-map-legend-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .categories-finder-shortcuts {
        margin-top: 14px;
    }

    .categories-map-jump {
        min-height: 40px;
        padding: 0 16px;
    }

    .categories-map-section {
        padding-bottom: 88px;
    }

    .categories-map-shell {
        min-height: 460px;
    }

    .categories-map-shell #map {
        height: 460px;
    }

    .categories-map-shell #search-results {
        top: 14px;
        width: calc(100% - 20px);
    }

    .categories-map-legend {
        align-items: start;
        flex-direction: column;
        gap: 14px;
        margin-top: 16px;
        padding: 16px 18px;
    }

    .categories-map-legend-items {
        gap: 14px 18px;
    }

    .categories-map-legend-item {
        font-size: 0.92rem;
    }
}

@keyframes homeHeroPanelIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes homeHeroItemIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeHeroGlow {

    0%,
    100% {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 0.78;
    }

    50% {
        transform: scale(1.04) translate3d(1.5%, -1%, 0);
        opacity: 1;
    }
}

@keyframes homePanelBreathe {

    0%,
    100% {
        box-shadow: 0 16px 40px rgba(4, 24, 45, 0.14);
    }

    50% {
        box-shadow: 0 22px 48px rgba(4, 24, 45, 0.2);
    }
}

@keyframes homeRulePulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 1;
    }

    50% {
        transform: scaleX(0.96);
        opacity: 0.88;
    }
}

@keyframes homeLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-motion-ready .bibip-home [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .article-motion-ready .article-page-2026 [data-article-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blog-index-motion-ready .blog-index-page-2026 [data-blog-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .blog-category-motion-ready .blog-category-page-2026 [data-blog-category-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .home-find::before,
    .blog-index-hero-2026::before,
    .blog-category-hero-2026::before,
    .home-find-panel,
    .home-find-panel h1,
    .home-find-panel p,
    .home-find-search,
    .home-promo-rule::before,
    .home-logo-row img {
        animation: none;
    }

    .home-blog-card,
    .article-related-card-2026,
    .blog-index-category-card-2026,
    .blog-category-post-card-2026,
    .home-point-card,
    .home-small-button,
    .home-blog-image img,
    .article-related-image-2026 img,
    .blog-index-category-image-2026 img,
    .blog-category-post-image-2026 img,
    .home-point-card img,
    .home-slider-arrow,
    .home-logo-row img,
    .home-find-search {
        transition: none;
    }
}

.site-footer {
    background: #102f4a;
    color: rgba(255, 255, 255, 0.82);
    padding: 48px 0 27px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 180px minmax(360px, 1fr) 230px 100px;
    gap: 46px;
    align-items: start;
}

.footer-title {
    position: relative;
    margin: 0 0 13px;
    padding-bottom: 9px;
    color: rgba(255, 255, 255, 0.84);
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.36);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 4px;
}

.footer-links a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.25;
}

.footer-service-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.footer-store-badges {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.footer-store-badges img {
    width: 150px;
    height: auto;
    border-radius: 6px;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 28px;
    height: 28px;
    background: rgba(88, 150, 204, 0.6);
    color: #fff;
    font-size: 0.9rem;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 210px 1fr 260px;
    align-items: end;
    gap: 24px;
    margin-top: 86px;
    padding-top: 0;
    border-top: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.footer-logo {
    max-height: none;
}

.footer-bottom>img:last-child {
    justify-self: end;
    width: 230px;
    max-height: 72px;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .categories-client-details--split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-category-post-grid-2026 {
        gap: 2.4rem 1.4rem;
    }

    .blog-index-category-grid-2026 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.4rem 1.6rem;
    }

    .article-layout-2026 {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr 1.8fr;
    }
}

@media (max-width: 991.98px) {

    .categories-finder-form {
        grid-template-columns: 1fr;
        width: min(560px, 100%);
    }

    .categories-finder-form--with-reset {
        grid-template-columns: 1fr;
        width: min(560px, 100%);
    }

    .categories-finder-form button {
        width: 100%;
    }

    .categories-reset-link {
        width: 100%;
    }

    .blog-category-hero-2026,
    .blog-category-hero-overlay-2026 {
        min-height: 320px;
    }

    .blog-category-intro-2026 {
        padding-top: 1.6rem;
    }

    .blog-category-post-grid-2026 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-index-intro-2026 {
        padding-top: 1.6rem;
    }

    .article-shell-2026 {
        padding-top: 1.6rem;
    }

    .article-layout-2026 {
        grid-template-columns: 1fr;
    }

    .article-sidebar-2026 {
        padding-top: 0;
    }

    .article-related-grid-2026 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 100%;
    }

    html.mobile-menu-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.mobile-menu-open {
        position: fixed;
        top: var(--mobile-menu-scroll-y, 0px);
        left: 0;
        right: 0;
        width: 100%;
        overflow: hidden;
        overscroll-behavior: none;
    }

    body.bibip-redesign .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    body.mobile-menu-open .site-header {
        z-index: 1085;
    }

    .bibip-navbar {
        min-height: auto;
        padding: 16px 0;
    }

    .bibip-navbar>.container {
        justify-content: space-between;
    }

    .mobile-menu-toggle {
        position: relative;
        display: inline-flex;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(16, 47, 74, 0.14);
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 12px 26px rgba(16, 47, 74, 0.1);
    }

    .mobile-menu-toggle__line {
        position: absolute;
        left: 13px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.2s ease, width 0.2s ease;
    }

    .mobile-menu-toggle__line:first-child {
        top: 15px;
        width: 24px;
    }

    .mobile-menu-toggle__line:nth-child(2) {
        top: 23px;
        width: 18px;
    }

    .mobile-menu-toggle__line:nth-child(3) {
        top: 31px;
        width: 12px;
    }

    .mobile-menu-toggle:hover .mobile-menu-toggle__line,
    .mobile-menu-toggle:focus-visible .mobile-menu-toggle__line {
        transform: translateX(2px);
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1070;
        display: block;
        background: rgba(5, 18, 31, 0.34);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.26s ease;
    }

    .mobile-menu-backdrop[hidden] {
        display: none;
    }

    body.mobile-menu-open .mobile-menu-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav-panel {
        position: fixed;
        top: 0;
        right: -100vw;
        z-index: 1080;
        display: flex;
        width: min(95vw, 420px);
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        padding: 22px 24px 28px;
        background: #fff;
        box-shadow: -24px 0 64px rgba(5, 18, 31, 0.18);
        transform: none;
        transition: right 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        visibility: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    body.mobile-menu-open .main-nav-panel {
        right: 0;
        visibility: visible;
    }

    .mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 34px;
    }

    .mobile-menu-logo {
        width: 128px;
        height: auto;
    }

    .mobile-menu-close {
        display: inline-flex;
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f4f7fa;
        color: var(--bibip-2026-blue);
        font-size: 1.2rem;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu-close:hover,
    .mobile-menu-close:focus-visible {
        background: var(--bibip-2026-red);
        color: #fff;
        transform: rotate(90deg);
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
        padding-top: 0;
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(16, 47, 74, 0.1);
    }

    .navbar-nav .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 18px 0 !important;
        color: var(--bibip-2026-blue);
        font-size: 1.36rem;
        font-weight: 700;
        line-height: 1.15;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-nav .nav-link::before {
        content: '';
        width: 8px;
        flex: 0 0 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--bibip-2026-red);
        opacity: 0;
        transform: scale(0.4);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .navbar-nav .nav-link:hover::before,
    .navbar-nav .nav-link.active::before {
        opacity: 1;
        transform: scale(1);
    }

    .nav-link.active::after {
        display: none;
    }

    .language-flags {
        justify-content: flex-start;
        gap: 12px;
        margin: auto 0 0;
        padding-top: 30px;
    }

    .language-flags a {
        display: inline-flex;
        width: 48px;
        height: 48px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(16, 47, 74, 0.1);
        border-radius: 50%;
        background: #f8fafc;
    }

    .language-flags img {
        width: 25px;
        height: 19px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 48px;
    }

    .footer-bottom>img:last-child {
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .categories-breadcrumb-strip {
        padding: 24px 0;
    }

    .categories-finder-copy {
        margin-bottom: 30px;
    }

    .categories-finder-copy h1 {
        font-size: 2rem;
    }

    .categories-finder-copy p {
        font-size: 1.15rem;
    }

    .categories-select-wrap select {
        font-size: 1rem;
    }

    .categories-results-heading {
        display: block;
    }

    .categories-results-heading p {
        margin-top: 8px;
    }

    .categories-client-summary {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 20px 20px;
    }

    .categories-client-image img {
        height: 190px;
    }

    .categories-client-details {
        padding: 18px 20px 22px;
    }

    .categories-client-top {
        display: block;
    }

    .categories-client-top span {
        display: inline-flex;
        margin-top: 10px;
    }

    .categories-client-hours-row {
        align-items: start;
    }

    .blog-category-hero-2026,
    .blog-category-hero-overlay-2026 {
        min-height: 260px;
    }

    .blog-category-hero-copy-2026 {
        max-width: 330px;
    }

    .blog-category-hero-copy-2026 h1 {
        font-size: 2.05rem;
    }

    .blog-category-hero-copy-2026 p {
        font-size: 1rem;
    }

    .blog-category-posts-2026 {
        padding-bottom: 3.5rem;
    }

    .blog-category-post-grid-2026 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-category-post-body-2026 h3 {
        font-size: 1.65rem;
    }

    .blog-category-post-body-2026 p {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .blog-category-post-button-2026 {
        min-width: 150px;
        min-height: 38px;
        font-size: 0.88rem;
    }

    .blog-index-breadcrumbs-2026 {
        font-size: 0.88rem;
    }

    .blog-index-hero-copy-2026 {
        max-width: 330px;
    }

    .blog-index-hero-copy-2026 h1 {
        font-size: 2.05rem;
    }

    .blog-index-hero-copy-2026 p {
        font-size: 1rem;
    }

    .blog-index-categories-2026 {
        padding-bottom: 3.5rem;
    }

    .blog-index-category-grid-2026 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.8rem 1rem;
    }

    .blog-index-category-body-2026 h3 {
        font-size: 1.45rem;
    }

    .blog-index-category-body-2026 p {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .blog-index-category-button-2026 {
        min-width: 150px;
        min-height: 38px;
        font-size: 0.88rem;
    }

    .article-breadcrumbs-2026 {
        font-size: 0.88rem;
    }

    .article-title-2026 {
        margin-bottom: 1.25rem;
    }

    .article-content-2026 {
        font-size: 0.97rem;
    }

    .article-content-2026 h2,
    .article-content-2026 h3,
    .article-content-2026 h4 {
        margin-top: 1.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.14;
    }

    .article-share-2026 {
        flex-wrap: wrap;
    }

    .article-related-2026 {
        padding-bottom: 3.5rem;
    }

    .article-related-body-2026 h3 {
        font-size: 1.45rem;
    }

    .article-related-grid-2026 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .article-related-card-2026--mobile-hidden {
        display: none;
    }

    .article-related-body-2026 p {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .article-related-button-2026 {
        min-width: 148px;
        min-height: 38px;
        font-size: 0.9rem;
    }

    .brand-logo {
        max-height: 64px;
    }

    .home-section-title {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.42rem;
    }

    .home-blog-section {
        padding-top: 64px;
    }

    .home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-card p {
        min-height: auto;
        font-size: 0.88rem;
    }

    .home-blog-card h3 {
        font-size: 1.02rem;
    }

    .home-small-button {
        padding: 4px 12px;
        font-size: 0.72rem;
    }

    .home-logo-row img {
        width: 140px;
        height: 66px;
    }

    .footer-service-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .home-points-wrap {
        padding: 0 12px;
    }

    .home-point-card {
        flex-basis: calc((100% - 22px) / 2);
        min-width: calc((100% - 22px) / 2);
    }

    .home-slider-arrow {
        width: 38px;
        height: 38px;
        top: 40%;
    }

    .home-slider-arrow-left {
        left: 0;
    }

    .home-slider-arrow-right {
        right: 0;
    }

    .footer-bottom>img:last-child {
        width: 190px;
    }
}

/* Mockup page 2 alignment */
:root {
    --bibip-mockup-blue: #122e48;
    --bibip-mockup-blue-soft: #2f4f71;
    --bibip-mockup-gold: #c0902f;
    --bibip-mockup-search: #2f80ed;
    --bibip-mockup-card-radius: 8px;
    --bibip-mockup-button-radius: 6px;
    --bibip-mockup-text-glow: 0 0 24px rgba(0, 0, 0, 0.58), 0 14px 34px rgba(0, 0, 0, 0.24);
    --bibip-mockup-shadow: 0 18px 40px rgba(18, 46, 72, 0.12);
    --bibip-mockup-image-height: clamp(168px, 18vw, 236px);
}

body.bibip-redesign,
body.bibip-redesign h1,
body.bibip-redesign h2,
body.bibip-redesign h3,
body.bibip-redesign h4,
body.bibip-redesign h5,
body.bibip-redesign h6,
body.bibip-redesign .nav-link,
body.bibip-redesign .footer-title,
body.bibip-redesign .footer-links a,
body.bibip-redesign .footer-bottom,
body.bibip-redesign .home-small-button,
body.bibip-redesign .blog-index-category-button-2026,
body.bibip-redesign .blog-category-post-button-2026,
body.bibip-redesign .article-related-button-2026,
body.bibip-redesign .categories-finder-form button,
body.bibip-redesign .categories-reset-link,
body.bibip-redesign .btn-bibip-primary,
body.bibip-redesign .btn-bibip-secondary {
    font-family: 'Montserrat', Arial, sans-serif;
}

body.bibip-redesign {
    color: var(--bibip-mockup-blue);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(18, 46, 72, 0.08);
    backdrop-filter: blur(14px);
}

.bibip-navbar {
    min-height: 120px;
    padding: 18px 0;
}

.navbar-nav {
    gap: 22px;
}

.nav-link {
    color: var(--bibip-mockup-blue-soft);
    font-size: 1rem;
    font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
    color: var(--bibip-mockup-blue);
}

.language-flags {
    margin-left: 22px;
}

.home-section {
    padding-top: 80px;
}

.home-blog-section,
.home-points-section {
    padding-top: 80px;
}

.home-section-heading {
    margin-bottom: 45px;
    text-align: center;
}

.home-section-kicker,
.home-promo-kicker,
.eyebrow,
.article-kicker-2026,
.blog-pill {
    display: inline-block;
    color: var(--bibip-mockup-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.eyebrow::before {
    background: var(--bibip-mockup-gold);
}

.home-section-title,
.blog-index-categories-2026 h2,
.blog-category-posts-2026 h2,
.article-related-2026 h2,
.results-header h2,
.section-heading h2,
.categories-results-heading h2 {
    margin: 10px 0 12px;
    color: var(--bibip-mockup-blue);
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}

.home-section-accent {
    display: block;
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background: var(--bibip-mockup-gold);
}

.home-points-section .home-section-kicker,
.home-promo-kicker {
    color: var(--bibip-mockup-search);
}

.home-points-section .home-section-accent,
.home-promo-accent {
    background: var(--bibip-mockup-search);
}

.home-carousel-wrap {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 42px;
    overflow-x: hidden;
}

.home-blog-track,
.home-points-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 10px;
    overscroll-behavior-x: contain;
}

.home-blog-track::-webkit-scrollbar,
.home-points-track::-webkit-scrollbar {
    display: none;
}

.home-blog-card,
.home-point-card {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: calc((100% - 66px) / 4);
    scroll-snap-align: start;
    text-align: center;
}

.home-blog-image,
.home-point-card a {
    display: block;
}

.home-blog-image {
    border-radius: var(--bibip-mockup-card-radius);
}

.home-blog-image img,
.home-point-card img {
    width: 100%;
    height: var(--bibip-mockup-image-height);
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: var(--bibip-mockup-card-radius);
    box-shadow: 0 10px 24px rgba(18, 46, 72, 0.16);
}

.home-blog-card h3,
.home-point-card h3,
.blog-index-category-body-2026 h3,
.blog-category-post-body-2026 h3,
.article-related-body-2026 h3,
.categories-client-top h3,
.service-result-card h3,
.blog-card h3 {
    color: var(--bibip-mockup-blue);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
}

.home-blog-card p,
.blog-index-category-body-2026 p,
.blog-category-post-body-2026 p,
.article-related-body-2026 p,
.blog-card p,
.service-result-card p,
.categories-client-categories,
.categories-client-services-inline,
.categories-client-contact-list p,
.categories-client-hours-table td,
.categories-client-hours-row span:last-child,
.article-content-2026,
.article-content-2026 p,
.blog-index-intro-2026 p,
.blog-category-intro-content-2026,
.hero-copy,
.search-hint,
.footer-bottom-copy {
    color: #6f8093;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.home-blog-card p {
    min-height: 88px;
}

.home-small-button,
.blog-index-category-button-2026,
.blog-category-post-button-2026,
.article-related-button-2026,
.categories-client-link,
.categories-finder-form button,
.btn-bibip-primary {
    min-height: 34px;
    border-radius: var(--bibip-mockup-button-radius);
    padding: 0.3rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.home-small-button,
.blog-index-category-button-2026,
.blog-category-post-button-2026,
.article-related-button-2026,
.categories-client-link,
.btn-bibip-primary {
    background: var(--bibip-mockup-blue);
    color: #fff;
}

.home-small-button:hover,
.blog-index-category-button-2026:hover,
.blog-category-post-button-2026:hover,
.article-related-button-2026:hover,
.categories-client-link:hover,
.btn-bibip-primary:hover {
    background: #0d263e;
    color: #fff;
}

.categories-client-call,
.btn-bibip-secondary,
.categories-reset-link {
    border-radius: var(--bibip-mockup-button-radius);
}

.home-slider-arrow {
    top: calc((var(--bibip-mockup-image-height) / 2) - 21px);
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--bibip-mockup-blue);
    box-shadow: 0 12px 26px rgba(18, 46, 72, 0.16);
}

.home-slider-arrow:hover {
    background: #0d263e;
}

.home-slider-arrow-left {
    left: 10px;
}

.home-slider-arrow-right {
    right: 10px;
}

.home-promo {
    padding: 0 0 44px;
}

.home-promo-rule {
    height: 50px;
    margin-bottom: 18px;
}

.home-promo-rule::before {
    top: 24px;
    height: 1px;
    background: rgba(18, 46, 72, 0.18);
    animation: none;
}

.home-promo-rule img {
    width: 50px;
    height: 50px;
}

.home-promo h2 {
    margin: 8px 0 10px;
    color: var(--bibip-mockup-blue);
    font-size: clamp(2rem, 4vw, 2.3rem);
    font-weight: 600;
    line-height: 1.2;
}

.home-promo-accent {
    display: block;
    width: 60px;
    height: 2px;
    margin: 0 auto 14px;
}

.home-promo-copy {
    margin: 0 0 26px;
    color: #6f8093;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

.home-logo-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.home-logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: homeLogoMarquee 32s linear infinite;
}

.home-logo-marquee:hover .home-logo-marquee-track {
    animation-play-state: paused;
}

.home-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-logo-item img {
    width: auto;
    max-width: 150px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.72);
    animation: none;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.home-logo-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px);
}

.site-footer {
    background: #102f4a;
    padding: 34px 0 22px;
}

.footer-grid {
    grid-template-columns: 160px minmax(360px, 1fr) 210px 110px;
    gap: 32px;
}

.footer-title {
    margin-bottom: 10px;
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links {
    gap: 2px;
}

.footer-links a,
.footer-bottom a,
.footer-bottom-copy {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
}

.footer-service-columns {
    gap: 24px;
}

.footer-store-badges {
    gap: 8px;
}

.footer-store-badges img {
    width: 138px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
}

.footer-bottom {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 220px;
    align-items: end;
    gap: 20px;
    margin-top: 22px;
    padding-top: 16px;
    align-items: center;
}

.footer-bottom-brand {
    display: inline-flex;
    align-items: end;
}

.footer-logo {
    max-height: 60px;
}

.footer-bottom-copy {
    text-align: center;
}

.footer-bottom-vp {
    justify-self: end;
}

.footer-vp-logo {
    width: min(100%, 220px);
    height: auto;
    object-fit: contain;
}

.search-hero {
    padding: 48px 0 30px;
}

.search-hero-inner {
    background: #f7f9fb;
    border: 1px solid rgba(18, 46, 72, 0.08);
    border-radius: var(--bibip-mockup-card-radius);
    color: var(--bibip-mockup-blue);
    padding: 36px;
    box-shadow: var(--bibip-mockup-shadow);
}

.search-hero-inner h1,
.article-title-2026,
.blog-index-hero-copy-2026 h1,
.blog-category-hero-copy-2026 h1,
.categories-finder-copy h1 {
    color: var(--bibip-mockup-blue);
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 600;
    line-height: 1.14;
}

.search-hero-inner .hero-copy,
.categories-finder-copy p,
.blog-index-hero-copy-2026 p,
.blog-category-hero-copy-2026 p {
    color: #6f8093;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
}

.hero-search-form {
    gap: 0;
}

.hero-search-form input {
    min-height: 52px;
    border: 1px solid rgba(18, 46, 72, 0.12);
    border-radius: var(--bibip-mockup-card-radius) 0 0 var(--bibip-mockup-card-radius);
}

.hero-search-form .btn {
    min-height: 52px;
    border-radius: 0 var(--bibip-mockup-card-radius) var(--bibip-mockup-card-radius) 0;
    padding-inline: 1.2rem;
}

.empty-state,
.blog-card,
.service-result-card,
.categories-client-card,
.article-content-2026,
.blog-index-category-card-2026,
.blog-category-post-card-2026,
.article-related-card-2026 {
    border-radius: var(--bibip-mockup-card-radius);
    box-shadow: var(--bibip-mockup-shadow);
}

body.bibip-redesign .blog-card,
body.bibip-redesign .article-content-2026,
body.bibip-redesign .blog-index-category-card-2026,
body.bibip-redesign .blog-category-post-card-2026,
body.bibip-redesign .article-related-card-2026,
body.bibip-redesign .blog-index-page-2026 .empty-state,
body.bibip-redesign .blog-category-post-grid-2026 .empty-state {
    box-shadow: none;
}

.blog-card-image img,
.blog-card-placeholder,
.blog-index-category-image-2026,
.blog-index-category-image-2026 img,
.blog-category-post-image-2026,
.blog-category-post-image-2026 img,
.article-related-image-2026,
.article-related-image-2026 img,
.article-media-2026 img,
.categories-client-image,
.categories-client-image img {
    border-radius: var(--bibip-mockup-card-radius);
}

.article-content-2026 h2,
.article-content-2026 h3,
.article-content-2026 h4,
.article-sidebar-2026 h2,
.blog-index-categories-2026 h2,
.blog-category-posts-2026 h2 {
    color: var(--bibip-mockup-blue);
    font-weight: 600;
}

.blog-index-hero-2026,
.blog-category-hero-2026 {
    min-height: 330px;
}

.blog-index-hero-copy-2026,
.blog-category-hero-copy-2026 {
    max-width: 780px;
}

.blog-index-hero-copy-2026 h1,
.blog-category-hero-copy-2026 h1 {
    color: #fff;
    text-shadow: var(--bibip-mockup-text-glow);
}

.blog-index-hero-copy-2026 p,
.blog-category-hero-copy-2026 p {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: var(--bibip-mockup-text-glow);
}

.categories-finder-copy h1,
.categories-results-heading h2,
.categories-client-top h3,
.categories-client-contact h4,
.categories-client-hours h4 {
    font-weight: 600;
}

.categories-finder-copy p {
    font-size: 1rem;
}

.categories-select-wrap select,
.categories-reset-link,
.btn-bibip-secondary {
    font-size: 1rem;
    font-weight: 500;
}

.categories-select-wrap select,
.categories-finder-form button,
.categories-reset-link {
    min-height: 48px;
}

.categories-select-wrap select {
    border-radius: var(--bibip-mockup-card-radius);
    box-shadow: 0 10px 22px rgba(18, 46, 72, 0.12);
}

.categories-client-top span,
.service-badge {
    font-weight: 600;
}

.service-result-actions {
    gap: 10px;
}

.article-share-2026,
.article-share-2026 a,
.article-breadcrumbs-2026,
.blog-index-breadcrumbs-2026,
.categories-breadcrumbs {
    color: var(--bibip-mockup-blue-soft);
}

@keyframes homeLogoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 991.98px) {
    .bibip-navbar {
        min-height: 120px;
        padding: 16px 0;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .home-carousel-wrap {
        padding: 0 28px;
    }

    .home-blog-card,
    .home-point-card {
        flex-basis: calc((100% - 22px) / 2);
        min-width: calc((100% - 22px) / 2);
    }

    .home-find {
        min-height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-bottom-copy,
    .footer-bottom-vp {
        text-align: left;
        justify-self: start;
    }
}

@media (max-width: 767.98px) {

    .home-blog-section,
    .home-points-section {
        padding-top: 28px;
    }

    .home-find {
        padding: 52px 14px 56px;
    }

    .home-find-panel {
        width: min(340px, calc(100vw - 28px));
        max-width: none;
        padding: 22px 18px;
        overflow: hidden;
    }

    .home-find-panel h1 {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.25rem;
    }

    .home-find-panel p {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .home-find-search {
        display: flex;
        grid-template-columns: none;
    }

    .home-find-search input {
        flex: 1 1 auto;
        width: auto;
        min-width: 0 !important;
    }

    .home-find-search button {
        flex: 0 0 52px;
    }

    .home-section-heading {
        margin-bottom: 22px;
    }

    .home-section-kicker,
    .home-promo-kicker {
        font-size: 0.78rem;
        letter-spacing: 0.22em;
    }

    .home-section-title {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .home-carousel-wrap {
        padding: 0 12px;
    }

    .home-blog-track,
    .home-points-track {
        gap: 16px;
    }

    .home-blog-card,
    .home-point-card {
        flex-basis: calc((100% - 16px) / 2);
        min-width: calc((100% - 16px) / 2);
    }

    .home-blog-card p {
        min-height: auto;
        font-size: 0.92rem;
    }

    .home-slider-arrow {
        top: calc((var(--bibip-mockup-image-height) / 2) - 19px);
        width: 38px;
        height: 38px;
    }

    .home-slider-arrow-left {
        left: -6px;
    }

    .home-slider-arrow-right {
        right: -6px;
    }

    .home-logo-marquee-track {
        gap: 24px;
    }

    .home-logo-item img {
        max-width: 110px;
        height: 50px;
    }

    .search-hero-inner {
        padding: 24px 20px;
    }

    .hero-search-form {
        flex-direction: column;
        gap: 10px;
    }

    .hero-search-form input,
    .hero-search-form .btn {
        width: 100%;
        border-radius: var(--bibip-mockup-card-radius);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-service-columns {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

body.bibip-redesign .blog-index-breadcrumbs-2026,
body.bibip-redesign .blog-category-page-2026 .blog-index-breadcrumbs-2026,
body.bibip-redesign .article-breadcrumbs-2026 {
    font-size: 0.875rem;
    font-weight: 400;
}

body.bibip-redesign .blog-index-hero-2026 {
    min-height: 330px;
    background-position: var(--blog-hero-position, center 50%);
}

body.bibip-redesign {
    min-height: 330px;
}

body.bibip-redesign .blog-category-hero-2026 {
    min-height: 330px;
    background-position: var(--blog-category-hero-position, center 50%);
}

body.bibip-redesign .blog-category-hero-overlay-2026 {
    min-height: 330px;
}

body.bibip-redesign .blog-index-hero-copy-2026,
body.bibip-redesign .blog-category-hero-copy-2026 {
    max-width: 900px;
}

body.bibip-redesign .blog-index-hero-copy-2026 h1,
body.bibip-redesign .blog-category-hero-copy-2026 h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(1.75rem, 3.4vw, 2.45rem);
    font-weight: 700;
    line-height: 1.2;
}

body.bibip-redesign .blog-index-hero-copy-2026 p,
body.bibip-redesign .blog-category-hero-copy-2026 p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
}

body.bibip-redesign .blog-index-intro-2026 {
    padding: 4.5rem 0 2.7rem;
}

body.bibip-redesign .blog-index-intro-stack-2026 {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

body.bibip-redesign .blog-index-intro-eyebrow-2026 {
    margin: 0 0 0.85rem;
    color: var(--bibip-mockup-gold);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

body.bibip-redesign .blog-index-intro-title-2026 {
    margin: 0 0 1rem;
    color: var(--bibip-mockup-blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.55rem);
    font-weight: 600;
    line-height: 1.18;
}

body.bibip-redesign .blog-index-intro-copy-2026 {
    max-width: 1140px;
    margin: 0 auto;
    color: #6f8093;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
}

body.bibip-redesign .blog-index-categories-2026,
body.bibip-redesign .blog-category-content-2026,
body.bibip-redesign .article-related-2026 {
    padding-bottom: 5rem;
}

body.bibip-redesign .blog-index-categories-2026 {
    padding-top: 0;
}

body.bibip-redesign .blog-index-categories-2026 h2,
body.bibip-redesign .blog-category-main-2026>h2,
body.bibip-redesign .blog-category-sidebar-2026 h2,
body.bibip-redesign .article-sidebar-2026 h2,
body.bibip-redesign .article-related-2026 h2 {
    margin: 0 0 2rem;
    color: var(--bibip-mockup-blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

body.bibip-redesign .blog-index-category-grid-2026 {
    gap: 2.8rem 1.8rem;
    align-items: stretch;
}

body.bibip-redesign .blog-index-category-card-2026,
body.bibip-redesign .blog-category-post-card-2026,
body.bibip-redesign .article-related-card-2026 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

body.bibip-redesign .blog-index-category-image-2026,
body.bibip-redesign .blog-category-post-image-2026,
body.bibip-redesign .article-related-image-2026 {
    margin-bottom: 1rem;
}

body.bibip-redesign .blog-index-category-body-2026,
body.bibip-redesign .blog-category-post-body-2026,
body.bibip-redesign .article-related-body-2026 {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

body.bibip-redesign .blog-index-category-body-2026 h3,
body.bibip-redesign .blog-category-post-body-2026 h3,
body.bibip-redesign .article-related-body-2026 h3 {
    margin: 0 0 0.7rem;
    color: var(--bibip-mockup-blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.25;
}

body.bibip-redesign .blog-index-category-body-2026 p,
body.bibip-redesign .blog-category-post-body-2026 p,
body.bibip-redesign .article-related-body-2026 p {
    margin: 0 0 1rem;
    max-width: 34ch;
    color: #6f8093;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

body.bibip-redesign .blog-category-content-2026 {
    padding-top: 4.5rem;
}

body.bibip-redesign .blog-category-layout-2026,
body.bibip-redesign .article-layout-2026 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 4rem;
    align-items: start;
}

body.bibip-redesign .blog-category-post-grid-2026,
body.bibip-redesign .article-related-grid-2026 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.8rem 2rem;
}

body.bibip-redesign .blog-category-post-grid-2026 .empty-state,
body.bibip-redesign .article-related-grid-2026 .empty-state {
    grid-column: 1 / -1;
}

body.bibip-redesign .blog-category-sidebar-2026,
body.bibip-redesign .article-sidebar-2026 {
    padding-top: 0.2rem;
}

body.bibip-redesign .blog-category-sidebar-list-2026,
body.bibip-redesign .article-category-list-2026 {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.bibip-redesign .blog-category-sidebar-list-2026 li,
body.bibip-redesign .article-category-list-2026 li {
    border-bottom: 1px solid rgba(18, 46, 72, 0.16);
}

body.bibip-redesign .blog-category-sidebar-list-2026 a,
body.bibip-redesign .article-category-list-2026 a {
    display: block;
    padding: 0.85rem 0;
    color: var(--bibip-mockup-blue-soft);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.35;
}

body.bibip-redesign .blog-category-sidebar-list-2026 a.is-active,
body.bibip-redesign .article-category-list-2026 a.is-active {
    color: var(--bibip-mockup-blue);
    font-weight: 600;
}

body.bibip-redesign .blog-index-category-button-2026,
body.bibip-redesign .blog-category-post-button-2026,
body.bibip-redesign .article-related-button-2026 {
    align-self: center;
    margin-top: auto;
    border: 1px solid rgba(18, 46, 72, 0.45);
    background: #fff;
    color: var(--bibip-mockup-blue);
    box-shadow: none;
}

body.bibip-redesign .blog-index-category-button-2026:hover,
body.bibip-redesign .blog-category-post-button-2026:hover,
body.bibip-redesign .article-related-button-2026:hover {
    background: var(--bibip-mockup-blue);
    color: #fff;
}

body.bibip-redesign .article-shell-2026 {
    padding: 3rem 0 4.5rem;
}

body.bibip-redesign .article-kicker-2026 {
    margin-bottom: 0.55rem;
    color: #6f8093;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
}

body.bibip-redesign .article-title-2026 {
    margin: 0 0 1.4rem;
    color: var(--bibip-mockup-blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(1.95rem, 3vw, 2.55rem);
    font-weight: 600;
    line-height: 1.2;
}

body.bibip-redesign .article-media-2026 {
    margin-bottom: 1.5rem;
}

body.bibip-redesign .article-content-2026 {
    color: #6f8093;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

body.bibip-redesign .article-content-2026 h2,
body.bibip-redesign .article-content-2026 h3,
body.bibip-redesign .article-content-2026 h4 {
    margin: 2rem 0 0.9rem;
    color: var(--bibip-mockup-blue);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: clamp(1.45rem, 2.3vw, 1.85rem);
    font-weight: 600;
    line-height: 1.25;
}

body.bibip-redesign .article-content-2026 h3,
body.bibip-redesign .article-content-2026 h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

body.bibip-redesign .article-content-2026 strong {
    color: #55687e;
    font-weight: 600;
}

body.bibip-redesign .article-share-2026 {
    gap: 0.45rem;
    margin-top: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

body.bibip-redesign .article-share-2026 a {
    font-size: 1rem;
}

body.bibip-redesign .article-share-2026--card {
    margin-top: 0.7rem;
}

body.bibip-redesign .article-related-2026 h2 {
    text-align: center;
}

@media (max-width: 1199.98px) {

    body.bibip-redesign .blog-category-layout-2026,
    body.bibip-redesign .article-layout-2026 {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 2.8rem;
    }
}

@media (max-width: 991.98px) {

    body.bibip-redesign .blog-index-intro-2026 {
        padding-top: 3.5rem;
    }

    body.bibip-redesign .blog-index-category-grid-2026 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.bibip-redesign .blog-category-layout-2026,
    body.bibip-redesign .article-layout-2026 {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    body.bibip-redesign .blog-category-post-grid-2026,
    body.bibip-redesign .article-related-grid-2026 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {

    body.bibip-redesign .blog-index-breadcrumbs-2026,
    body.bibip-redesign .blog-category-page-2026 .blog-index-breadcrumbs-2026,
    body.bibip-redesign .article-breadcrumbs-2026 {
        font-size: 0.82rem;
    }

    body.bibip-redesign .blog-index-hero-copy-2026 h1,
    body.bibip-redesign .blog-category-hero-copy-2026 h1 {
        font-size: 1.55rem;
    }

    body.bibip-redesign .blog-index-intro-2026 {
        padding: 3rem 0 2rem;
    }

    body.bibip-redesign .blog-index-intro-title-2026 {
        font-size: 1.8rem;
    }

    body.bibip-redesign .blog-index-category-grid-2026,
    body.bibip-redesign .blog-category-post-grid-2026,
    body.bibip-redesign .article-related-grid-2026 {
        grid-template-columns: 1fr;
    }

    body.bibip-redesign .blog-index-category-body-2026 p,
    body.bibip-redesign .blog-category-post-body-2026 p,
    body.bibip-redesign .article-related-body-2026 p {
        max-width: 100%;
    }

    body.bibip-redesign .blog-category-content-2026,
    body.bibip-redesign .article-shell-2026,
    body.bibip-redesign .article-related-2026 {
        padding-bottom: 3.5rem;
    }
}

/* =========================================================
   Contact / Partner page 2026
   ========================================================= */

.contact-page-2026 {
    background: #fff;
    padding-bottom: 4rem;
}

.contact-motion-ready .contact-page-2026 [data-contact-reveal] {
    opacity: 0;
    transform: translateY(32px) scale(0.988);
    transition:
        opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--contact-reveal-delay, 0ms),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--contact-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.contact-motion-ready .contact-page-2026 [data-contact-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-hero-2026 {
    position: relative;
    background-position: center 18%;

    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;


}

.contact-hero-2026::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 28, 44, 0.28), rgba(12, 28, 44, 0.52)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.07), transparent 42%);
}

.contact-hero-overlay-2026 {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 360px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1rem;
}

.contact-hero-copy-2026 {
    max-width: 640px;
    margin: 0 auto;
    color: #fff;
}

.contact-hero-copy-2026 h1 {
    margin: 0 0 12px;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.75rem, 3.4vw, 2.45rem);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.18;
    text-shadow: var(--bibip-mockup-text-glow);
}

.contact-hero-copy-2026 p {
    margin: 0 0 1.8rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.18rem;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.contact-hero-actions-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.65rem;
}

.contact-hero-btn-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.72rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: #15324a;
    box-shadow: 0 14px 24px rgba(11, 29, 46, 0.24);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-hero-btn-2026:hover,
.contact-hero-btn-2026:focus-visible {
    color: #fff;
    background: #10283d;
    box-shadow: 0 18px 28px rgba(11, 29, 46, 0.3);
    transform: translateY(-1px);
}

.contact-hero-btn--ghost-2026 {
    background: rgba(21, 50, 74, 0.78);
    backdrop-filter: blur(8px);
}

.contact-intro-2026 {
    padding: 2rem 0 1.8rem;
    border-bottom: 1px solid rgba(16, 47, 74, 0.07);
}

.contact-intro-eyebrow-2026 {
    display: block;
    margin-bottom: 0.55rem;
    color: #e6332a;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-intro-title-2026 {
    margin: 0 0 0.85rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

.contact-intro-copy-2026 {
    margin: 0;
    color: #7b899d;
    font-size: 1.02rem;
    line-height: 1.58;
    max-width: 720px;
}

.contact-bullets-2026 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 0;
    padding: 0;
    list-style: none;
}

.contact-bullet-2026 {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contact-bullet-2026 strong {
    display: block;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-bullet-2026 span {
    color: #7b899d;
    font-size: 0.95rem;
    line-height: 1.52;
}

.contact-icon-2026 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: rgba(16, 47, 74, 0.07);
    color: #1d3958;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-grid-2026 {
    padding: 2.6rem 0 0;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.8rem;
    align-items: start;
    overflow: visible;
}

.contact-stack-2026 {
    display: grid;
    gap: 1.5rem;
    align-content: start;
}

.contact-card-2026 {
    background: #fff;
    border: 1px solid rgba(16, 47, 74, 0.08);
    border-radius: 7px;
    box-shadow: 0 14px 40px rgba(14, 34, 52, 0.07);
    padding: 1.9rem;
}

.contact-card--sticky-2026 {
    align-self: start;
    height: fit-content;
}

.contact-card-2026 h2 {
    margin: 0.55rem 0 0.75rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.15;
}

.contact-card-2026 h3 {
    margin: 0 0 0.4rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.contact-card-2026 p,
.contact-card-2026 li {
    color: #7b899d;
    line-height: 1.58;
    margin-bottom: 0;
}

.contact-benefits-list-2026 {
    display: grid;
    gap: 1.25rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-benefits-list-2026 li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.contact-detail-list-2026 {
    display: grid;
    gap: 0.8rem;
    margin: 1.25rem 0 0;
}

.contact-detail-list-2026 p {
    margin: 0;
    color: #7b899d;
}

.contact-detail-list-2026 a {
    color: #284f76;
    font-weight: 600;
}

.contact-form-2026 {
    display: grid;
    gap: 1.15rem;
    margin-top: 1.4rem;
}

.contact-form-grid-2026 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.contact-field-2026 {
    display: grid;
    gap: 0.45rem;
}

.contact-field--full-2026 {
    grid-column: 1 / -1;
}

.contact-field-2026 label {
    color: #1d3958;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-field-2026 input,
.contact-field-2026 textarea {
    width: 100%;
    border: 1px solid rgba(16, 47, 74, 0.14);
    border-radius: 7px;
    background: #fff;
    color: #1d3958;
    padding: 0.78rem 0.92rem;
    font-size: 0.98rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field-2026 input {
    min-height: 48px;
}

.contact-field-2026 textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-field-2026 input:focus,
.contact-field-2026 textarea:focus {
    outline: 0;
    border-color: rgba(40, 79, 118, 0.44);
    box-shadow: 0 0 0 3px rgba(40, 79, 118, 0.09);
}

.contact-field-2026 input.is-invalid,
.contact-field-2026 textarea.is-invalid {
    border-color: rgba(230, 51, 42, 0.48);
    box-shadow: 0 0 0 3px rgba(230, 51, 42, 0.07);
}

.contact-feedback-2026 {
    padding: 12px 16px;
    border-radius: 7px;
    font-weight: 500;
    font-size: 0.94rem;
}

.contact-feedback--success-2026 {
    background: rgba(33, 126, 79, 0.09);
    color: #1f6b48;
}

.contact-feedback--error-2026 {
    background: rgba(230, 51, 42, 0.07);
    color: #8f241e;
}

.contact-feedback-2026 ul {
    margin: 8px 0 0 1rem;
}

.contact-feedback-2026 li+li {
    margin-top: 4px;
}

.contact-form-actions-2026 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-form-note-2026 {
    margin: 0;
    max-width: 440px;
    color: #7b899d;
    font-size: 0.88rem;
    line-height: 1.5;
}

.contact-channels-section-2026 {
    padding: 2.4rem 0 0;
}

.contact-section-head-2026 {
    margin-bottom: 1.8rem;
}

.contact-section-head-2026 .contact-intro-eyebrow-2026 {
    margin-bottom: 0.45rem;
}

.contact-section-head-2026 h2 {
    margin: 0;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.1;
}

.contact-channels-grid-2026 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.contact-channel-card-2026 {
    background: #fff;
    border: 1px solid rgba(16, 47, 74, 0.08);
    border-radius: 7px;
    box-shadow: 0 10px 32px rgba(14, 34, 52, 0.06);
    padding: 1.7rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-channel-card-2026:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(14, 34, 52, 0.1);
}

.contact-channel-card-2026 h3 {
    margin: 0.85rem 0 0.5rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0;
}

.contact-channel-card-2026 p {
    margin: 0 0 0.75rem;
    color: #7b899d;
    font-size: 0.96rem;
    line-height: 1.52;
}

.contact-channel-card-2026 a {
    color: #284f76;
    font-weight: 600;
    font-size: 0.96rem;
}

.contact-vp-section-2026 {
    padding: 2.4rem 0 0;
}

.contact-vp-strip-2026 {
    background: linear-gradient(135deg, #ffffff, #eef3f7);
    border: 1px solid rgba(16, 47, 74, 0.07);
    border-radius: 7px;
    padding: 2rem 2.2rem;
    box-shadow: 0 10px 32px rgba(14, 34, 52, 0.06);
    align-items: center;
}

.contact-vp-strip-2026 img {
    max-width: 200px;
    border-radius: 7px;
}

.contact-vp-strip-2026 h2 {
    margin: 0.5rem 0 0.6rem;
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: 0;
}

.contact-vp-strip-2026 p {
    margin: 0;
    color: #7b899d;
    line-height: 1.55;
}

.contact-vp-strip-2026 a {
    color: #284f76;
    font-weight: 600;
}

.contact-faq-2026 {
    padding: 2.4rem 0 0;
}

.contact-faq-2026 .accordion-item {
    overflow: hidden;
    border: 1px solid rgba(16, 47, 74, 0.08) !important;
    border-radius: 7px !important;
    box-shadow: 0 6px 18px rgba(14, 34, 52, 0.05);
}

.contact-faq-2026 .accordion-item+.accordion-item {
    margin-top: 12px;
}

.contact-faq-2026 .accordion-button {
    color: #1d3958;
    font-family: 'Outfit', Arial, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: none !important;
}

.contact-faq-2026 .accordion-button:not(.collapsed) {
    background: #f5f8fb;
    color: #1d3958;
}

.contact-faq-2026 .accordion-body {
    color: #7b899d;
    line-height: 1.62;
    font-size: 0.97rem;
}

@media (min-width: 992px) {
    body.bibip-redesign .contact-card--sticky-2026 {
        position: sticky;
        top: 144px;
        transform: none;
    }
}

@media (max-width: 991.98px) {

    body.bibip-redesign .contact-grid-2026,
    body.bibip-redesign .contact-channels-grid-2026 {
        grid-template-columns: 1fr;
    }

    body.bibip-redesign .contact-bullets-2026 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {

    body.bibip-redesign .contact-card-2026,
    body.bibip-redesign .contact-channel-card-2026 {
        padding: 1.4rem;
    }

    body.bibip-redesign .contact-form-grid-2026 {
        grid-template-columns: 1fr;
    }

    body.bibip-redesign .contact-hero-copy-2026 h1 {
        font-size: 1.25rem;
    }

    body.bibip-redesign .contact-hero-actions-2026 {
        flex-direction: column;
    }

    body.bibip-redesign .contact-form-actions-2026 .btn,
    body.bibip-redesign .contact-hero-btn-2026 {
        width: 100%;
    }
}

.editorial-hero,
.search-hero,
.category-hero,
.article-hero,
.search-hero-inner,
.article-hero-inner,
body.bibip-redesign .blog-index-hero-2026,
body.bibip-redesign .blog-index-hero-overlay-2026,
body.bibip-redesign .blog-category-hero-2026,
body.bibip-redesign .blog-category-hero-overlay-2026,
body.bibip-redesign .contact-hero-2026,
body.bibip-redesign .contact-hero-overlay-2026 {
    min-height: 500px;
}