/* ── BRIDGE PUBLIC DESIGN SYSTEM ─────────────────────── */

#blazor-error-ui {
    display: none;
}

:root {
    --blue:      #1a4fd8;
    --blue-d:    #0f2f8a;
    --blue-l:    #4b78f5;
    --blue-pale: #eef2ff;
    --red:       #d42b2b;
    --red-l:     #e84545;
    --navy:      #0b1c4a;
    --white:     #ffffff;
    --off:       #f5f7fc;
    --muted:     #7a849e;
    --border:    #dde2ef;
    --text:      #1a2340;
}

html { scroll-behavior: smooth; }

body.public-body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
}

/* ── PUBLIC NAV ──────────────────────────────────────── */
.pub-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 66px;
    box-shadow: 0 1px 8px rgba(26,79,216,0.06);
}

.pub-nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 1px;
    text-decoration: none;
}

.pub-nav-logo .wordmark {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.16em;
    color: var(--blue);
    text-transform: uppercase;
    white-space: nowrap;
}

.pub-nav-logo .sub {
    font-size: 7.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}

.pub-nav-logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.pub-footer-logo-img {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 12px;
    filter: brightness(0) invert(1); /* makes a dark logo white on the dark footer */
}

.pub-nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pub-nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.18s, border-color 0.18s;
}

.pub-nav-links a:hover { color: var(--blue); border-color: var(--blue); }
.pub-nav-links a.nav-active { color: var(--blue); border-color: var(--blue); }

.pub-nav-cta {
    background: var(--blue) !important;
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 4px !important;
    border-bottom: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    line-height: 1 !important;
    transition: background 0.18s !important;
    display: inline-flex !important;
    align-items: center !important;
}

.pub-nav-cta:hover { background: var(--blue-d) !important; }

/* ── NAV DROPDOWN ────────────────────────────────────── */
.pub-nav-dropdown {
    position: relative;
    list-style: none;
}

/* Partnerships label — styled identically to regular nav <a> links */
.pub-nav-dropdown-anchor {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text);
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.18s, border-color 0.18s;
    white-space: nowrap;
    user-select: none;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    padding-left: 0;
    padding-right: 0;
    font-family: inherit;
}

.pub-nav-dropdown:hover .pub-nav-dropdown-anchor,
.pub-nav-dropdown-anchor.nav-active {
    color: var(--blue);
    border-color: var(--blue);
}

.pub-nav-chevron {
    font-size: 10px;
    opacity: 0.6;
    transition: transform 0.18s;
    display: inline-block;
}

.pub-nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(26,79,216,0.10);
    min-width: 160px;
    padding: 6px 0;
    list-style: none;
    z-index: 300;
}

/* Small triangle pointer */
.pub-nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--border);
}

.pub-nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--white);
}

.pub-nav-dropdown-menu li { list-style: none; }

.pub-nav-dropdown-menu a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: none;
    transition: background 0.15s, color 0.15s;
}

.pub-nav-dropdown-menu a:hover {
    background: var(--blue-pale);
    color: var(--blue);
    border-bottom: none;
}

/* Show on click */
.pub-nav-dropdown.dropdown-open .pub-nav-dropdown-menu { display: block; }
.pub-nav-dropdown.dropdown-open .pub-nav-chevron { transform: rotate(180deg); }

/* ── BUTTONS ─────────────────────────────────────────── */
.pub-btn {
    display: inline-block;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 4px;
    transition: all 0.18s;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.pub-btn-blue { background: var(--blue); color: var(--white); }
.pub-btn-blue:hover { background: var(--blue-l); color: var(--white); }
.pub-btn-red { background: var(--red); color: var(--white); }
.pub-btn-red:hover { background: var(--red-l); color: var(--white); }
.pub-btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.pub-btn-outline:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.pub-btn-outline-navy { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.pub-btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ── SECTION SHELL ───────────────────────────────────── */
.pub-section { padding: 88px 56px; max-width: 1200px; margin: 0 auto; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--blue);
}

.section-label.no-bar::before { display: none; }

.section-title {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--navy);
    letter-spacing: -0.01em;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=85') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11,28,74,0.92) 38%, rgba(11,28,74,0.45) 100%);
}

