:root {
    --font-lora: "SUSE", sans-serif;
    --font-dmsans: "DM Sans", sans-serif;
    --font-suse: "SUSE", sans-serif;
    --white-color: #FFFFFF;
    --dark-white-color: #fff;
    --dark-black-color: #1C1A1E;
    --black-color: #1C1A1E;
    --black-color-opc: 28, 26, 30;
    --title-color: #092041;
    --dark-title-color: #1C1A1E;
    --title-color-opc: 28, 26, 30;
    --title-color2: #003C30;
    --dark-title-color2: #003C30;
    --dark-text-color: #FFFFFF;
    --text-color: #092041;
    --global-text-color: #545454;
    --text-color-opc: 84, 84, 84;
    --primary-color1: #17468A;
    --primary-color1-opc: 0, 122, 94;
    --primary-color2: #17468A;
    --primary-color2-opc: 120, 235, 84;
    --secondary-color: #17468A;
    --primary-color3: #17468A;
    --primary-color3-opc: 89, 86, 233;
    --primary-color4: #17468A;
    --primary-color4-opc: 96, 229, 157;
    --borders-color: #eee
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth
}

html {
    font-size: 100%;
    scroll-behavior: smooth
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-lora);
    color: var(--title-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-lora);
    font-weight: 600;
    line-height: 1.2;
    color: var(--title-color)
}

input {
    border: none;
    outline: none
}

button {
    outline: none;
    border: none;
    line-height: 1
}

i.bx {
    vertical-align: middle
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
    color: var(--primary-color1)
}

input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    position: relative;
    vertical-align: middle
}

input[type="checkbox"]:checked {
    background-color: var(--primary-color1);
    border-color: var(--primary-color1)
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #FFF;
    border-radius: 50%
}

input[type="checkbox"]:hover {
    border-color: var(--primary-color1)
}

input[type="checkbox"]+label,
label {
    cursor: pointer;
    vertical-align: middle
}

p {
    font-family: var(--font-dmsans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6
}

/* ==========================================
   Spacing Utilities
   ========================================== */

.pt-120 {
    padding-top: 120px
}

.pb-120 {
    padding-bottom: 120px
}

.pt-90 {
    padding-top: 90px
}

.mb-110 {
    margin-bottom: 110px
}

.mt-130 {
    margin-top: 130px
}

.mb-130 {
    margin-bottom: 130px
}

.sec-mar {
    margin: 130px 0
}

.mb-15 {
    margin-bottom: 15px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-30 {
    margin-bottom: 30px
}

.mt-70 {
    margin-top: 70px
}
/* ==========================================================================
   SHARED VARIABLES
   ========================================================================== */

:root {
    /* Header / shared brand tokens */
    --header-primary: #ef7a17;
    --header-primary-light: #ff9a44;
    --header-primary-dark: #d46a0c;
    --header-secondary: #032038;
    --header-dark: #0a1525;
    --header-dark-alt: #0f1d30;
    --header-surface: #141e2e;
    --header-white: #ffffff;
    --header-gray: #94a3b8;
    --header-gray-light: #cbd5e1;
    --header-border: rgba(148, 163, 184, 0.1);

    /* Footer tokens */
    --ft-primary: #ef7a17;
    --ft-primary-rgb: 239, 122, 23;
    --ft-bg: #ffffff;
    --ft-text: #475569;
    --ft-text-muted: #94a3b8;
    --ft-heading: #1e293b;
    --ft-border: rgba(10, 22, 40, 0.08);
    --ft-white: #ffffff;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.lc-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: transparent;
}

/* ---------- Top bar ---------------------------------------------------- */

.lc-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 50px;
    opacity: 1;
    overflow: hidden;
}

.lc-topbar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.lc-topbar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--header-gray);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.lc-topbar__item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7; }
.lc-topbar__item--highlight { color: var(--header-primary); font-weight: 600; }

.lc-topbar__link {
    color: var(--header-gray-light);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lc-topbar__link:hover { color: var(--header-primary); }

.lc-topbar__divider { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.1); }

/* ---------- Main header ------------------------------------------------ */

.lc-header__main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lc-header__logo { flex-shrink: 0; align-self: center; }
.lc-header__logo-link { display: flex; align-items: center; text-decoration: none; }
.lc-header__logo-img {
    height: 100px; width: auto;
    margin-block: -25px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Navigation ------------------------------------------------- */

.lc-header__nav { display: flex; align-items: center; margin-left: auto; }

.lc-header__nav-list {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: 4px;
}

.lc-header__nav-item { position: relative; }
.lc-header__nav-item--mega { position: static; }

.lc-header__nav-link {
    display: flex; align-items: center; gap: 5px;
    padding: 10px 18px; font-size: 14.5px; font-weight: 500;
    color: var(--header-gray-light); text-decoration: none;
    border-radius: 8px; transition: all 0.25s ease;
    white-space: nowrap; letter-spacing: 0.2px;
}
.lc-header__nav-link:hover { color: var(--header-white); }

.lc-header__nav-chevron { width: 14px; height: 14px; transition: transform 0.3s ease; }
.lc-header__nav-chevron path { stroke: var(--header-gray); transition: stroke 0.25s ease; }
.lc-header__nav-item:hover > .lc-header__nav-link .lc-header__nav-chevron { transform: rotate(180deg); }
.lc-header__nav-item:hover > .lc-header__nav-link .lc-header__nav-chevron path { stroke: var(--header-primary); }

/* ---------- CTA button ------------------------------------------------- */

.lc-header__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lc-header__cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, var(--header-primary) 0%, var(--header-primary-dark) 100%);
    color: var(--header-white); font-size: 14px; font-weight: 700;
    text-decoration: none; border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(239, 122, 23, 0.3);
    white-space: nowrap; letter-spacing: 0.3px;
}
.lc-header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(239, 122, 23, 0.45);
    background: linear-gradient(135deg, var(--header-primary-light) 0%, var(--header-primary) 100%);
}
.lc-header__cta svg { width: 16px; height: 16px; }

