/* ============================================================
   MA SO THUE PORTAL — theme.css  v3.0
   Pixel-perfect rebuild matching the provided mockups
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Design tokens ---- */
:root {
    --blue:      #0057d9;
    --blue-2:    #003b9d;
    --blue-light:#eef5ff;
    --red:       #ed111b;
    --ink:       #061640;
    --muted:     #667293;
    --border:    #e3eaf6;
    --soft:      #f5f8fe;
    --card:      #ffffff;
    --shadow:    0 2px 12px rgba(10,37,86,.07);
    --shadow-lg: 0 10px 30px rgba(10,37,86,.10);
    --radius:    8px;
    --sidebar-w: 228px;
    --header-h:  68px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    color: var(--ink);
    background: #f7faff;
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* ---- Container ---- */
.mstp-container {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.mstp-header {
    position: sticky;
    top: 0;
    z-index: 500; /* cao hơn để chắc chắn không bị che */
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.97);
    /* backdrop-filter đặt trên element con để tránh ảnh hưởng position:fixed của drawer */
}
.mstp-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: var(--header-h);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* Logo */
.mstp-logo a,
.mstp-logo__fallback {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 900;
    text-decoration: none;
}
.custom-logo { max-width: 100px; max-height: 100px; object-fit: contain; }
.mstp-logo__mark {
    display: grid;
    place-items: center;
    width: 52px; height: 52px;
    border: 4px solid var(--blue);
    border-right-color: var(--red);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 900;
    color: var(--blue);
    flex-shrink: 0;
}
.mstp-logo__text strong {
    display: block;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .5px;
}
.mstp-logo__text em { color: var(--red); font-style: normal; }
.mstp-logo__text small {
    display: block;
    margin-top: 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--muted);
    text-transform: uppercase;
}

/* Nav menu */
.mstp-menu {
    display: flex;
    justify-content: center;
    gap: 4px;
    list-style: none;
}
.mstp-menu li { position: relative; }
.mstp-menu a {
    display: block;
    padding: 22px 14px 19px;
    border-bottom: 3px solid transparent;
    color: #1a2340;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    transition: color .15s, border-color .15s;
    text-decoration: none;
}
.mstp-menu a:hover,
.mstp-menu .current-menu-item > a {
    border-bottom-color: var(--red);
    color: var(--blue);
    text-decoration: none;
}

/* Auth buttons */
.mstp-auth { display: flex; gap: 10px; align-items: center; }
.mstp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .15s;
    text-decoration: none;
    white-space: nowrap;
}
.mstp-btn:hover { opacity: .88; text-decoration: none; }
.mstp-btn--ghost { border: 1.5px solid var(--blue); background: #fff; color: var(--blue); }
.mstp-btn--red   { border: 1.5px solid var(--red);  background: var(--red); color: #fff; }

.mstp-nav-toggle { display: none; }
.mstp-header-spacer { display: none; } /* Chỉ hiện trên mobile */

/* ============================================================
   APP SHELL WRAPPER — Container + sidebar + content
   ============================================================ */

/* The outer wrapper that constrains width like the homepage */
.mstp-app-wrapper {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
    min-height: calc(100vh - var(--header-h));
}

/* Keep mstp-app-shell for backward compat but override it when inside wrapper */
.mstp-app-shell {
    display: contents;
}

/* Full-width variant — no left sidebar (dùng cho archive/single tin tức) */
.mstp-app-wrapper--full {
    grid-template-columns: minmax(0, 1fr);
}

/* ---- SIDEBAR ---- */
.mstp-sidebar {
    position: sticky;
    top: var(--header-h);
    align-self: start;
    height: calc(100vh - var(--header-h));
    border-right: 1px solid var(--border);
    background: #fff;
    padding: 24px 16px;
    font-size: 13px;
    overflow-y: auto;
}
.mstp-sidebar h2 {
    padding: 0 8px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}
.mstp-side-nav {
    display: grid;
    gap: 2px;
    margin-bottom: 0;
}
.mstp-side-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 6px;
    color: #1a2340;
    font-size: 13px;
    font-weight: 600;
    transition: background .12s, color .12s;
    text-decoration: none;
}
.mstp-side-nav a:hover { background: var(--blue-light); text-decoration: none; }
.mstp-side-nav .is-active {
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 700;
    box-shadow: inset 3px 0 0 var(--blue);
}
.mstp-sidebar hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 16px 0;
}
.mstp-support-card {
    margin-top: 28px;
    padding: 14px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--soft);
}
.mstp-support-card .mstp-support-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
}
.mstp-support-card strong {
    display: block;
    margin: 4px 0 2px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
}
.mstp-support-card small {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

/* ---- MAIN CONTENT ---- */
.mstp-content {
    position: relative;
    padding: 8px 6px 10px;
    background: #f7faff;
    min-width: 0;
    /* No overflow:hidden here — ribbon uses absolute positioning within */
}
.mstp-page-ribbon {
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 200px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, transparent 0 30%, rgba(0,87,217,.10) 30% 42%, transparent 42%),
        linear-gradient(135deg, transparent 0 48%, #0057d9 48% 58%, #0042ad 58% 67%, var(--red) 67% 76%, transparent 76%);
}
.mstp-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    color: #697799;
    font-size: 13px;
}
.mstp-breadcrumb a { color: #697799; }
.mstp-breadcrumb a:hover { color: var(--blue); }
.mstp-breadcrumb span::before { content: "›"; margin-right: 6px; color: #9aa7bf; }
.mstp-page-title {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: var(--blue);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* ============================================================
   COMPANY HERO (detail page top card)
   ============================================================ */
.mstp-company-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding: 22px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.mstp-company-icon {
    display: grid;
    place-items: center;
    width: 68px; height: 68px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 32px;
    flex-shrink: 0;
}
.mstp-company-hero h2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
}
.mstp-company-hero p { font-size: 15px; color: var(--muted); }
.mstp-company-hero p strong { color: var(--ink); font-size: 17px; font-weight: 700; }
.mstp-company-actions { display: flex; gap: 10px; }
.mstp-company-actions a,
.mstp-company-actions button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color .12s, color .12s;
    text-decoration: none;
}
.mstp-company-actions a:hover,
.mstp-company-actions button:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

/* ============================================================
   DETAIL LAYOUT (main + right sidebar)
   ============================================================ */
.mstp-detail-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 272px;
    gap: 20px;
    position: relative;
    z-index: 1;
    align-items: start;
}
.mstp-detail-main { min-width: 0; }

/* ---- Tabs ---- */
.mstp-tabs {
    display: flex;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.mstp-tabs button {
    flex: 1;
    min-height: 52px;
    padding: 0 8px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #3a4a70;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: color .12s, border-color .12s;
}
.mstp-tabs button:hover { color: var(--blue); }
.mstp-tabs .is-active {
    border-bottom-color: var(--blue);
    color: var(--blue);
    font-weight: 700;
}

/* ---- Tab panels ---- */
.mstp-tab-panel { display: none; }
.mstp-tab-panel.is-active { display: block; }
.mstp-tab-panel > h2 {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* Card */
.mstp-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 12px 14px;
}

/* ---- Info grid ---- */
.mstp-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 0 40px;
}
.mstp-info-grid div {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}
.mstp-info-grid span { color: var(--muted); font-size: 13px; font-weight: 500; }
.mstp-info-grid strong { color: var(--ink); font-size: 13px; font-weight: 600; word-break: break-word; overflow: visible; }
.mstp-info-grid .mstp-source-value { white-space: normal; line-height: 1.55; }
/* Badge inside info-grid value cell — let it wrap and show fully */
.mstp-info-grid strong .mstp-badge,
.mstp-info-grid .mstp-badge {
    background: #ffe1e5;
    color: #b91c27;
    white-space: normal;
    height: auto;
    line-height: 1.4;
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    word-break: break-word;
}
.mstp-info-grid .mstp-badge:not(.is-red) {
    background: #dcfce7;
    color: #166534;
}