.hero-redbar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--red);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 72px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--blue-l);
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--blue-l);
}

.hero-title {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    line-height: 1.0;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 22px;
}

.hero-title em { color: var(--blue-l); font-style: normal; }

.hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    max-width: 420px;
    line-height: 1.65;
    margin-bottom: 42px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BRANDS ──────────────────────────────────────────── */
.brands-bg {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-inner {
    padding: 80px 56px;
    max-width: 1200px;
    margin: 0 auto;
}

.brands-header {
    text-align: center;
    margin-bottom: 52px;
}

.brands-header .section-label { justify-content: center; }

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    min-height: 110px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    position: relative;
    overflow: hidden;
    color: var(--text);
}

.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.brand-card:hover {
    border-color: var(--blue-l);
    box-shadow: 0 6px 24px rgba(26,79,216,0.12);
    transform: translateY(-2px);
    color: var(--navy);
}

.brand-card:hover::after { transform: scaleX(1); }

.brand-card img {
    max-width: 130px;
    max-height: 52px;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter 0.2s, opacity 0.2s;
}

.brand-card:hover img { filter: grayscale(0%); opacity: 1; }

.brand-card-name {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--navy);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 72px;
    align-items: start;
}

.contact-form-sub {
    color: var(--muted);
    font-size: 15.5px;
    margin-bottom: 36px;
    margin-top: 10px;
}

.pub-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.pub-form-group { margin-bottom: 16px; }

.pub-form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}

.pub-form-group input,
.pub-form-group textarea,
.pub-form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14.5px;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
}

.pub-form-group input:focus,
.pub-form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,79,216,0.1);
}

.pub-form-group input.input-error,
.pub-form-group textarea.input-error {
    border-color: var(--red);
}

.pub-form-group textarea { resize: vertical; min-height: 110px; }

.pub-field-error {
    font-size: 11.5px;
    color: var(--red);
    margin-top: 4px;
}

.btn-submit {
    background: var(--navy);
    color: white;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 34px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-submit:hover:not(:disabled) { background: var(--blue); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Contact info card */
.contact-info-card {
    background: var(--navy);
    border-radius: 8px;
    padding: 40px 36px;
    color: rgba(255,255,255,0.75);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 60%, var(--red) 100%);
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }

.info-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.info-lbl {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-l);
    font-weight: 700;
    margin-bottom: 3px;
}

.info-val { font-size: 13.5px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.info-val a { color: rgba(255,255,255,0.72); text-decoration: none; }
.info-val a:hover { color: #fff; }

.contact-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 26px 0; }

.social-row { display: flex; gap: 10px; margin-top: 8px; }

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.18s, color 0.18s;
}

.social-btn:hover { background: var(--blue); color: white; }

/* Success state */
.contact-success {
    text-align: center;
    padding: 48px 24px;
}

.contact-success-icon { font-size: 3rem; color: #22c55e; }

/* ── CONTACT PAGE — info list + form grid ──────────── */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    margin-top: 2px;
}

.contact-info-text {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.15s;
}

a.contact-info-text:hover { color: var(--blue); }

.contact-social-row {
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
}

.contact-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--off);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.contact-social-link:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.contact-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 260px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-field { display: flex; flex-direction: column; }
.contact-field-full { grid-column: 1 / -1; }

.contact-success {
    text-align: center;
    padding: 48px 24px;
}

.contact-success i {
    font-size: 3rem;
    color: #22c55e;
    display: block;
    margin-bottom: 16px;
}

.contact-success h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.contact-success p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 0;
}

/* ── BRAND DETAIL PAGE ───────────────────────────────── */
.brand-detail-hero {
    background: var(--off);
    border-bottom: 1px solid var(--border);
    padding: 64px 56px;
}

.brand-detail-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.brand-detail-logo {
    width: 180px;
    height: 100px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 16px;
}

.brand-detail-logo img {
    max-width: 140px;
    max-height: 68px;
    object-fit: contain;
}