/* ---------- Dropdown --------------------------------------------------- */

.lc-header__dropdown {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    padding: 8px 0; background: var(--header-white);
    border: 1px solid rgba(3, 32, 56, 0.06);
    border-top: 3px solid var(--header-primary);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}
.lc-header__nav-item:hover > .lc-header__dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.lc-header__dropdown-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; font-size: 13.5px; color: #475569;
    text-decoration: none; transition: all 0.2s ease;
}
.lc-header__dropdown-link:hover {
    color: var(--header-primary);
    background: rgba(239, 122, 23, 0.05);
    padding-left: 24px;
}
.lc-header__dropdown-link svg { width: 15px; height: 15px; opacity: 0.5; flex-shrink: 0; }
.lc-header__dropdown-link:hover svg { opacity: 1; }

/* ---------- Mega menu -------------------------------------------------- */

.lc-megamenu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--header-white);
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--header-primary), var(--header-primary-light), var(--header-primary)) 1;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998; overflow: hidden;
}
.lc-header__nav-item--mega:hover .lc-megamenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.lc-megamenu__inner { max-width: 1400px; margin: 0 auto; padding: 40px 40px 32px; }

.lc-megamenu__grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 32px; margin-bottom: 36px;
}

.lc-megamenu__col { min-width: 0; }

.lc-megamenu__col-header {
    display: flex; align-items: center; gap: 10px;
    padding-left: 14px; border-left: 3px solid var(--header-primary);
    margin-bottom: 16px;
}
.lc-megamenu__col-icon { width: 20px; height: 20px; color: var(--header-primary); flex-shrink: 0; }
.lc-megamenu__col-title {
    font-size: 11.5px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; color: var(--header-primary);
}

.lc-megamenu__links { list-style: none; margin: 0; padding: 0; }
.lc-megamenu__link-item { border-bottom: 1px solid rgba(3, 32, 56, 0.06); }
.lc-megamenu__link-item:last-child { border-bottom: none; }

.lc-megamenu__link {
    display: block; padding: 9px 0 9px 14px;
    font-size: 13.5px; color: #475569;
    text-decoration: none; transition: all 0.2s ease; line-height: 1.4;
}
.lc-megamenu__link:hover { color: var(--header-primary); transform: translateX(4px); }

/* Mega menu bottom */
.lc-megamenu__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 28px; border-top: 1px solid rgba(3, 32, 56, 0.08);
}

.lc-megamenu__usps { display: flex; align-items: center; gap: 16px; }
.lc-megamenu__usps-title {
    font-size: 13px; font-weight: 700; color: var(--header-secondary);
    margin-right: 4px; white-space: nowrap;
}

.lc-megamenu__usp {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: #f8fafc;
    border: 1px solid rgba(3, 32, 56, 0.06); border-radius: 10px;
}
.lc-megamenu__usp-icon { width: 18px; height: 18px; color: var(--header-primary); flex-shrink: 0; }
.lc-megamenu__usp-text { font-size: 12px; font-weight: 600; color: #475569; white-space: nowrap; }

.lc-megamenu__ctas { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.lc-megamenu__cta-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--header-primary) 0%, var(--header-primary-dark) 100%);
    color: var(--header-white); font-size: 14px; font-weight: 700;
    text-decoration: none; border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(239, 122, 23, 0.35);
    white-space: nowrap;
}
.lc-megamenu__cta-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(239, 122, 23, 0.5);
}
.lc-megamenu__cta-primary svg { width: 16px; height: 16px; }

.lc-megamenu__cta-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; background: transparent;
    border: 1px solid rgba(3, 32, 56, 0.15);
    color: var(--header-secondary); font-size: 14px; font-weight: 600;
    text-decoration: none; border-radius: 10px;
    transition: all 0.3s ease; white-space: nowrap;
}
.lc-megamenu__cta-secondary:hover {
    background: rgba(3, 32, 56, 0.04);
    border-color: rgba(3, 32, 56, 0.25);
    color: var(--header-primary);
}
.lc-megamenu__cta-secondary svg { width: 15px; height: 15px; }

/* ---------- Mobile toggle ---------------------------------------------- */

.lc-header__mobile-toggle {
    display: none; justify-content: center; align-items: center;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
    padding: 0; z-index: 10001;
    color: var(--header-gray-light);
}