.mstp-info-sub {
    grid-column: 1 / -1;
    margin: 20px 0 4px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
}

/* ---- Company right sidebar ---- */
.mstp-company-side {
    display: grid;
    align-content: start;
    gap: 16px;
    min-width: 0;
    overflow: hidden;
}
.mstp-widget {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 20px;
    overflow: hidden;
    word-break: break-word;
}
.mstp-widget > h2 {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.mstp-highlight-list { display: grid; gap: 14px; }
.mstp-highlight-list > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
    min-width: 0;
}
.mstp-highlight-list > div .mstp-hl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 7px;
    background: var(--blue-light);
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}
.mstp-highlight-list > div .mstp-hl-body {
    display: grid;
    gap: 2px;
    min-width: 0;
    word-break: break-word;
}
.mstp-highlight-list span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.mstp-highlight-list strong { color: var(--ink); font-size: 13px; font-weight: 700; word-break: break-word; }

/* Side action buttons */
.mstp-side-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 40px;
    margin-top: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background .12s, border-color .12s;
    text-decoration: none;
}
.mstp-side-action:hover { background: var(--blue-light); text-decoration: none; }
.mstp-side-action.is-danger { border-color: #ffcdd0; color: var(--red); }
.mstp-side-action.is-danger:hover { background: #fff5f5; }

/* ============================================================
   STATUS BADGE
   ============================================================ */
.mstp-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 3px 10px;
    border-radius: 5px;
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
    max-width: 100%;
}
/* In table cells — no background, keep original text color */
td .mstp-badge {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    white-space: normal;
    word-break: break-word;
    line-height: 1.5;
    min-height: 0;
    color: #166534;
}
td .mstp-badge.is-red {
    background: transparent;
    color: #b91c27;
}
/* In widget sidebar */
.mstp-hl-body .mstp-badge {
    white-space: normal;
    height: auto;
    min-height: 24px;
    line-height: 1.3;
    word-break: break-word;
}
.mstp-badge.is-red { background: #ffe1e5; color: #b91c27; }

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.mstp-filter-bar {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0,1fr) 160px 160px 160px 130px auto;
    gap: 12px;
    align-items: end;
    margin-bottom: 20px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.mstp-filter-bar input,
.mstp-filter-bar select {
    height: 44px;
    padding: 0 14px;
    border: 1px solid #d7e1ef;
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    min-width: 0;
}
.mstp-filter-bar input::placeholder { color: #9aa7c0; }
.mstp-filter-bar button {
    height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.mstp-filter-bar button:hover { background: var(--blue-2); }
.mstp-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    gap: 6px;
    text-decoration: none;
}
.mstp-reset:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }

/* Results layout: table + filter sidebar */
.mstp-results-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}
.mstp-results-card {
    padding: 9px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    min-width: 0; /* Prevent grid blowout */
}
.mstp-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.mstp-results-head p { font-size: 14px; }
.mstp-results-head p strong { color: var(--blue); }
.mstp-results-head-right { display: flex; align-items: center; gap: 12px; }
.mstp-export {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.mstp-export:hover { border-color: var(--blue); color: var(--blue); text-decoration: none; }
.mstp-results-per-page {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    color: var(--muted);
}
.mstp-results-per-page select {
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 13px;
    background: #fff;
}

/* Table */
.mstp-table-scroll {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.mstp-table-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}
.mstp-result-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}
/* Industries table inside detail page - no horizontal scroll */
.mstp-tab-panel .mstp-result-table {
    min-width: 0;
    font-size: 13px;
}
.mstp-result-table th {
    padding: 11px 12px;
    border-bottom: 1px solid var(--border);
    background: #f9fbff;
    color: #253159;
    font-weight: 700;
    text-align: left;
    font-size: 13px;
    white-space: nowrap;
}
.mstp-result-table td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
    color: var(--ink);
    word-break: break-word;
    overflow-wrap: break-word;
}
/* Address column: give it room to breathe */
.mstp-result-table td:nth-child(4) {
    min-width: 180px;
    max-width: 240px;
}
.mstp-result-table tbody tr:last-child td { border-bottom: none; }
.mstp-result-table td a { color: var(--blue); font-weight: 600; }
.mstp-result-table small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.mstp-industry-name {
    display: block;
    font-weight: 600;
}
.mstp-industry-detail {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.mstp-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 32px;
    padding: 0 14px;
    border: 1.5px solid var(--blue);
    border-radius: 6px;
    background: #fff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .12s, color .12s;
}
.mstp-view:hover { background: var(--blue); color: #fff; text-decoration: none; }

/* Action column — center the button */
.mstp-result-table td:last-child {
    text-align: center;
    vertical-align: middle;
}

/* Load more */
.mstp-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}
.mstp-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 28px;
    border: 1.5px solid var(--blue);
    border-radius: 8px;
    background: #fff;
    color: var(--blue);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .13s, color .13s;
}
.mstp-load-more-btn:hover:not(:disabled) { background: var(--blue); color: #fff; }
.mstp-load-more-btn:disabled { opacity: .55; cursor: default; }

/* Note / info box */
.mstp-note {
    margin: 16px 0 0;
    padding: 10px 14px;
    border-radius: 6px;
    background: #edf4ff;
    color: var(--blue);
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* Filter sidebar (right side on search results) */
.mstp-filter-side {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    font-size: 13px;
    align-self: start;
}
.mstp-filter-side > h2 {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 14px;
}
.mstp-filter-side h3 {
    margin: 16px 0 8px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.mstp-filter-side label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 6px 0;
    cursor: pointer;
    font-size: 13px;
}
.mstp-filter-side select {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    color: var(--ink);
    margin-bottom: 8px;
}
.mstp-filter-side .date-range { display: grid; gap: 8px; }
.mstp-filter-side .date-range input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
    color: var(--ink);
}
.mstp-filter-side .mstp-apply-filter,
.mstp-filter-side button[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 42px;
    margin-top: 14px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}
.mstp-filter-side .mstp-apply-filter:hover,
.mstp-filter-side button[type="submit"]:hover { background: var(--blue-2); }
.mstp-filter-side .mstp-reset-filter,
.mstp-filter-side button[type="button"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    border: 0;
    background: none;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
}
.mstp-filter-side hr {
    border: 0;
    border-top: 1px solid var(--border);
    margin: 14px 0;
}

/* ============================================================
   HISTORY TAB
   ============================================================ */
.mstp-history-head {
    display: grid;
    grid-template-columns: 150px 1fr 1fr 1fr 130px;
    gap: 12px;
    padding: 8px 0 8px 24px;
    border-bottom: 2px solid var(--border);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.mstp-history-timeline { padding: 4px 0; }
.mstp-history-row {
    display: grid;
    grid-template-columns: 150px 1fr 1fr 1fr 130px;
    gap: 12px;
    position: relative;
    padding: 14px 0 14px 24px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.mstp-history-row:last-child { border-bottom: none; }
.mstp-history-row::before {
    content: "";
    position: absolute;
    left: 4px; top: 20px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--blue);
}
.mstp-history-row::after {
    content: "";
    position: absolute;
    left: 9px; top: 32px;
    width: 2px;
    height: calc(100% - 18px);
    background: var(--border);
}
.mstp-history-row:last-child::after { display: none; }
.mstp-history-time { color: var(--muted); font-size: 12px; line-height: 1.5; }

/* Pagination inside history */
.mstp-history-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 10px;
}
.mstp-history-pager .mstp-pager-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}
.mstp-history-pager select {
    height: 34px;
    padding: 0 8px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 13px;
}