.brand-detail-logo-text {
    font-weight: 900;
    font-size: 28px;
    letter-spacing: 0.06em;
    color: var(--navy);
}

.brand-detail-meta h1 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.brand-detail-meta p {
    font-size: 16px;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

.brand-items-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.brand-item-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.brand-item-text {
    border-left: 3px solid var(--blue);
    padding-left: 24px;
}

.brand-item-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.brand-item-img-placeholder {
    width: 100%;
    height: 360px;
    background: var(--off);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 56px;
}

.brand-item-category {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-item-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.brand-item-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.brand-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-bottom: 32px;
}

.brand-back-link:hover { color: var(--blue-d); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer-redline {
    height: 3px;
    background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}

.pub-footer {
    background: var(--navy);
    color: var(--white);
    padding: 64px 56px 0;
}

.pub-footer-inner { max-width: 1200px; margin: 0 auto; }

.pub-footer-top {
    display: grid;
    grid-template-columns: 200px 1fr 280px;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.pub-footer-logo .wordmark {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--white);
    text-transform: uppercase;
}

.pub-footer-logo .sub {
    font-size: 7.5px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    font-weight: 500;
}

.pub-footer-logo p {
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.75);
}

.pub-footer-nav-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.pub-footer-nav-col h4 {
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

.pub-footer-nav-col a {
    display: block;
    font-size: 13.5px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.18s;
}

.pub-footer-nav-col a:hover { color: rgba(255,255,255,0.65); }

.pub-footer-contact-col h4 {
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

.pub-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.55;
}

.pub-footer-contact-icon {
    font-size: 12px;
    color: var(--blue-l);
    margin-top: 2px;
    flex-shrink: 0;
}

.pub-footer-map {
    width: 100%;
    height: 160px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.pub-footer-bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
}

/* ── KEY PRODUCTS GRID ───────────────────────────────── */

.key-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
}

.key-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.key-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.key-product-img img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    display: block;
}

.key-product-img-placeholder {
    width: 100%;
    height: 160px;
    background: var(--off);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 40px;
}

.key-product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

/* ── ABOUT PAGE ──────────────────────────────────────── */

/* Hero */
.about-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding: 88px 56px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.01em;
    margin: 16px 0 20px;
}

.about-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.68);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.about-stat-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-stat-num {
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stat-label {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-l);
    font-weight: 700;
}

.about-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
}

/* Mission / Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    gap: 24px 48px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.mv-label-col {
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.mv-pill {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 4px;
    white-space: nowrap;
}

.mv-pill-blue { background: var(--blue-pale); color: var(--blue); }
.mv-pill-red  { background: #fff0f0; color: var(--red); }

.mv-text-col p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
    padding: 16px 24px;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 6px;
}

/* Corporate Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.15s;
}

.value-card:hover {
    box-shadow: 0 6px 24px rgba(26,79,216,0.1);
    transform: translateY(-2px);
}

.value-icon { font-size: 32px; margin-bottom: 14px; }

.value-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.value-desc {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* Recognitions */
.recog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recog-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 28px 24px;
}

.recog-brand {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.recog-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    margin: 0;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.service-item {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 20px;
    border-left: 4px solid var(--blue);
    transition: box-shadow 0.2s;
}

.service-item:hover { box-shadow: 0 4px 16px rgba(26,79,216,0.09); }

.service-brand-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.service-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ── Timeline ──────────────────────────────────────────────────────────────
   Wide (>900px): horizontal rail — dots pinned on the centre line,
                  even entries card ABOVE the line, odd entries card BELOW.
   Narrow (≤900px): vertical left-side line, dot + card per row.
   ───────────────────────────────────────────────────────────────────────── */

/* scroll container — does NOT establish the positioning context */
.timeline-wrap {
    overflow-x: auto;
    overflow-y: visible;
}

/* content container — stretches to fit all items, line spans full width */
.timeline {
    position: relative;          /* positioning context for line + dots */
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 340px;
    min-width: max-content;      /* never shrinks below its content */
    padding: 0 8px;
}

/* single horizontal rail — spans the full content width, always */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 0;
}