/* Unieke hamburger: 3 streepjes + trailer-wieltjes */
.lc-header__burger {
    position: relative;
    width: 24px; height: 20px;
    display: block;
}
.lc-header__burger-bar {
    position: absolute; left: 0;
    width: 24px; height: 2px;
    background: currentColor; border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.lc-header__burger-bar:nth-child(1) { top: 1px; }
.lc-header__burger-bar:nth-child(2) { top: 8px; }
.lc-header__burger-bar:nth-child(3) { top: 15px; }

/* Wieltjes onder de onderste streep -> leest als trailer op de weg */
.lc-header__burger-wheels {
    position: absolute; top: 18px; left: 0;
    width: 24px;
    display: flex; justify-content: center; gap: 8px;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.lc-header__burger-wheels span {
    width: 4px; height: 4px;
    background: currentColor; border-radius: 50%;
}

/* Open: hamburger -> X, wieltjes verdwijnen */
.lc-header__mobile-toggle.is-open .lc-header__burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.lc-header__mobile-toggle.is-open .lc-header__burger-bar:nth-child(2) {
    opacity: 0;
}
.lc-header__mobile-toggle.is-open .lc-header__burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.lc-header__mobile-toggle.is-open .lc-header__burger-wheels {
    opacity: 0; transform: translateY(4px);
}

/* ---------- Mobile menu ------------------------------------------------ */

.lc-mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 420px;
    background: linear-gradient(180deg, #0a1525 0%, #0f1d30 100%);
    z-index: 10000; transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.lc-mobile-menu--open { transform: translateX(0); }

.lc-mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999; opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}
.lc-mobile-overlay--open { opacity: 1; visibility: visible; }

.lc-mobile-menu__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
}

.lc-mobile-menu__close {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px; cursor: pointer;
    color: var(--header-gray-light); transition: all 0.2s ease;
}
.lc-mobile-menu__close:hover { background: rgba(255, 255, 255, 0.1); }
.lc-mobile-menu__close svg { width: 20px; height: 20px; }

.lc-mobile-menu__cta-top {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin: 20px 24px; padding: 14px 24px;
    background: linear-gradient(135deg, var(--header-primary) 0%, var(--header-primary-dark) 100%);
    color: var(--header-white); font-size: 15px; font-weight: 700;
    text-decoration: none; border-radius: 12px;
}
.lc-mobile-menu__cta-top svg { width: 18px; height: 18px; }

.lc-mobile-menu__nav { padding: 8px 0; }

.lc-mobile-menu__link {
    display: block; padding: 14px 24px;
    font-size: 15px; font-weight: 500;
    color: var(--header-gray-light); text-decoration: none;
    transition: all 0.2s ease;
}
.lc-mobile-menu__link:hover { color: var(--header-primary); padding-left: 28px; }

/* Mobile accordion */
.lc-mobile-menu__accordion-trigger {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 14px 24px;
    font-size: 15px; font-weight: 500;
    color: var(--header-gray-light);
    background: none; border: none; cursor: pointer; text-align: left;
}
.lc-mobile-menu__accordion-trigger svg { width: 16px; height: 16px; transition: transform 0.3s ease; color: var(--header-gray); }
.lc-mobile-menu__accordion-trigger--open svg { transform: rotate(180deg); color: var(--header-primary); }
.lc-mobile-menu__accordion-trigger--open { color: var(--header-primary); }

.lc-mobile-menu__accordion-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lc-mobile-menu__accordion-body--open { max-height: 2000px; }

.lc-mobile-menu__group { padding: 8px 0; }
.lc-mobile-menu__group-title {
    padding: 8px 24px 8px 40px; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    color: var(--header-primary);
}

.lc-mobile-menu__sublink {
    display: block; padding: 10px 24px 10px 40px;
    font-size: 13.5px; color: var(--header-gray);
    text-decoration: none; transition: all 0.2s ease;
}
.lc-mobile-menu__sublink:hover { color: var(--header-primary); padding-left: 44px; }

/* Mobile sub-accordion (Over ons / Contact) */
.lc-mobile-menu__sub-accordion-trigger {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 14px 24px;
    font-size: 15px; font-weight: 500;
    color: var(--header-gray-light);
    background: none; border: none;
    cursor: pointer; text-align: left;
}
.lc-mobile-menu__sub-accordion-trigger svg { width: 16px; height: 16px; transition: transform 0.3s ease; color: var(--header-gray); }
.lc-mobile-menu__sub-accordion-trigger--open svg { transform: rotate(180deg); color: var(--header-primary); }
.lc-mobile-menu__sub-accordion-trigger--open { color: var(--header-primary); }

.lc-mobile-menu__sub-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lc-mobile-menu__sub-body--open { max-height: 500px; }

.lc-mobile-menu__simple-sublink {
    display: block; padding: 10px 24px 10px 40px;
    font-size: 13.5px; color: var(--header-gray);
    text-decoration: none; transition: all 0.2s ease;
}
.lc-mobile-menu__simple-sublink:hover { color: var(--header-primary); padding-left: 44px; }

.lc-mobile-menu__footer {
    padding: 24px; margin-top: 8px;
}

.lc-mobile-menu__footer-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 13px; color: var(--header-gray);
}
.lc-mobile-menu__footer-item svg { width: 15px; height: 15px; opacity: 0.6; flex-shrink: 0; }