/* Related info tabs */
.mstp-related-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 18px;
    overflow-x: visible;
}
.mstp-related-tabs button {
    height: 42px;
    padding: 0 16px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: none;
    color: #3a4a70;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: -2px;
    transition: color .12s, border-color .12s;
    white-space: nowrap;
    flex-shrink: 0;
}
.mstp-related-tabs button:hover { color: var(--blue); }
.mstp-related-tabs .is-active {
    border-bottom-color: var(--blue);
    color: var(--blue);
    font-weight: 700;
}
.mstp-related-panel { display: none; }
.mstp-related-panel.is-active { display: block; }

/* Parent company notice (shown on branch pages) */
.mstp-parent-notice {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    font-size: 13px;
    color: var(--ink);
}
.mstp-parent-notice svg { flex-shrink: 0; color: var(--blue); }
.mstp-parent-notice a { font-weight: 700; color: var(--blue); text-decoration: none; }
.mstp-parent-notice a:hover { text-decoration: underline; }
.mstp-parent-code { color: #64748b; font-size: 12px; }

/* Industries table */
.mstp-badge--main { background: #dbeafe; color: #1e40af; }

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER — redesign v2
   ============================================================ */

/* -- Top stripe: logo + hotline -- */
.mstp-footer__topbar {
    background: #0a1f56;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mstp-footer__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 20px;
}
.mstp-footer__topbar-brand .mstp-logo__fallback { filter: brightness(0) invert(1); }
.mstp-footer__topbar-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
}
.mstp-footer__hotline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 9px 20px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .18s;
    white-space: nowrap;
}
.mstp-footer__hotline:hover { background: #c80e17; text-decoration: none; }

/* -- Main body -- */
.mstp-footer__body {
    background: var(--ink); /* #061640 */
}
.mstp-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 0;
    padding: 48px 0 40px;
}
.mstp-footer__col {
    padding: 0 32px 0 0;
    border-right: 1px solid rgba(255,255,255,.07);
}
.mstp-footer__col:first-child { padding-left: 0; }
.mstp-footer__col:last-child  { padding-right: 0; border-right: none; }
.mstp-footer__col:not(:first-child) { padding-left: 32px; }

/* Brand col */
.mstp-footer__col--brand .mstp-logo__fallback { filter: brightness(0) invert(1); opacity: .9; }
.mstp-footer__desc {
    margin: 18px 0 20px;
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255,255,255,.55);
    max-width: 280px;
}

/* Social */
.mstp-footer__social {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.mstp-footer__social-btn {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: background .18s, color .18s;
}
.mstp-footer__social-btn:hover {
    background: var(--blue);
    color: #fff;
    text-decoration: none;
}

/* Security badge */
.mstp-footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.45);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 5px 12px;
}

/* Headings */
.mstp-footer__heading {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 18px;
}

/* Link lists */
.mstp-footer__links {
    list-style: none;
    display: grid;
    gap: 10px;
}
.mstp-footer__links li { display: flex; align-items: center; gap: 6px; }
.mstp-footer__links li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,87,217,.6);
    flex-shrink: 0;
}
.mstp-footer__links a {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .15s;
    line-height: 1.4;
}
.mstp-footer__links a:hover { color: #fff; text-decoration: none; }

/* WP nav_menu inside footer col */
.mstp-footer__col .mstp-footer-menu {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.mstp-footer__col .mstp-footer-menu li { display: flex; align-items: center; gap: 6px; }
.mstp-footer__col .mstp-footer-menu li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0,87,217,.6);
    flex-shrink: 0;
}
.mstp-footer__col .mstp-footer-menu a {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    transition: color .15s;
}
.mstp-footer__col .mstp-footer-menu a:hover { color: #fff; text-decoration: none; }

/* Contact block */
.mstp-footer__contact-block {
    margin-top: 20px;
    display: grid;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.mstp-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    text-decoration: none;
}
.mstp-footer__contact-item:hover { color: rgba(255,255,255,.85); text-decoration: none; }

/* -- Bottom bar -- */
.mstp-footer__bottom {
    background: #030d2a;
}
.mstp-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,255,255,.35);
}
.mstp-footer__bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.mstp-footer__bottom-links a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .15s;
}
.mstp-footer__bottom-links a:hover { color: rgba(255,255,255,.7); text-decoration: none; }
.mstp-footer__bottom-nav { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.mstp-footer__bottom-nav li { margin: 0; padding: 0; }
.mstp-footer__bottom-nav a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .15s; }
.mstp-footer__bottom-nav a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   HOMEPAGE
   ============================================================ */
.mstp-section { padding: 40px 0; background: #fff; }
.mstp-section-title {
    text-align: center;
    margin: 0 0 28px;
    color: var(--blue);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
}
.mstp-section-title::after {
    content: "";
    display: block;
    width: 56px; height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--blue) 0 55%, var(--red) 55%);
}