/* each entry occupies an equal column */
.timeline-row {
    flex: 0 0 180px;
    position: relative;
    z-index: 1;
}

/* dot pinned dead-centre on the line */
.tl-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue);
    box-shadow: 0 0 0 4px var(--blue-pale);
    z-index: 2;
}

.tl-spacer { display: none; }

/* cards anchored relative to the line */
.tl-content {
    position: absolute;
    left: 8px; right: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    transition: box-shadow 0.2s;
}
.tl-content:hover { box-shadow: 0 4px 16px rgba(26,79,216,0.1); }

/* even entries: card ABOVE the line */
.tl-left .tl-content  { bottom: calc(50% + 20px); text-align: right; }

/* odd entries: card BELOW the line */
.tl-right .tl-content { top: calc(50% + 20px); text-align: left; }

.tl-content-left  { text-align: right; }
.tl-content-right { text-align: left; }

.tl-year {
    font-size: 22px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.tl-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

/* ── RESPONSIVE: ABOUT ───────────────────────────────── */
@media (max-width: 900px) {
    .about-hero { padding: 56px 24px; }
    .mv-grid { grid-template-columns: 1fr; gap: 16px; }
    .mv-label-col { padding-top: 0; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .recog-grid { grid-template-columns: 1fr; }

    /* revert to vertical left-side line */
    .timeline-wrap { overflow-x: visible; }
    .timeline { flex-direction: column; min-height: 0; min-width: 0; max-width: 800px; margin: 0 auto; padding: 0; }
    .timeline-line { top: 0; bottom: 0; left: 12px; right: auto; width: 2px; height: auto; transform: none; }
    .timeline-row { display: grid; grid-template-columns: 24px 1fr; gap: 16px; flex: none; width: 100%; padding: 16px 0; min-width: 0; min-height: 0; position: relative; }
    .tl-dot { position: relative; top: auto; left: auto; transform: none; grid-column: 1; grid-row: 1; justify-self: center; }
    .tl-left  .tl-content,
    .tl-right .tl-content { position: relative; top: auto; bottom: auto; left: auto; right: auto; text-align: left; grid-column: 2; grid-row: 1; }
    .tl-content-left, .tl-content-right { text-align: left; }
    .tl-spacer { display: none; }
}

@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .about-stat-row { gap: 24px; }
    .about-stat-divider { display: none; }
}

/* ── BURGER BUTTON (hidden on desktop) ─────────────── */
.pub-nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    flex-shrink: 0;
}

.pub-nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: background 0.18s;
}

.pub-nav-burger:hover span { background: var(--blue); }

/* ── MOBILE DRAWER OVERLAY ──────────────────────────── */
.pub-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 299;
}

/* ── MOBILE DRAWER ──────────────────────────────────── */
.pub-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(320px, 88vw);
    background: var(--white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.pub-nav-drawer.drawer-open { transform: translateX(0); }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
    transition: color 0.15s;
}

.drawer-close:hover { color: var(--text); }

.drawer-links {
    list-style: none;
    margin: 0;
    padding: 12px 0 32px;
}

.drawer-links li a {
    display: block;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.15s, background 0.15s;
}

.drawer-links li a:hover { color: var(--blue); background: var(--blue-pale); }
.drawer-links li a.nav-active { color: var(--blue); }