.lc-mobile-menu__footer-link {
    color: var(--header-gray-light); text-decoration: none; transition: color 0.2s ease;
}
.lc-mobile-menu__footer-link:hover { color: var(--header-primary); }


/* ==========================================================================
   HEADER — RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .lc-megamenu__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .lc-megamenu__bottom { flex-direction: column; gap: 20px; align-items: flex-start; }
    .lc-megamenu__usps { flex-wrap: wrap; }
}

@media (max-width: 1024px) {
    .lc-header__nav { display: none; }
    .lc-header__cta { display: none; }
    .lc-header__mobile-toggle { display: flex; }
    .lc-header__main { padding: 12px 20px; }
    .lc-topbar__inner { padding: 0 20px; gap: 16px; }
    .lc-topbar__item--hide-mobile { display: none; }
}

@media (max-width: 600px) {
    .lc-topbar { display: none; }
    .lc-mobile-menu { max-width: 100%; }
}

@media (max-width: 480px) {
    .lc-header__main { padding: 10px 16px; }
    .lc-header__logo-img { height: 80px; margin-block: -20px; }
    .lc-mobile-menu__header { padding: 14px 16px; }
    .lc-mobile-menu__cta-top { margin: 16px 16px; padding: 12px 20px; font-size: 14px; }
    .lc-mobile-menu__link { padding: 12px 16px; font-size: 14px; }
    .lc-mobile-menu__accordion-trigger,
    .lc-mobile-menu__sub-accordion-trigger { padding: 12px 16px; font-size: 14px; }
    .lc-mobile-menu__group-title { padding: 8px 16px 8px 32px; }
    .lc-mobile-menu__sublink,
    .lc-mobile-menu__simple-sublink { padding: 7px 16px 7px 32px; font-size: 13px; }
    .lc-mobile-menu__footer { padding: 16px; }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

#pmx-footer *, #pmx-footer *::before, #pmx-footer *::after { box-sizing: border-box; }

.ft {
    position: relative; background: var(--ft-bg);
    color: var(--ft-text); overflow: visible; z-index: 10;
}

.ft__inner {
    max-width: 1340px; margin: 0 auto;
    padding: 0 40px; position: relative; z-index: 2;
}

/* ---------- CTA bar ---------------------------------------------------- */

.ft__cta-bar {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 28px 36px;
    background: rgba(var(--ft-primary-rgb), 0.08);
    border: 1px solid rgba(var(--ft-primary-rgb), 0.15);
    border-radius: 16px; margin-bottom: 64px;
    transform: translateY(-50%); position: relative; z-index: 10;
}

.ft__cta-bar-text { font-size: 18px; font-weight: 700; color: var(--ft-heading); }

.ft__cta-bar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.ft__cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; font-size: 14px; font-weight: 700;
    text-decoration: none; border-radius: 10px;
    transition: all 0.3s ease; white-space: nowrap;
}
.ft__cta-btn svg { width: 16px; height: 16px; }

.ft__cta-btn--primary {
    background: var(--ft-primary); color: var(--ft-white);
    box-shadow: 0 4px 16px rgba(var(--ft-primary-rgb), 0.3);
}
.ft__cta-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--ft-primary-rgb), 0.45);
}

.ft__cta-btn--secondary {
    background: transparent; color: var(--ft-heading);
    border: 1px solid var(--ft-border);
}
.ft__cta-btn--secondary:hover {
    background: #f1f5f9; border-color: rgba(10, 22, 40, 0.15);
    color: var(--ft-primary);
}

/* ---------- Grid ------------------------------------------------------- */

.ft__grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 48px; padding-bottom: 56px;
    border-bottom: 1px solid var(--ft-border);
}

.ft__col-title {
    font-size: 14px; font-weight: 700; color: var(--ft-heading);
    text-transform: uppercase; letter-spacing: 1px; margin: 0 0 20px;
}

/* ---------- About column ----------------------------------------------- */

.ft__logo { display: inline-block; margin-bottom: 18px; }
.ft__logo img { height: 48px; width: auto; }

.ft__about-text { font-size: 14px; line-height: 1.7; color: var(--ft-text); margin: 0 0 24px; }

.ft__contact-item {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px; font-size: 14px;
    color: var(--ft-text); text-decoration: none; transition: color 0.2s ease;
}
a.ft__contact-item:hover { color: var(--ft-primary); }
.ft__contact-item svg { width: 16px; height: 16px; color: var(--ft-primary); flex-shrink: 0; }

/* ---------- Link columns ----------------------------------------------- */

.ft__links { list-style: none; margin: 0; padding: 0; }
.ft__links li { margin-bottom: 8px; }

.ft__links a {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; color: var(--ft-text);
    text-decoration: none; transition: all 0.2s ease; padding: 3px 0;
}
.ft__links a::before {
    content: ''; display: block; width: 5px; height: 5px;
    border-radius: 50%; background: rgba(var(--ft-primary-rgb), 0.4);
    flex-shrink: 0; transition: all 0.2s ease;
}
.ft__links a:hover { color: var(--ft-primary); transform: translateX(4px); }
.ft__links a:hover::before { background: var(--ft-primary); }