/* Hero */
.mstp-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #fff 0%, #fff 50%, #eef5ff 100%);
}
.mstp-hero::after {
    content: "";
    position: absolute;
    right: 0; top: 0;
    width: 320px; height: 230px;
    background:
        linear-gradient(135deg, transparent 0 28%, rgba(0,87,217,.13) 28% 40%, transparent 40%),
        linear-gradient(135deg, transparent 0 46%, #0057d9 46% 58%, #0042ad 58% 68%, var(--red) 68% 78%, transparent 78%);
    pointer-events: none;
    z-index: 0;
}
.mstp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 300px;
    padding: 48px 0 80px;
    position: relative;
    z-index: 1;
}
.mstp-hero h1 { font-size: 36px; line-height: 1.25; color: var(--blue-2); font-weight: 900; margin-bottom: 16px; }
.mstp-hero h1 span { color: var(--red); }
.mstp-hero p { max-width: 560px; margin-bottom: 28px; color: #24345d; font-size: 15px; }
.mstp-hero__features { display: flex; gap: 20px; flex-wrap: wrap; }
.mstp-hero__features span { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #24345d; }

/* Laptop visual */
.mstp-hero__visual { position: relative; display: flex; justify-content: center; }
.mstp-laptop {
    width: 380px; height: 240px;
    background: #1a2340;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.mstp-laptop__screen {
    background: #fff;
    border-radius: 6px;
    height: 100%;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mstp-laptop__logo {
    font-weight: 900;
    color: var(--blue);
    font-size: 16px;
}
.mstp-laptop__rows { display: flex; flex-direction: column; gap: 8px; }
.mstp-laptop__rows i {
    display: block;
    height: 8px;
    border-radius: 4px;
    background: #eef5ff;
}
.mstp-laptop__rows i:nth-child(1) { width: 80%; }
.mstp-laptop__rows i:nth-child(2) { width: 60%; }
.mstp-laptop__rows i:nth-child(3) { width: 90%; }
.mstp-laptop__rows i:nth-child(4) { width: 50%; }
.mstp-laptop__rows i:nth-child(5) { width: 70%; }
.mstp-stat-card {
    position: absolute;
    bottom: -16px; right: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.mstp-stat-card strong { display: block; font-size: 22px; color: var(--blue); font-weight: 900; }
.mstp-stat-card span { font-size: 12px; color: var(--muted); }

/* Home search */
.mstp-home-search { margin-top: -50px; position: relative; z-index: 3; }
.mstp-search-panel {
    max-width: 1060px;
    margin: 0 auto;
    padding: 14px 60px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #003eaa);
    box-shadow: var(--shadow-lg);
}
.mstp-search-tabs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    margin-bottom: 0;
}
.mstp-search-tabs button {
    height: 56px;
    border: 0;
    background: transparent;
    color: #c0d8ff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.mstp-search-tabs .is-active {
    border-radius: 7px 7px 0 0;
    background: #fff;
    color: var(--ink);
    border-bottom-color: transparent;
}
.mstp-search-box {
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
    border-radius: 7px;
    background: #fff;
}
.mstp-search-box input {
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border: 0;
    font-size: 14px;
    color: var(--ink);
    outline: none;
}
.mstp-search-box input::placeholder { color: #9aa7c0; }
.mstp-search-box button {
    border: 0;
    height: 52px;
    padding: 0 28px;
    background: var(--red);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.mstp-search-panel > p { margin: 10px 0 0; color: #c0d8ff; font-size: 13px; }
.mstp-search-panel .mstp-search-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Stats */
.mstp-stats { padding: 16px 0 40px; background: #f7faff; }
.mstp-stats__inner {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #0042ad);
}
.mstp-stats__inner > div { padding: 22px; color: #fff; text-align: center; }
.mstp-stats__inner > div + div { border-left: 1px solid rgba(255,255,255,.25); }
.mstp-stats strong { display: block; font-size: 26px; font-weight: 800; }
.mstp-stats span { font-size: 13px; opacity: .85; }

/* Service grid */
.mstp-service-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 14px;
}
.mstp-service-card {
    min-height: 150px;
    padding: 22px 14px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    transition: box-shadow .15s, transform .15s;
    text-decoration: none;
    color: var(--ink);
    display: block;
}
.mstp-service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; }
.mstp-service-card span {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 20px;
}
.mstp-service-card:nth-child(even) span { background: var(--red); }
.mstp-service-card h3 { margin: 0 0 6px; font-size: 14px; font-weight: 700; color: var(--ink); }
.mstp-service-card p { font-size: 12px; color: var(--muted); }

/* News grid */
.mstp-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.mstp-news-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.mstp-news-card > a {
    display: flex;
    min-height: 110px;
    color: var(--ink);
    text-decoration: none;
}
.mstp-news-card img { width: 140px; height: 110px; object-fit: cover; flex-shrink: 0; }
.mstp-thumb-placeholder {
    width: 140px; height: 110px;
    background: linear-gradient(135deg, #dbe8ff, #f3f7ff);
    flex-shrink: 0;
}
.mstp-news-card div { padding: 12px; }
.mstp-news-card h3 { margin: 4px 0 0; font-size: 14px; font-weight: 700; }

/* News layout pages */
.mstp-news-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 20px;
    position: relative;
    z-index: 1;
    min-width: 0;
}

/* News list */
.mstp-news-list { padding: 0; }
.mstp-news-row {
    display: grid;
    grid-template-columns: 180px minmax(0,1fr);
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--ink);
}
.mstp-news-row:first-child { padding-top: 0; }
.mstp-news-row__thumb img,
.mstp-news-row__thumb .mstp-thumb-placeholder {
    width: 180px; height: 115px;
    border-radius: 5px;
    object-fit: cover;
}
.mstp-news-row h2 { font-size: 17px; line-height: 1.4; text-transform: uppercase; margin-bottom: 6px; }
.mstp-news-row p { color: #26375f; font-size: 13px; margin-bottom: 6px; }
.mstp-news-row .mstp-news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--muted);
}

/* Right sidebar */
.mstp-rightbar { display: grid; align-content: start; gap: 16px; }
.mstp-mini-post {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    text-decoration: none;
    align-items: start;
}
.mstp-mini-post:last-child { border-bottom: none; }
.mstp-mini-post img,
.mstp-mini-post .mstp-mini-thumb {
    width: 64px; height: 50px;
    border-radius: 5px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbe8ff, #f3f7ff);
    flex-shrink: 0;
    display: block;
}
.mstp-mini-post > div { display: grid; gap: 3px; min-width: 0; }
.mstp-mini-post h4 { font-size: 13px; font-weight: 600; line-height: 1.4; margin: 0; word-break: break-word; }
.mstp-mini-post small { color: var(--muted); font-size: 12px; white-space: nowrap; }

.mstp-category-list { list-style: none; }
.mstp-category-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}
.mstp-category-list li:last-child { border-bottom: none; }
.mstp-newsletter { display: grid; gap: 10px; }
.mstp-newsletter input {
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    width: 100%;
}
.mstp-newsletter button {
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
}

/* Rightbar widget */
.mstp-rightbar-widget {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.mstp-rightbar-widget > h3 {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 14px;
}

/* Article */
.mstp-article { padding: 0 0 36px; }
.mstp-article__category a {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 5px;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
}
.mstp-article h1 { max-width: 900px; margin: 14px 0; font-size: 28px; line-height: 1.3; text-transform: uppercase; }
.mstp-article__meta { display: flex; gap: 20px; color: var(--muted); margin-bottom: 20px; font-size: 13px; }
.mstp-article__share { display: flex; align-items: center; gap: 8px; }
.mstp-article__share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    text-decoration: none;
}
.mstp-article__thumb img { width: 100%; max-height: 380px; object-fit: cover; border-radius: 7px; }
.mstp-article__content { margin-top: 20px; color: #14204b; font-size: 15px; line-height: 1.75; }
.mstp-article__content h2 { margin: 28px 0 12px; font-size: 18px; text-transform: uppercase; color: var(--blue-2); }
.mstp-article__content ul { padding-left: 20px; margin-bottom: 12px; }
.mstp-article__content a { color: var(--blue); }
.mstp-article__content p { margin-bottom: 14px; }

/* Simple page */
.mstp-simple-page { padding: 36px 0; }
.mstp-page-card { padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }

/* Search filter bar on news page */
.mstp-news-filter {
    display: grid;
    grid-template-columns: minmax(0,1fr) 160px 140px 160px 120px;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}
.mstp-news-filter input,
.mstp-news-filter select {
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    min-width: 0;
}
.mstp-news-filter input::placeholder { color: #9aa7c0; }
.mstp-news-filter button {
    height: 42px;
    padding: 0 20px;
    border: 0;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

/* Featured badge */
.mstp-featured-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 4px;
    background: #ff6b35;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Search results table — explicit column sizing */
.mstp-result-table col.col-stt   { width: 42px; }
.mstp-result-table col.col-mst   { width: 130px; }
.mstp-result-table col.col-name  { width: 25%; }
.mstp-result-table col.col-addr  { width: 22%; }
.mstp-result-table col.col-organ { width: 14%; }
.mstp-result-table col.col-status{ width: 120px; }
.mstp-result-table col.col-action{ width: 70px; }

@media (max-width: 1180px) {
    .mstp-service-grid { grid-template-columns: repeat(3,1fr); }
    .mstp-results-layout,
    .mstp-detail-layout,
    .mstp-news-layout { grid-template-columns: 1fr; }
    .mstp-filter-bar { grid-template-columns: 1fr 1fr 1fr 1fr; }
    .mstp-app-wrapper { grid-template-columns: 200px 1fr; }
}

/* ── Hamburger icon (hidden on desktop) ── */
.mstp-nav-toggle { display: none; }
.mstp-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 22px;
}
.mstp-hamburger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .25s, opacity .25s, width .25s;
}
.mstp-hamburger span:nth-child(3) { width: 65%; }

/* ── Mobile drawer — slide từ trái (outside <header>) ── */
.mstp-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: min(300px, 85vw);
    height: 100dvh; /* dynamic viewport height — tránh iOS toolbar */
    background: #fff;
    z-index: 1001;
    box-shadow: 6px 0 32px rgba(0,0,0,.18);
    transform: translateX(-100%); /* ẩn sang trái */
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mstp-mobile-menu.is-open { transform: translateX(0); }
.mstp-mobile-menu__inner {
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}
/* Đầu drawer: logo giữa + nút đóng absolute góc phải */
.mstp-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: center; /* logo căn giữa */
    position: relative;       /* nút đóng absolute */
    height: 62px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    background: #f8fafd;
    padding: 0 16px;
}
/* Logo trong drawer — căn giữa */
.mstp-mobile-menu__brand {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mstp-mobile-menu__brand .mstp-logo__mark { width: 38px; height: 38px; font-size: 11px; border-width: 3px; }
.mstp-mobile-menu__brand .mstp-logo__text strong { font-size: 15px; }
.mstp-mobile-menu__brand .mstp-logo__text small { font-size: 7.5px; }
.mstp-mobile-menu__brand .custom-logo { max-width: 130px; max-height: 40px; }
/* Nút đóng — absolute góc phải */
.mstp-mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    color: #667;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: background .15s, color .15s;
}
.mstp-mobile-close:hover { background: #fee; color: var(--red); border-color: var(--red); }
/* Nav area */
.mstp-mobile-nav { padding: 6px 0; }
/* Divider before auth */
.mstp-mobile-auth {
    padding: 16px 20px;
    margin-top: auto;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 10px;
}
.mstp-mobile-auth .mstp-btn {
    width: 100%;
    height: 44px;
    justify-content: center;
    font-size: 14px;
}
.mstp-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 999; /* dưới drawer (1001) nhưng trên nội dung */
    opacity: 0;
    transition: opacity .28s;
}
.mstp-mobile-overlay.is-open { display: block; opacity: 1; }

/* Mobile nav links — override desktop .mstp-menu flex-row */
.mstp-mobile-nav .mstp-menu,
.mstp-mobile-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
}
.mstp-mobile-nav .mstp-menu li,
.mstp-mobile-nav .menu li {
    border-bottom: 1px solid var(--border);
    display: block;
}
.mstp-mobile-nav .mstp-menu li:last-child,
.mstp-mobile-nav .menu li:last-child { border-bottom: none; }
.mstp-mobile-nav .mstp-menu a,
.mstp-mobile-nav .menu a {
    display: flex;
    align-items: center;
    padding: 13px 16px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s, background .15s;
    border-bottom: none !important;  /* override desktop underline */
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.mstp-mobile-nav .mstp-menu a:hover,
.mstp-mobile-nav .menu a:hover { color: var(--blue); background: #f0f5ff; }
.mstp-mobile-nav .mstp-menu .current-menu-item > a,
.mstp-mobile-nav .menu .current-menu-item > a {
    color: var(--blue);
    background: #f0f5ff;
    border-left: 3px solid var(--blue) !important;
    padding-left: 13px;
}

/* Mobile auth buttons */
.mstp-mobile-auth {
    display: grid;
    gap: 10px;
}
.mstp-mobile-auth .mstp-btn {
    width: 100%;
    height: 44px;
    justify-content: center;
    font-size: 14px;
}

@media (max-width: 920px) {
    .mstp-container,
    .mstp-app-wrapper { width: calc(100% - 32px); }

    /* Header mobile — toggle trái | logo giữa | spacer phải */
    .mstp-header__inner {
        display: flex;
        align-items: center;
        min-height: 60px;
        gap: 0;
        padding: 0;
    }
    /* Logo căn giữa (flex:1 + text-align:center cho cả 2 bên đối xứng) */
    .mstp-logo {
        flex: 1;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    /* Spacer phải cùng kích thước với toggle để logo thực sự giữa */
    .mstp-header-spacer {
        display: block;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin-left: 12px;
    }

    /* Hiện nút hamburger, ẩn nav + auth desktop */
    .mstp-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px; height: 40px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
        flex-shrink: 0;
        margin-right: 12px;
    }
    .mstp-nav-toggle.is-active .mstp-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mstp-nav-toggle.is-active .mstp-hamburger span:nth-child(2) { opacity: 0; }
    .mstp-nav-toggle.is-active .mstp-hamburger span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }
    .mstp-nav, .mstp-auth { display: none !important; }
    /* Mobile drawer: luôn display:block (dùng transform slide), overlay CHỈ hiện khi .is-open */
    .mstp-mobile-menu { display: block; }

    /* Layout — sidebar ẩn, content chiếm toàn bộ width */
    .mstp-app-wrapper { grid-template-columns: 1fr; }
    /* Ẩn sidebar trên mobile — menu hamburger đã có đủ navigation */
    .mstp-sidebar { display: none; }
    .mstp-content { padding: 10px 8px 18px; grid-column: 1 / -1; }

    /* Search filter — news filter stacks 1 col (MST filter handled below) */
    .mstp-news-filter { grid-template-columns: 1fr; }

    /* Ẩn ribbon trang trí trên mobile — tránh che nội dung */
    .mstp-page-ribbon { display: none; }

    /* MST search table — card layout trên mobile */
    .mstp-results-head { flex-direction: column; align-items: flex-start; gap: 10px; }
    .mstp-results-head-right { flex-wrap: wrap; gap: 8px; }

    /* Filter bar: ô tìm kiếm full width, các select 2 cột */
    .mstp-filter-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
    .mstp-filter-bar input[type="search"] { grid-column: 1 / -1; }
    .mstp-filter-bar button { grid-column: 1 / 2; }
    .mstp-filter-bar .mstp-reset { grid-column: 2 / 3; justify-content: center; }

    /* Table → card list trên mobile */
    .mstp-table-scroll { overflow-x: visible; }
    .mstp-result-table,
    .mstp-result-table thead,
    /* ── Trang tra cứu: card layout (chỉ trong .mstp-results-card) ── */
    .mstp-results-card .mstp-result-table tbody,
    .mstp-results-card .mstp-result-table tr,
    .mstp-results-card .mstp-result-table td { display: block; }
    /* QUAN TRỌNG: reset min-width từ base CSS (700px) để tránh tràn ngang */
    .mstp-results-card .mstp-result-table { min-width: 0 !important; width: 100%; }
    .mstp-results-card .mstp-result-table thead { display: none; }
    .mstp-results-card .mstp-result-table tbody tr {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-bottom: 10px;
        padding: 12px 14px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,.06);
    }
    /* Ẩn cột STT, Địa chỉ, Cơ quan, Thao tác */
    .mstp-results-card .mstp-result-table td:nth-child(1),
    .mstp-results-card .mstp-result-table td:nth-child(4),
    .mstp-results-card .mstp-result-table td:nth-child(5),
    .mstp-results-card .mstp-result-table td:nth-child(7) {
        display: none;
    }
    /* MST — label + value */
    .mstp-results-card .mstp-result-table td:nth-child(2) {
        padding: 0 0 6px;
        border: none;
        font-size: 12px;
        color: var(--muted);
    }
    .mstp-results-card .mstp-result-table td:nth-child(2)::before {
        content: 'Mã số thuế: ';
        font-weight: 600;
        color: var(--muted);
    }
    .mstp-results-card .mstp-result-table td:nth-child(2) strong {
        color: var(--blue);
        font-size: 13px;
    }
    /* Tên doanh nghiệp */
    .mstp-results-card .mstp-result-table td:nth-child(3) {
        padding: 0 0 8px;
        border: none;
        font-size: 14px;
        font-weight: 600;
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .mstp-results-card .mstp-result-table td:nth-child(3) a { color: var(--ink); text-decoration: none; }
    .mstp-results-card .mstp-result-table td:nth-child(3) a:hover { color: var(--blue); }
    .mstp-results-card .mstp-result-table td:nth-child(3) small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; margin-top: 2px; }
    /* Trạng thái */
    .mstp-results-card .mstp-result-table td:nth-child(6) {
        padding: 0 0 4px;
        border: none;
    }

    /* ── Bảng trong related-panel: card layout mobile (đồng bộ trang tra cứu MST) ── */
    .mstp-related-panel .mstp-table-scroll { overflow-x: visible; }
    .mstp-related-panel .mstp-result-table,
    .mstp-related-panel .mstp-result-table tbody,
    .mstp-related-panel .mstp-result-table td { display: block; }
    .mstp-related-panel .mstp-result-table { min-width: 0 !important; width: 100%; }
    .mstp-related-panel .mstp-result-table thead { display: none; }
    .mstp-related-panel .mstp-result-table tbody tr {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-bottom: 10px;
        padding: 12px 14px;
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,.06);
        display: flex;
        flex-direction: column;
    }
    .mstp-related-panel .mstp-result-table td {
        padding: 0 0 4px;
        border: none;
        white-space: normal;
        word-break: break-word;
    }
    .mstp-related-panel .mstp-result-table td:last-child { padding-bottom: 0; }

    /* Chi nhánh / Địa điểm / Hộ KD / Người NNT liên quan: đảo MST (col 2) lên trước Tên (col 1) */
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(2) {
        order: 1;
        font-size: 12px; color: var(--blue); font-weight: 600; padding-bottom: 6px;
    }
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(2)::before {
        content: 'Mã số thuế: ';
        font-weight: 600; color: var(--muted); font-size: 12px;
    }
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(1) {
        order: 2;
        font-size: 14px; font-weight: 600; color: var(--ink);
        line-height: 1.4; padding-bottom: 8px;
    }
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(1) a {
        color: var(--ink); text-decoration: none;
    }
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(3) {
        order: 3;
        font-size: 12px; color: var(--muted);
    }
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(4) {
        order: 4; font-size: 12px; padding-bottom: 0;
    }
    .mstp-related-panel:not([data-rpanel="representatives"]) .mstp-result-table td:nth-child(5) {
        display: none;
    }

    /* Đại diện pháp luật: Họ tên | Chức danh | CMND/CCCD | Từ ngày (giữ nguyên thứ tự) */
    .mstp-related-panel[data-rpanel="representatives"] .mstp-result-table td:nth-child(1) {
        font-size: 14px; font-weight: 600; color: var(--ink); padding-bottom: 6px; line-height: 1.4;
    }
    .mstp-related-panel[data-rpanel="representatives"] .mstp-result-table td:nth-child(2),
    .mstp-related-panel[data-rpanel="representatives"] .mstp-result-table td:nth-child(3),
    .mstp-related-panel[data-rpanel="representatives"] .mstp-result-table td:nth-child(4) {
        font-size: 12px; color: var(--muted);
    }

    /* ── Homepage hero ── */
    /* Ẩn decoration ::after trên mobile — đang đè lên text */
    .mstp-hero::after { display: none; }
    .mstp-hero {
        background: linear-gradient(160deg, #eef5ff 0%, #fff 60%);
    }
    .mstp-hero__grid {
        grid-template-columns: 1fr;
        padding: 32px 0 70px; /* giảm padding bottom để search panel overlap vừa */
        min-height: unset;
        gap: 0;
    }
    .mstp-hero h1 { font-size: 26px; }
    .mstp-hero p { font-size: 14px; margin-bottom: 20px; }
    .mstp-hero__visual { display: none; }
    .mstp-hero__features { gap: 12px; }
    .mstp-company-icon { display: none; }

    /* Search panel */
    .mstp-home-search { margin-top: -40px; }
    .mstp-search-panel { padding: 10px 14px 18px; border-radius: 10px; }
    /* Tabs: 3 cột, font nhỏ, ẩn SVG icon, height giảm */
    .mstp-search-tabs { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .mstp-search-tabs button {
        height: 40px;
        font-size: 10px;
        padding: 0 4px;
        gap: 0;
        letter-spacing: 0;
    }
    .mstp-search-tabs button svg { display: none; } /* ẩn icon cho gọn */
    .mstp-search-tabs .is-active { border-radius: 6px 6px 0 0; }
    .mstp-search-box input { height: 46px; font-size: 13px; }
    .mstp-search-box button { height: 46px; padding: 0 14px; font-size: 13px; }
    .mstp-search-panel > p { font-size: 11px; }
    .mstp-service-grid { grid-template-columns: 1fr 1fr; } /* 2 cột trên mobile */
    .mstp-news-grid,
    .mstp-stats__inner { grid-template-columns: 1fr; }
    .mstp-info-grid { grid-template-columns: 1fr; }
    .mstp-company-hero { grid-template-columns: auto 1fr; }
    .mstp-company-actions { grid-column: 1 / -1; flex-wrap: wrap; }

    /* Footer */
    .mstp-footer__grid { grid-template-columns: 1fr 1fr; }
    .mstp-footer__col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 24px 0; }
    .mstp-footer__col:not(:first-child) { padding-left: 0; }
    .mstp-footer__topbar-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .mstp-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Misc */
    .mstp-tabs { flex-wrap: wrap; }
    .mstp-history-row,
    .mstp-history-head { grid-template-columns: 1fr; }
    .mstp-stats__inner > div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
}
.mstp-main { display: block; }

/* ============================================================
   RELATED COMPANIES SECTION (detail page)
   ============================================================ */
.mstp-related-companies {
    margin-top: 28px;
    position: relative;
    z-index: 1;
}
.mstp-related-companies__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.mstp-related-companies__head h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin: 0;
}
.mstp-related-companies__head h2 svg { flex-shrink: 0; color: var(--blue); }
.mstp-related-companies__sub {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 20px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
}

/* Grid: 4 columns desktop → 2 mobile */
/* Grid: 2 cột */
.mstp-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mstp-related-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.mstp-related-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 18px rgba(0,87,217,.10);
    text-decoration: none;
    color: var(--ink);
}
.mstp-related-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}
.mstp-related-card__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.mstp-related-card__name {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.4;
    word-break: break-word;
}
.mstp-related-card__code {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}
.mstp-related-card__code svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--muted);
}
.mstp-related-card__code strong { color: var(--ink); font-weight: 600; }
.mstp-related-card__addr {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}
.mstp-related-card__addr svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--muted);
}
.mstp-related-card__status { display: none; } /* removed per request */