.drawer-section-label {
    padding: 14px 24px 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.drawer-cta-row {
    padding: 16px 24px 0;
}

.drawer-cta-row .pub-nav-cta {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    border-radius: 4px !important;
    padding: 12px 20px !important;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .pub-nav { padding: 0 20px; }
    .hero-content { padding: 0 32px; }
    .brands-inner, .pub-section { padding: 56px 24px; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
    .pub-footer-top { grid-template-columns: 1fr; gap: 40px; }
    .pub-footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
    .brand-detail-hero { padding: 40px 24px; }
    .brand-detail-hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .brand-item-row { grid-template-columns: 1fr; gap: 32px; }
    .brand-item-image img,
    .brand-item-img-placeholder { height: 260px; }
    /* Always show text above image on mobile regardless of odd/even */
    .brand-item-row > .brand-item-image:first-child { order: 2; }
    .brand-item-row > .brand-item-text:last-child    { order: 1; }
    .key-products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .pub-nav-links  { display: none; }
    .pub-nav-burger { display: flex; }
    .brands-grid    { grid-template-columns: repeat(2, 1fr); }
    .pub-form-row   { grid-template-columns: 1fr; }
    .hero           { height: 480px; }
}

@media (max-width: 480px) {
    .brands-grid        { grid-template-columns: 1fr; }
    .key-products-grid  { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   OUR BRANDS PAGE
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero banner ─────────────────────────────────────────────── */
.brands-hero {
    background: #ffffff;
    padding: 64px 40px 48px;
    border-bottom: 1px solid #e5e8ed;
}

.brands-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.brands-hero h1 {
    font-size: clamp(16px, 2.2vw, 26px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.brands-hero p {
    font-size: 15px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 6px;
}

/* ── Grid section ────────────────────────────────────────────── */
.ob-section {
    background: #ffffff;
    padding: 48px 40px 80px;
}

.ob-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.ob-empty {
    padding: 48px 0;
    color: var(--muted);
    text-align: center;
    font-size: 15px;
}

/* ── Brand card grid ─────────────────────────────────────────── */
.ob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Single unified card — logo + description */
.ob-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 8px;
    padding: 28px 20px 20px;
    cursor: pointer;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
    gap: 16px;
    outline: none;
}

.ob-card:hover {
    box-shadow: 0 6px 24px rgba(26, 79, 216, 0.12);
    border-color: #b3c9f0;
    transform: translateY(-2px);
}

/* Logo area */
.ob-card-logo {
    width: 100%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ob-card-logo img {
    max-height: 64px;
    max-width: 100%;
    object-fit: contain;
}

.ob-card-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
}

/* Description */
.ob-card-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

/* ── Modal backdrop ──────────────────────────────────────────── */
.ob-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 400;
}

/* ── Modal panel ─────────────────────────────────────────────── */
.ob-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 94vw);
    max-height: 92vh;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    z-index: 401;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ob-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e8ed;
    flex-shrink: 0;
}

.ob-modal-logo {
    max-height: 52px;
    max-width: 220px;
    object-fit: contain;
}

.ob-modal-title-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
}

.ob-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
    transition: color 0.15s;
}

.ob-modal-close:hover { color: var(--text); }

.ob-modal-body {
    overflow-y: auto;
    padding: 24px;
    flex: 1;
}

.ob-modal-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ob-modal-empty {
    color: var(--muted);
    font-size: 14px;
    text-align: center;
    padding: 32px 0;
}

.ob-modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ob-modal-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    border: 1px solid #e5e8ed;
}

/* ── Our Brands responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .ob-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .brands-hero { padding: 40px 20px 28px; }
    .ob-section  { padding: 32px 20px 56px; }
    .ob-grid     { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .ob-modal    { width: 96vw; max-height: 94vh; }
}

@media (max-width: 480px) {
    .ob-grid  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .ob-card  { padding: 20px 12px 16px; }
    .ob-modal { width: 98vw; max-height: 96vh; border-radius: 6px; }
}

/* ── INNER PAGE HEADER ───────────────────────────────── */
.pub-page-header {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.pub-page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--blue) 100%);
}

.pub-page-header .section-label { color: var(--blue-l); }

.pub-page-header .section-title {
    color: var(--white);
}

.pub-page-header .hero-sub {
    color: rgba(255,255,255,0.68);
}

/* ── NEWS PAGE ───────────────────────────────────── */

/* Empty state */
.news-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 88px 0;
    color: var(--muted);
    font-size: 15px;
}

.news-empty i { font-size: 48px; opacity: 0.35; }

/* Featured post */
.news-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.news-featured-img {
    height: 360px;
    overflow: hidden;
}

.news-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.news-featured:hover .news-featured-img img { transform: scale(1.03); }

.news-featured-body {
    padding: 40px 40px 40px 0;
}

.news-featured-title {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}

.news-featured-date {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
}

.news-featured-excerpt {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Posts grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Post card */
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.15s;
}