/* ---------- Hours column ----------------------------------------------- */

.ft__hours { list-style: none; margin: 0; padding: 0; }
.ft__hours li {
    display: flex; justify-content: space-between;
    padding: 8px 0; font-size: 13.5px;
    border-bottom: 1px solid var(--ft-border);
}
.ft__hours li:last-child { border-bottom: none; }

.ft__hours-day { color: var(--ft-text); font-weight: 500; }
.ft__hours-time { color: var(--ft-text-muted); font-weight: 600; }
.ft__hours-time--highlight { color: var(--ft-primary); font-weight: 700; }

.ft__hours-note {
    margin-top: 12px; padding: 10px 14px;
    background: rgba(var(--ft-primary-rgb), 0.06);
    border: 1px solid rgba(var(--ft-primary-rgb), 0.12);
    border-radius: 8px; font-size: 12px; font-weight: 600;
    color: var(--ft-primary); display: flex; align-items: center; gap: 8px;
}
.ft__hours-note svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Map -------------------------------------------------------- */

.ft__map-wrap { margin-top: 40px; }

.ft__map {
    width: 100%; height: 220px; border-radius: 14px;
    border: 1px solid var(--ft-border); overflow: hidden;
}
.ft__map iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.3) brightness(0.97); transition: filter 0.4s ease;
}
.ft__map:hover iframe { filter: grayscale(0) brightness(1); }

/* ---------- Bottom bar ------------------------------------------------- */

.ft__bottom {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 28px 0;
}

.ft__copyright { font-size: 13px; color: var(--ft-text-muted); }
.ft__copyright a { color: var(--ft-primary); text-decoration: none; transition: color 0.2s ease; }
.ft__copyright a:hover { color: var(--ft-heading); }

.ft__legal { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ft__legal a { font-size: 12.5px; color: var(--ft-text-muted); text-decoration: none; transition: color 0.2s ease; }
.ft__legal a:hover { color: var(--ft-primary); }
.ft__legal-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(10, 22, 40, 0.2); }


/* ==========================================================================
   FOOTER — RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .ft__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .ft__cta-bar { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .ft__inner { padding: 0 20px; }
    .ft__grid { grid-template-columns: 1fr; gap: 32px; }
    .ft__cta-bar { padding: 22px 20px; margin-bottom: 40px; }
    .ft__cta-bar-text { font-size: 16px; }
    .ft__cta-bar-actions { flex-direction: column; width: 100%; }
    .ft__cta-btn { width: 100%; justify-content: center; }
    .ft__bottom { flex-direction: column; text-align: center; gap: 16px; }
    .ft__legal { justify-content: center; }
    .ft__map { height: 180px; }
}

@media (max-width: 480px) {
    .ft__inner { padding: 0 16px; }
    .ft__cta-bar { padding: 18px 16px; margin-bottom: 32px; }
    .ft__cta-bar-text { font-size: 15px; }
    .ft__grid { gap: 28px; padding-bottom: 40px; }
    .ft__col-title { font-size: 13px; margin-bottom: 14px; }
    .ft__about-text { font-size: 13px; }
    .ft__links a { font-size: 13px; }
    .ft__hours li { font-size: 12.5px; }
    .ft__map { height: 150px; border-radius: 10px; }
    .ft__bottom { padding: 20px 0; }
    .ft__copyright { font-size: 12px; }
    .ft__legal a { font-size: 11.5px; }
}


/* ==========================================================================
   BLOG — Variables
   ========================================================================== */

:root {
    --blog-primary: #ef7a17;
    --blog-primary-rgb: 239, 122, 23;
    --blog-dark: #0A1628;
    --blog-dark-rgb: 10, 22, 40;
    --blog-text: #1e293b;
    --blog-text-muted: #64748b;
    --blog-bg: #f8fafc;
    --blog-white: #ffffff;
    --blog-border: rgba(10, 22, 40, 0.07);
    --blog-ease: cubic-bezier(0.4, 0, 0.2, 1);
}


/* ==========================================================================
   BLOG HERO
   ========================================================================== */

.blog-hero {
    position: relative; min-height: 340px; display: flex; align-items: center;
    overflow: hidden; background: var(--blog-dark); color: #fff;
}

.blog-hero__bg { position: absolute; inset: 0; z-index: 1; }

.blog-hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(var(--blog-dark-rgb),0.96) 0%, rgba(var(--blog-dark-rgb),0.88) 100%);
}

.blog-hero__road-lines { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.blog-hero__road-line {
    position: absolute; height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--blog-primary-rgb),0.3), transparent);
    animation: blog-road 6s linear infinite;
}
.blog-hero__road-line:nth-child(1) { bottom: 25%; left: -10%; width: 45%; animation-duration: 5s; }
.blog-hero__road-line:nth-child(2) { bottom: 50%; left: 20%; width: 50%; animation-duration: 7s; animation-delay: 1.5s; opacity: 0.5; }
.blog-hero__road-line:nth-child(3) { bottom: 75%; left: -5%; width: 35%; animation-duration: 8s; animation-delay: 3s; opacity: 0.3; }