@media (max-width: 920px) { .mstp-related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOMEPAGE — COMPANY LIST SECTION
   ============================================================ */
.mstp-home-companies { background: #f7faff; }

.mstp-home-company-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}
.mstp-home-company-grid--hidden { display: none; }

.mstp-hc-card {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.mstp-hc-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 18px rgba(0,87,217,.10);
    text-decoration: none;
    color: var(--ink);
}
.mstp-hc-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--blue-light);
    color: var(--blue);
    flex-shrink: 0;
    margin-top: 1px;
}
.mstp-hc-card__body {
    display: grid;
    gap: 4px;
    min-width: 0;
}
.mstp-hc-card__name {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.4;
    word-break: break-word;
}
.mstp-hc-card__row {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin: 0;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}
.mstp-hc-card__row svg { flex-shrink: 0; margin-top: 2px; color: var(--muted); }
.mstp-hc-card__row strong { color: var(--ink); font-weight: 600; }
.mstp-hc-card__row--addr { line-height: 1.4; }

/* Load more button */
.mstp-home-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.mstp-home-loadmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 28px;
    border: 1.5px solid var(--blue);
    border-radius: 8px;
    background: #fff;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s, color .15s;
}
.mstp-home-loadmore:hover { background: var(--blue); color: #fff; }

@media (max-width: 760px) { .mstp-home-company-grid { grid-template-columns: 1fr; } }

/* ============================================================
   NEWS ARCHIVE – Featured post + Card grid
   ============================================================ */

/* Archive hero title bar */
.mstp-arc-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 22px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
    color: #fff;
    position: relative;
    z-index: 1;
}
.mstp-arc-hero-icon {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    flex-shrink: 0;
    color: #fff;
}
.mstp-arc-hero-title {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    margin: 0 0 2px;
    color: #fff;
}
.mstp-arc-hero-desc { font-size: 13px; color: rgba(255,255,255,.82); margin: 2px 0 0; }
.mstp-arc-hero-count {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,.18);
    font-size: 12px;
    font-weight: 600;
}