.news-card:hover {
    box-shadow: 0 6px 24px rgba(26,79,216,0.1);
    transform: translateY(-2px);
}

.news-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--off);
    flex-shrink: 0;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 32px;
}

.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 22px 24px;
}

.news-card-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 8px;
}

.news-card-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.news-card-excerpt {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-readmore {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.02em;
}

.news-card:hover .news-card-readmore { text-decoration: underline; }

/* ── NEWS POST DETAIL ────────────────────────────── */

.news-back-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-l);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.15s;
}

.news-back-link:hover { opacity: 0.75; }

.news-post-date {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin: 0;
}

.news-post-thumb-wrap {
    background: var(--off);
    border-bottom: 1px solid var(--border);
}

.news-post-thumb {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 0 0 6px 6px;
}

.news-post-body {
    max-width: 740px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.news-post-body h2,
.news-post-body h3 {
    font-weight: 800;
    color: var(--navy);
    margin-top: 2em;
    margin-bottom: 0.5em;
    letter-spacing: -0.01em;
}

.news-post-body p  { margin: 0 0 1.25em; }
.news-post-body ul,
.news-post-body ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.news-post-body li { margin-bottom: 0.4em; }

.news-post-body a {
    color: var(--blue);
    text-decoration: underline;
}

.news-post-body img {
    max-width: 100%;
    border-radius: 6px;
    margin: 1.5em 0;
    display: block;
}

/* ── RESPONSIVE: NEWS ────────────────────────────── */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .news-featured {
        grid-template-columns: 1fr;
    }
    .news-featured-img  { height: 240px; }
    .news-featured-body { padding: 24px; }
    .news-grid          { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CAREERS PAGE
   ═══════════════════════════════════════════════════ */

/* ── Job cards list ──────────────────────────────── */
.careers-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.careers-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 36px;
    transition: box-shadow 0.2s;
}

.careers-card:hover {
    box-shadow: 0 6px 24px rgba(26, 79, 216, 0.09);
}

.careers-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.careers-card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.01em;
    margin: 0 0 10px;
}

.careers-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.careers-location-badge {
    display: inline-flex;
    align-items: center;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: 12.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.careers-posted {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.01em;
}

.careers-apply-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Description / Qualifications blocks ────────── */
.careers-section-block {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    margin-top: 4px;
}

.careers-section-block + .careers-section-block {
    margin-top: 20px;
}

.careers-section-heading {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 14px;
}

.careers-rich-content {
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
}

.careers-rich-content h2,
.careers-rich-content h3 {
    font-weight: 800;
    color: var(--navy);
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.careers-rich-content p  { margin: 0 0 1em; }
.careers-rich-content ul,
.careers-rich-content ol { padding-left: 1.5em; margin-bottom: 1em; }
.careers-rich-content li { margin-bottom: 0.35em; }

/* ── Empty state ─────────────────────────────────── */
.careers-empty {
    text-align: center;
    padding: 80px 24px;
    color: var(--muted);
}

.careers-empty i {
    font-size: 48px;
    opacity: 0.2;
    display: block;
    margin-bottom: 16px;
}

.careers-empty p {
    font-size: 16px;
    margin: 0;
}

/* ── How to Apply banner ─────────────────────────── */
.careers-apply-banner {
    background: var(--navy);
    padding: 64px 0;
}

.careers-apply-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.careers-apply-banner-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.careers-apply-banner-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.careers-apply-email {
    color: var(--white);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.15s;
}

.careers-apply-email:hover { opacity: 0.8; }

/* ── Responsive: Careers ─────────────────────────── */
@media (max-width: 768px) {
    .careers-card { padding: 24px 20px; }

    .careers-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .careers-apply-btn { width: 100%; text-align: center; }

    .careers-apply-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .careers-apply-banner-inner .pub-btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════
   UNDER CONSTRUCTION
   ═══════════════════════════════════════════════════ */
.under-construction-wrap {
    text-align: center;
    padding: 80px 24px;
    max-width: 560px;
    margin: 0 auto;
}

.under-construction-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 28px;
}