@keyframes blog-road {
    0%   { transform: translateX(-100%); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateX(200%); opacity: 0; }
}

.blog-hero__inner {
    max-width: 800px; margin: 0 auto; padding: 140px 40px 80px;
    position: relative; z-index: 4; text-align: center;
}

.blog-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px;
    color: var(--blog-primary);
}
.blog-hero__eyebrow-line {
    display: block; width: 40px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--blog-primary) 0px, var(--blog-primary) 6px, transparent 6px, transparent 11px);
    opacity: 0.5;
}
.blog-hero__eyebrow-icon { width: 14px; height: 14px; margin-left: -4px; animation: blog-drive 3s ease-in-out infinite; }
@keyframes blog-drive { 0%,100%{transform:translateX(0)} 50%{transform:translateX(5px)} }
.blog-hero__eyebrow-text { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }

.blog-hero__title {
    font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.1;
    margin: 0 0 16px; color: #fff;
}
.blog-hero__hl { color: var(--blog-primary); }

.blog-hero__desc {
    font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.5);
    margin: 0; max-width: 540px; margin-left: auto; margin-right: auto;
}

.blog-hero__edge { position: absolute; bottom: -1px; left: 0; right: 0; z-index: 5; line-height: 0; }
.blog-hero__edge svg { width: 100%; height: auto; display: block; }


/* ==========================================================================
   BLOG GRID
   ========================================================================== */

.blog-grid { padding: 64px 0 80px; background: var(--blog-bg); }
.blog-grid__inner { max-width: 1340px; margin: 0 auto; padding: 0 40px; }

.blog-grid__cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* Card */
.blog-card {
    background: var(--blog-white); border: 1px solid var(--blog-border);
    border-radius: 18px; overflow: hidden;
    transition: all 0.4s var(--blog-ease); position: relative;
    display: flex; flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(var(--blog-primary-rgb),0.2);
    box-shadow: 0 16px 48px rgba(var(--blog-dark-rgb),0.08);
    transform: translateY(-4px);
}

/* Card image */
.blog-card__image {
    display: block; position: relative; overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--blog-ease); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(var(--blog-dark-rgb),0.04) 100%);
    pointer-events: none;
}

.blog-card__image-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(var(--blog-primary-rgb),0.06), rgba(var(--blog-primary-rgb),0.02));
}
.blog-card__image-placeholder svg { width: 40px; height: 40px; color: rgba(var(--blog-primary-rgb),0.3); }

/* Card body */
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.blog-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }

.blog-card__date {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: var(--blog-text-muted); font-weight: 500;
}
.blog-card__date svg { width: 13px; height: 13px; }

.blog-card__cat {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--blog-primary); background: rgba(var(--blog-primary-rgb),0.08);
    padding: 3px 10px; border-radius: 6px;
}

.blog-card__title {
    font-size: 18px; font-weight: 700; line-height: 1.3; color: var(--blog-text);
    margin: 0 0 10px;
}
.blog-card__title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.blog-card:hover .blog-card__title a { color: var(--blog-primary); }

.blog-card__excerpt {
    font-size: 14px; line-height: 1.65; color: var(--blog-text-muted);
    margin: 0 0 auto; padding-bottom: 16px;
}

.blog-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 700; color: var(--blog-primary);
    text-decoration: none; transition: gap 0.3s var(--blog-ease);
    margin-top: auto;
}
.blog-card__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--blog-ease); }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }

/* Empty state */
.blog-grid__empty {
    text-align: center; padding: 80px 20px;
}
.blog-grid__empty svg { width: 48px; height: 48px; color: var(--blog-text-muted); margin-bottom: 16px; }
.blog-grid__empty h2 { font-size: 22px; font-weight: 700; color: var(--blog-text); margin: 0 0 8px; }
.blog-grid__empty p { font-size: 15px; color: var(--blog-text-muted); margin: 0; }

/* Pagination */
.blog-pag { margin-top: 48px; text-align: center; }
.blog-pag ul { list-style: none; margin: 0; padding: 0; display: inline-flex; gap: 6px; }
.blog-pag li { display: inline-flex; }

.blog-pag a, .blog-pag span {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    min-width: 42px; height: 42px; padding: 0 14px;
    font-size: 14px; font-weight: 600; color: var(--blog-text);
    background: var(--blog-white); border: 1px solid var(--blog-border);
    border-radius: 10px; text-decoration: none;
    transition: all 0.25s var(--blog-ease);
}
.blog-pag a svg { width: 16px; height: 16px; }
.blog-pag a:hover { border-color: rgba(var(--blog-primary-rgb),0.3); color: var(--blog-primary); transform: translateY(-1px); }
.blog-pag .current { background: var(--blog-primary); color: #fff; border-color: var(--blog-primary); }


/* ==========================================================================
   SINGLE POST HERO
   ========================================================================== */

.post-hero {
    position: relative; min-height: 300px; display: flex; align-items: flex-end;
    overflow: hidden; background: var(--blog-dark); color: #fff;
}

.post-hero__bg { position: absolute; inset: 0; z-index: 1; }
.post-hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg, rgba(var(--blog-dark-rgb),0.96) 0%, rgba(var(--blog-dark-rgb),0.9) 100%);
}