/* Main area inside news-layout */
.mstp-arc-main { display: grid; gap: 24px; align-content: start; min-width: 0; }

/* ── Featured first post ── */
.mstp-feat-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.mstp-feat-post__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 240px;
    background: var(--blue-2);
}
.mstp-feat-post__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.mstp-feat-post:hover .mstp-feat-post__img { transform: scale(1.04); }
.mstp-feat-post__no-thumb {
    width: 100%; height: 100%; min-height: 240px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a3a8a, var(--blue-2));
}
.mstp-feat-post__cat {
    position: absolute;
    top: 12px; left: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.mstp-feat-post__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px 26px;
}
.mstp-feat-post__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted);
    flex-wrap: wrap;
}
.mstp-arc-avatar {
    width: 20px; height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
.mstp-arc-dot { color: #ccc; }
.mstp-feat-post__title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0;
    text-transform: uppercase;
}
.mstp-feat-post__title a { color: var(--ink); text-decoration: none; }
.mstp-feat-post__title a:hover { color: var(--blue); }
.mstp-feat-post__excerpt { font-size: 13px; color: #445; line-height: 1.65; margin: 0; }
.mstp-feat-post__readmore {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    padding: 7px 16px;
    border-radius: 6px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
}
.mstp-feat-post__readmore:hover { background: var(--blue-2); text-decoration: none; color: #fff; }

/* ── Card grid ── */
.mstp-arc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.mstp-arc-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, border-color .2s;
}
.mstp-arc-card:hover { box-shadow: var(--shadow-lg); border-color: #c0d4f5; }
.mstp-arc-card__thumb {
    position: relative;
    display: block;
    overflow: hidden;
    height: 160px;
    background: var(--blue-2);
    flex-shrink: 0;
}
.mstp-arc-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s;
}
.mstp-arc-card:hover .mstp-arc-card__img { transform: scale(1.05); }
.mstp-arc-card__no-thumb {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1a3a8a, var(--blue-2));
}
.mstp-arc-card__cat {
    position: absolute;
    top: 8px; left: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.mstp-arc-card__body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.mstp-arc-card__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
    text-transform: uppercase;
}
.mstp-arc-card__title a { color: var(--ink); text-decoration: none; }
.mstp-arc-card__title a:hover { color: var(--blue); }
.mstp-arc-card__excerpt { font-size: 12px; color: var(--muted); line-height: 1.55; margin: 0; flex: 1; }
.mstp-arc-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.mstp-arc-card__meta {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--muted);
    min-width: 0;
}
.mstp-arc-card__more {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
}
.mstp-arc-card__more:hover { text-decoration: underline; }

/* Empty state */
.mstp-arc-empty {
    text-align: center;
    padding: 52px 20px;
    color: var(--muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.mstp-arc-empty p { font-size: 15px; }

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

/* Single content: remove default padding-top (hero takes over) */
.mstp-single-content { padding-top: 0 !important; }
.mstp-single-content .mstp-news-layout { margin-left: -32px; margin-right: -32px; }


/* Single post full-width layout */
.mstp-single-layout { max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* Reading progress bar */
.mstp-reading-progress {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border);
    z-index: 9999;
}
.mstp-reading-progress__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--red));
    transition: width .1s linear;
}

/* Post hero */
.mstp-post-hero {
    position: relative;
    z-index: 1;
    padding: 32px 32px 28px;
    margin: 0 -32px 24px;
    color: #fff;
}
.mstp-post-hero.no-thumb {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
}
.mstp-post-hero.has-thumb { min-height: 280px; }
.mstp-post-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.mstp-post-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,40,120,.80) 0%, rgba(0,20,80,.65) 100%);
}
.mstp-post-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

/* Hero breadcrumb overrides */
.mstp-breadcrumb--hero { color: rgba(255,255,255,.75); margin-bottom: 14px; }
.mstp-breadcrumb--hero a { color: rgba(255,255,255,.75); }
.mstp-breadcrumb--hero span::before { color: rgba(255,255,255,.4); }

/* Category badge on hero */
.mstp-post-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 4px;
    background: var(--red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 10px;
}

/* Post hero title */
.mstp-post-hero__title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
}

/* Post meta row */
.mstp-post-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.85);
}
.mstp-post-meta-author {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.85);
    text-decoration: none;
}
.mstp-post-meta-author:hover { color: #fff; text-decoration: none; }
.mstp-post-meta-avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.4);
}
.mstp-post-meta-item { display: flex; align-items: center; gap: 5px; }
.mstp-meta-sep { color: rgba(255,255,255,.35); }

/* Single article */
.mstp-single-article { background: #fff; border-radius: 8px; border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow); margin-bottom: 20px; }

/* Tags */
.mstp-post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--border);
}
.mstp-post-tags__label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}
.mstp-tag-pill {
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--soft);
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background .12s, border-color .12s;
}
.mstp-tag-pill:hover { background: var(--blue-light); border-color: var(--blue); text-decoration: none; }