.post-hero__inner {
    max-width: 900px; margin: 0 auto; padding: 130px 40px 48px;
    position: relative; z-index: 3; width: 100%;
}

.post-hero__crumb {
    display: flex; align-items: center; gap: 6px; margin-bottom: 20px;
    font-size: 12px; color: rgba(255,255,255,0.4);
}
.post-hero__crumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.post-hero__crumb a:hover { color: var(--blog-primary); }
.post-hero__crumb-sep { display: flex; width: 12px; height: 12px; color: rgba(255,255,255,0.2); }
.post-hero__crumb-sep svg { width: 100%; height: 100%; }

.post-hero__meta {
    display: flex; align-items: center; gap: 16px; margin-bottom: 16px; flex-wrap: wrap;
}
.post-hero__meta time, .post-hero__read {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500;
}
.post-hero__meta svg { width: 14px; height: 14px; }
.post-hero__cat {
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--blog-primary); background: rgba(var(--blog-primary-rgb),0.15);
    padding: 3px 10px; border-radius: 6px;
}

.post-hero__title {
    font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.15;
    margin: 0; color: #fff; max-width: 750px;
}


/* ==========================================================================
   SINGLE POST CONTENT
   ========================================================================== */

.post-content { padding: 48px 0 80px; background: var(--blog-bg); }
.post-content__inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.post-content__layout {
    display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start;
}

/* Article */
.post-article { min-width: 0; }

.post-article__featured {
    border-radius: 18px; overflow: hidden; margin-bottom: 36px;
    box-shadow: 0 8px 32px rgba(var(--blog-dark-rgb),0.08);
}
.post-article__featured img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }

.post-article__body {
    background: var(--blog-white); border: 1px solid var(--blog-border);
    border-radius: 18px; padding: 40px; line-height: 1.8;
}

.post-article__body h2 {
    font-size: 24px; font-weight: 800; color: var(--blog-text);
    margin: 40px 0 16px; line-height: 1.25;
    padding-bottom: 10px; border-bottom: 2px solid rgba(var(--blog-primary-rgb),0.15);
}
.post-article__body h2:first-child { margin-top: 0; }

.post-article__body h3 {
    font-size: 19px; font-weight: 700; color: var(--blog-text);
    margin: 32px 0 12px; line-height: 1.3;
}

.post-article__body p { font-size: 15.5px; color: var(--blog-text-muted); margin: 0 0 20px; }

.post-article__body ul, .post-article__body ol {
    margin: 0 0 24px; padding-left: 0; list-style: none;
}
.post-article__body ul li, .post-article__body ol li {
    position: relative; padding-left: 24px; margin-bottom: 10px;
    font-size: 15px; color: var(--blog-text-muted); line-height: 1.7;
}
.post-article__body ul li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(var(--blog-primary-rgb),0.3);
    border: 2px solid var(--blog-primary);
}
.post-article__body ol { counter-reset: ol-counter; }
.post-article__body ol li { counter-increment: ol-counter; }
.post-article__body ol li::before {
    content: counter(ol-counter); position: absolute; left: 0; top: 0;
    width: 22px; height: 22px; border-radius: 7px;
    background: rgba(var(--blog-primary-rgb),0.08); color: var(--blog-primary);
    font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

.post-article__body a {
    color: var(--blog-primary); text-decoration: underline;
    text-decoration-color: rgba(var(--blog-primary-rgb),0.3);
    text-underline-offset: 3px; transition: text-decoration-color 0.2s;
}
.post-article__body a:hover { text-decoration-color: var(--blog-primary); }

.post-article__body strong { color: var(--blog-text); font-weight: 700; }

.post-article__body table { width: 100%; border-collapse: collapse; margin: 0 0 24px; border-radius: 12px; overflow: hidden; }
.post-article__body th, .post-article__body td {
    padding: 12px 16px; font-size: 14px; text-align: left;
    border-bottom: 1px solid var(--blog-border);
}
.post-article__body th { background: rgba(var(--blog-primary-rgb),0.06); font-weight: 700; color: var(--blog-text); }
.post-article__body td { color: var(--blog-text-muted); }

/* Share */
.post-share {
    display: flex; align-items: center; gap: 14px; margin-top: 32px;
    padding-top: 24px; border-top: 1px solid var(--blog-border);
}
.post-share__label { font-size: 13px; font-weight: 700; color: var(--blog-text); white-space: nowrap; }
.post-share__links { display: flex; gap: 8px; }
.post-share__btn {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: var(--blog-bg); border: 1px solid var(--blog-border);
    color: var(--blog-text-muted); transition: all 0.25s var(--blog-ease); text-decoration: none;
}
.post-share__btn svg { width: 16px; height: 16px; }
.post-share__btn:hover { background: var(--blog-primary); border-color: var(--blog-primary); color: #fff; }


/* ==========================================================================
   SINGLE POST SIDEBAR
   ========================================================================== */

.post-sidebar { position: sticky; top: 24px; }

/* CTA card */
.post-sidebar__cta {
    background: var(--blog-white); border: 1px solid var(--blog-border);
    border-radius: 18px; padding: 28px 24px; text-align: center;
    position: relative; overflow: hidden; margin-bottom: 24px;
}
.post-sidebar__cta::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blog-primary), rgba(var(--blog-primary-rgb),0.2));
}