/* Share section */
.mstp-share-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid var(--border);
}
.mstp-share-label { font-size: 13px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.mstp-share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.mstp-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 34px;
    padding: 0 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .15s;
    border: 0;
}
.mstp-share-btn:hover { opacity: .85; text-decoration: none; }
.mstp-share-btn--fb  { background: #1877f2; color: #fff; }
.mstp-share-btn--tw  { background: #000; color: #fff; }
.mstp-share-btn--copy { background: var(--soft); border: 1px solid var(--border); color: var(--ink); font-family: inherit; }

/* Author box */
.mstp-author-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--soft);
    margin-bottom: 20px;
}
.mstp-author-box__avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}
.mstp-author-box__label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--muted); letter-spacing: .4px; }
.mstp-author-box__name { font-size: 16px; font-weight: 800; margin: 3px 0 6px; }
.mstp-author-box__name a { color: var(--ink); text-decoration: none; }
.mstp-author-box__name a:hover { color: var(--blue); }
.mstp-author-box__bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Post navigation */
.mstp-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}
.mstp-post-nav__item {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mstp-post-nav__item:hover { border-color: var(--blue); box-shadow: var(--shadow); text-decoration: none; color: var(--ink); }
.mstp-post-nav__next { text-align: right; }
.mstp-post-nav__dir {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}
.mstp-post-nav__next .mstp-post-nav__dir { justify-content: flex-end; }
.mstp-post-nav__title { font-size: 13px; font-weight: 700; line-height: 1.4; color: var(--blue); }

/* Related posts (in single news post — scoped to avoid conflict with company cards) */
.mstp-related-posts { margin-bottom: 24px; }
.mstp-related-posts__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--blue-light);
}
.mstp-related-posts .mstp-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.mstp-related-posts .mstp-related-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
    text-decoration: none;
    color: var(--ink);
}
.mstp-related-posts .mstp-related-card:hover { box-shadow: var(--shadow-lg); }
.mstp-related-posts .mstp-related-card__thumb {
    position: relative;
    display: block;
    height: 120px;
    overflow: hidden;
    background: var(--blue-2);
    flex-shrink: 0;
}
.mstp-related-posts .mstp-related-card__img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.mstp-related-posts .mstp-related-card:hover .mstp-related-card__img { transform: scale(1.05); }
.mstp-related-posts .mstp-related-card__no-thumb { width: 100%; height: 100%; background: linear-gradient(135deg,#1a3a8a,var(--blue-2)); }
.mstp-related-posts .mstp-related-card__cat {
    position: absolute; top: 6px; left: 6px;
    padding: 2px 7px;
    border-radius: 3px;
    background: var(--red);
    color: #fff; font-size: 10px; font-weight: 700;
}
.mstp-related-posts .mstp-related-card__body { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.mstp-related-posts .mstp-related-card__title {
    font-size: 13px; font-weight: 700; line-height: 1.4;
    color: var(--ink); text-decoration: none;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.mstp-related-posts .mstp-related-card__title:hover { color: var(--blue); }
.mstp-related-posts .mstp-related-card__date { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--muted); }

/* ============================================================
   RESPONSIVE – News archive & Single
   ============================================================ */
@media (max-width: 1100px) {
    .mstp-feat-post { grid-template-columns: 1fr; }
    .mstp-feat-post__thumb { min-height: 200px; }
}
@media (max-width: 760px) {
    .mstp-arc-grid,
    .mstp-related-grid { grid-template-columns: 1fr; }
    .mstp-post-nav { grid-template-columns: 1fr; }
    .mstp-post-hero { padding: 22px 18px 20px; margin: 0 -18px 18px; }
    .mstp-post-hero__title { font-size: 20px; }
}

@media (max-width: 600px) {
    .mstp-footer__grid { grid-template-columns: 1fr; }
    .mstp-footer__col--brand .mstp-footer__desc { max-width: 100%; }
    .mstp-footer__bottom-links { gap: 12px; }
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.mstp-comments-wrap {
    margin-top: 8px;
}

/* Comment count title */
.mstp-comments-wrap #comments {
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
}
.mstp-comments-wrap .comments-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mstp-comments-wrap .comments-title::before {
    content: '';
    display: inline-block;
    width: 4px; height: 18px;
    border-radius: 2px;
    background: var(--blue);
    flex-shrink: 0;
}

/* Comment list */
.mstp-comments-wrap .comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}
.mstp-comments-wrap .comment-list .children {
    list-style: none;
    padding-left: 52px;
    margin-top: 14px;
    display: grid;
    gap: 14px;
}

/* Individual comment */
.mstp-comments-wrap .comment {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--soft);
}
.mstp-comments-wrap .pingback,
.mstp-comments-wrap .trackback {
    padding: 12px 16px;
    border: 1px dashed var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
}

/* Avatar */
.mstp-comments-wrap .comment-body > .vcard img,
.mstp-comments-wrap .comment .avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.12);
    flex-shrink: 0;
}

/* Comment content wrapper */
.mstp-comments-wrap .comment-body {
    display: flex;
    gap: 12px;
    width: 100%;
}
.mstp-comments-wrap .comment-content-wrap {
    flex: 1;
    min-width: 0;
}

/* Author name & date */
.mstp-comments-wrap .comment-author .fn {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}
.mstp-comments-wrap .comment-author .fn a {
    color: var(--ink);
    text-decoration: none;
}
.mstp-comments-wrap .comment-author .fn a:hover { color: var(--blue); }
.mstp-comments-wrap .comment-metadata {
    margin: 2px 0 8px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
}
.mstp-comments-wrap .comment-metadata a {
    color: var(--muted);
    text-decoration: none;
}
.mstp-comments-wrap .comment-metadata a:hover { color: var(--blue); }
.mstp-comments-wrap .comment-metadata .edit-link { display: none; }

/* Comment text */
.mstp-comments-wrap .comment-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #2a3a5c;
    margin: 0 0 8px;
}
.mstp-comments-wrap .comment-content p:last-child { margin-bottom: 0; }

/* Reply link */
.mstp-comments-wrap .reply {
    margin-top: 8px;
}
.mstp-comments-wrap .reply a,
.mstp-comments-wrap .comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .12s, background .12s;
}
.mstp-comments-wrap .reply a:hover,
.mstp-comments-wrap .comment-reply-link:hover {
    border-color: var(--blue);
    background: var(--blue-light);
    text-decoration: none;
}
.mstp-comments-wrap .reply a::before {
    content: '↩';
    font-size: 13px;
}

/* Moderation notice */
.mstp-comments-wrap .comment-awaiting-moderation {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 4px;
    background: #fff3cd;
    color: #856404;
    font-size: 11px;
    font-weight: 600;
}

/* ── Comment Form ── */
.mstp-comments-wrap #respond {
    margin-top: 24px;
    padding: 24px 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--shadow);
}
.mstp-comments-wrap #reply-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.mstp-comments-wrap #reply-title::before {
    content: '';
    display: inline-block;
    width: 4px; height: 18px;
    border-radius: 2px;
    background: var(--blue);
    flex-shrink: 0;
}
.mstp-comments-wrap #reply-title small a {
    margin-left: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
}
.mstp-comments-wrap #reply-title small a:hover { color: var(--red); }

/* Logged-in notice */
.mstp-comments-wrap .logged-in-as {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}
.mstp-comments-wrap .logged-in-as a { color: var(--blue); }

/* Comment form fields */
.mstp-comments-wrap .comment-form {
    display: grid;
    gap: 14px;
}
.mstp-comments-wrap .comment-form-comment,
.mstp-comments-wrap .comment-form-author,
.mstp-comments-wrap .comment-form-email,
.mstp-comments-wrap .comment-form-url {
    display: grid;
    gap: 5px;
}
.mstp-comments-wrap .comment-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}
.mstp-comments-wrap .comment-form input[type="text"],
.mstp-comments-wrap .comment-form input[type="email"],
.mstp-comments-wrap .comment-form input[type="url"],
.mstp-comments-wrap .comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}
.mstp-comments-wrap .comment-form input:focus,
.mstp-comments-wrap .comment-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,87,217,.08);
}
.mstp-comments-wrap .comment-form textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

/* Author/Email/URL – 2 col on desktop */
.mstp-comments-wrap .comment-form-author,
.mstp-comments-wrap .comment-form-email { display: grid; }

/* Submit button */
.mstp-comments-wrap .form-submit { margin: 0; }
.mstp-comments-wrap .form-submit #submit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 42px;
    padding: 0 26px;
    border: 0;
    border-radius: 7px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: background .15s;
}
.mstp-comments-wrap .form-submit #submit:hover { background: var(--blue-2); }

/* Required star */
.mstp-comments-wrap .required { color: var(--red); }
.mstp-comments-wrap .comment-notes {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .mstp-comments-wrap #comments,
    .mstp-comments-wrap #respond { padding: 18px 16px; }
    .mstp-comments-wrap .comment-list .children { padding-left: 24px; }
}

/* ── Related-info tabs: 2-column grid on mobile ─────────────────────── */
@media (max-width: 920px) {
    .mstp-related-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-bottom: none;
        border: 1px solid var(--border);
        border-radius: 10px;
        overflow: hidden;
    }
    .mstp-related-tabs button {
        height: 44px;
        padding: 0 8px;
        font-size: 12px;
        white-space: normal;
        line-height: 1.25;
        text-align: center;
        border-bottom: 2px solid transparent;
        border-right: 1px solid var(--border);
        border-radius: 0;
        flex-shrink: unset;
    }
    /* Remove right border from every 2nd column */
    .mstp-related-tabs button:nth-child(2n) {
        border-right: none;
    }
    /* Bottom border between rows */
    .mstp-related-tabs button:not(:nth-last-child(-n+2)) {
        border-bottom-color: var(--border);
    }
    /* Last item: if odd count, span full width */
    .mstp-related-tabs button:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        border-right: none;
        border-bottom: none;
    }
    .mstp-related-tabs .is-active {
        background: #eff6ff;
        color: var(--blue);
        font-weight: 700;
        border-bottom-color: var(--blue);
    }
}