.post-sidebar__cta-icon {
    width: 52px; height: 52px; margin: 0 auto 14px; border-radius: 14px;
    background: rgba(var(--blog-primary-rgb),0.08); color: var(--blog-primary);
    display: flex; align-items: center; justify-content: center;
}
.post-sidebar__cta-icon svg { width: 24px; height: 24px; }

.post-sidebar__cta-title { font-size: 18px; font-weight: 800; color: var(--blog-text); margin: 0 0 8px; }
.post-sidebar__cta-text { font-size: 13.5px; color: var(--blog-text-muted); margin: 0 0 20px; line-height: 1.6; }

.post-sidebar__cta-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px; font-size: 14px; font-weight: 700;
    text-decoration: none; border-radius: 10px; transition: all 0.3s var(--blog-ease);
    margin-bottom: 8px;
}
.post-sidebar__cta-btn:last-child { margin-bottom: 0; }

.post-sidebar__cta-btn--primary {
    background: var(--blog-primary); color: #fff;
    box-shadow: 0 4px 16px rgba(var(--blog-primary-rgb),0.3);
}
.post-sidebar__cta-btn--primary:hover {
    transform: translateY(-1px); box-shadow: 0 6px 24px rgba(var(--blog-primary-rgb),0.4);
}
.post-sidebar__cta-btn--secondary {
    background: transparent; color: var(--blog-text); border: 1px solid var(--blog-border);
}
.post-sidebar__cta-btn--secondary:hover { border-color: rgba(var(--blog-primary-rgb),0.3); color: var(--blog-primary); }

/* Related */
.post-sidebar__related {
    background: var(--blog-white); border: 1px solid var(--blog-border);
    border-radius: 18px; padding: 24px; overflow: hidden;
}
.post-sidebar__related-title {
    font-size: 15px; font-weight: 800; color: var(--blog-text); margin: 0 0 16px;
}

.post-sidebar__related-list { display: flex; flex-direction: column; gap: 12px; }

.post-sidebar__related-item {
    display: flex; gap: 12px; text-decoration: none;
    padding: 10px; border-radius: 12px;
    transition: background 0.2s var(--blog-ease);
}
.post-sidebar__related-item:hover { background: var(--blog-bg); }

.post-sidebar__related-thumb { width: 64px; height: 52px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.post-sidebar__related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-sidebar__related-thumb-ph {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: rgba(var(--blog-primary-rgb),0.06);
}
.post-sidebar__related-thumb-ph svg { width: 20px; height: 20px; color: rgba(var(--blog-primary-rgb),0.3); }

.post-sidebar__related-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.post-sidebar__related-date { font-size: 11px; color: var(--blog-text-muted); }
.post-sidebar__related-name {
    font-size: 13px; font-weight: 600; color: var(--blog-text); line-height: 1.35;
    overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.post-sidebar__related-item:hover .post-sidebar__related-name { color: var(--blog-primary); }


/* ==========================================================================
   BLOG — RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .blog-grid__cards { grid-template-columns: repeat(2, 1fr); }
    .post-content__layout { grid-template-columns: 1fr; }
    .post-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 768px) {
    .blog-hero__inner { padding: 120px 20px 60px; }
    .blog-grid { padding: 40px 0 60px; }
    .blog-grid__inner { padding: 0 20px; }
    .blog-grid__cards { grid-template-columns: 1fr; }
    .blog-card__body { padding: 20px; }

    .post-hero__inner { padding: 110px 20px 36px; }
    .post-content__inner { padding: 0 20px; }
    .post-article__body { padding: 24px; }
    .post-sidebar { grid-template-columns: 1fr; }

    .post-share { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .blog-hero__inner { padding: 100px 16px 48px; }
    .blog-hero__title { font-size: 28px; }
    .blog-hero__desc { font-size: 14px; }
    .blog-grid__inner { padding: 0 16px; }
    .blog-card__body { padding: 16px; }
    .blog-card__title { font-size: 16px; }
    .blog-card__excerpt { font-size: 13px; }

    .post-hero__inner { padding: 100px 16px 32px; }
    .post-hero__title { font-size: 24px; }
    .post-content__inner { padding: 0 16px; }
    .post-article__body { padding: 20px 16px; }
    .post-article__body h2 { font-size: 20px; }
    .post-article__body h3 { font-size: 17px; }
    .post-article__body p { font-size: 14.5px; }
    .post-article__body ul li, .post-article__body ol li { font-size: 14px; padding-left: 20px; }
    .post-sidebar__cta { padding: 22px 18px; }
    .post-sidebar__related { padding: 18px; }
    .post-sidebar__related-thumb { width: 52px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-hero__road-line, .blog-hero__eyebrow-icon { animation: none !important; }
}
