    :root {
        --sp: #1967d2;
        --sp-dk: #0f4099;
        --sp-lt: #eff6ff;
        --sg: #16a34a;
        --sg-lt: #f0fdf4;
        --stx: #111827;
        --stl: #6b7280;
        --sbr: #e5e7eb;
        --sbg: #f8fafc;
        --sw: #ffffff;
    }

    /* ── White header on this page ──────── */
    .site-header .main-bar,
    .site-header.header-style-3 .main-bar {
        background: #ffffff !important;
        box-shadow: 0 2px 12px rgba(15,23,42,0.08) !important;
    }
    .site-header.header-style-3 .header-nav .nav > li > a {
        color: #1f2937 !important;
    }
    .site-header.header-style-3 .header-nav .nav > li > a:hover {
        color: #1967d2 !important;
    }
    .site-header.header-style-3 .header-search a.header-search-icon {
        color: #1f2937 !important;
    }

    /* ── Hero ──────────────────────────── */
    .sh-hero {
        background: linear-gradient(135deg, #1452b8 0%, #0c3382 100%);
        padding: 120px 20px 52px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .sh-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .sh-hero-inner {
        position: relative;
        z-index: 1;
        max-width: 700px;
        margin: 0 auto;
    }
    .sh-hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255,255,255,0.12);
        color: rgba(255,255,255,0.9);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 999px;
        margin-bottom: 18px;
    }
    .sh-hero h1 {
        font-size: 36px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 14px;
        line-height: 1.2;
        letter-spacing: -0.5px;
    }
    .sh-hero-sub {
        color: rgba(255,255,255,0.78);
        font-size: 16px;
        margin-bottom: 0;
        line-height: 1.6;
    }
    .sh-hero-stats {
        display: flex;
        justify-content: center;
        gap: 32px;
        margin-top: 28px;
    }
    .sh-hero-stat {
        text-align: center;
    }
    .sh-hero-stat-num {
        font-size: 22px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        margin-bottom: 4px;
    }
    .sh-hero-stat-lbl {
        font-size: 11px;
        color: rgba(255,255,255,0.6);
        text-transform: uppercase;
        letter-spacing: 0.6px;
    }

    /* ── Filter bar ─────────────────────── */
    .sh-filter-bar {
        background: var(--sw);
        border-bottom: 1px solid var(--sbr);
        box-shadow: 0 4px 16px rgba(15,23,42,0.06);
        position: sticky;
        top: 0;
        z-index: 300;
    }
    .sh-filter-inner {
        max-width: 1140px;
        margin: 0 auto;
        padding: 16px 20px;
    }
    .sh-filter-tabs {
        display: flex;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .sh-filter-tabs::-webkit-scrollbar { display: none; }
    .sh-tab-btn {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 9px 16px;
        font-size: 13px;
        font-weight: 600;
        color: var(--stl);
        border: 1.5px solid var(--sbr);
        background: var(--sw);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.15s ease;
        white-space: nowrap;
    }
    .sh-tab-ico { font-size: 14px; opacity: 0.85; }
    .sh-tab-btn:hover { color: var(--sp); border-color: #93c5fd; background: var(--sp-lt); }
    .sh-tab-btn.is-open {
        color: var(--sp);
        border-color: var(--sp);
        background: var(--sp-lt);
    }
    .sh-tab-btn.has-value {
        color: var(--sp);
        border-color: var(--sp);
        background: var(--sp-lt);
    }
    .sh-tab-caret { font-size: 9px; opacity: 0.6; transition: transform 0.2s ease; }
    .sh-tab-btn.is-open .sh-tab-caret { transform: rotate(180deg); }
    .sh-tab-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        background: var(--sp);
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        border-radius: 999px;
    }
    .sh-reset-btn {
        margin-left: auto;
        flex-shrink: 0;
        padding: 9px 14px;
        font-size: 12px;
        font-weight: 600;
        color: #ef4444;
        border: 1.5px solid #fecaca;
        background: #fef2f2;
        border-radius: 10px;
        cursor: pointer;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: all 0.15s;
        text-decoration: none;
    }
    .sh-reset-btn:hover { color: #fff; background: #ef4444; border-color: #ef4444; text-decoration: none; }

    .sh-filter-panels {
        overflow: hidden;
    }
    .sh-filter-panel {
        display: none;
        margin-top: 14px;
        padding: 16px;
        background: var(--sbg);
        border: 1px solid var(--sbr);
        border-radius: 12px;
    }
    .sh-filter-panel.is-open { display: block; animation: shFade 0.2s ease; }
    @keyframes shFade {
        from { opacity: 0; transform: translateY(-4px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .sh-panel-head {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        color: #9ca3af;
        margin-bottom: 12px;
    }

    .sh-chip-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .sh-chip {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 7px 15px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 500;
        background: var(--sw);
        color: var(--stl);
        border: 1.5px solid var(--sbr);
        text-decoration: none;
        transition: all 0.15s ease;
        cursor: pointer;
        white-space: nowrap;
    }
    .sh-chip:hover {
        background: var(--sp-lt);
        color: var(--sp);
        border-color: #93c5fd;
        text-decoration: none;
        transform: translateY(-1px);
    }
    .sh-chip.is-active {
        background: var(--sp);
        color: #fff;
        border-color: var(--sp);
        box-shadow: 0 4px 12px rgba(25,103,210,0.3);
    }
    .sh-chip.is-active:hover {
        background: var(--sp-dk);
        border-color: var(--sp-dk);
        color: #fff;
    }
    .sh-chip-check {
        font-size: 11px;
        opacity: 0.85;
    }

    /* ── Active filter chips (single row) ── */
    .sh-active-filters {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-top: 12px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .sh-active-filters::-webkit-scrollbar { display: none; }
    .sh-active-label {
        flex-shrink: 0;
        font-size: 11px;
        color: #9ca3af;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .sh-active-pill {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--sp-lt);
        color: var(--sp);
        border: 1px solid #bfdbfe;
        border-radius: 999px;
        padding: 3px 6px 3px 11px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        line-height: 1.4;
    }
    .sh-active-pill:hover { text-decoration: none; color: var(--sp); border-color: #93c5fd; }
    .sh-active-pill-x {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: rgba(25,103,210,0.12);
        color: var(--sp);
        font-size: 11px;
        line-height: 1;
        transition: all 0.15s ease;
    }
    .sh-active-pill:hover .sh-active-pill-x { background: var(--sp); color: #fff; }

    /* ── Layout ─────────────────────────── */
    .sh-layout {
        max-width: 1140px;
        margin: 0 auto;
        padding: 28px 20px 60px;
        display: flex;
        gap: 28px;
        align-items: flex-start;
    }
    .sh-main { flex: 1; min-width: 0; }
    .sh-sidebar { width: 268px; flex-shrink: 0; }

    /* ── Alert boxes ────────────────────── */
    .sh-alert {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 13px 16px;
        border-radius: 10px;
        margin-bottom: 22px;
        font-size: 14px;
        line-height: 1.55;
    }
    .sh-alert-icon { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
    .sh-alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
    .sh-alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
    .sh-alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
    .sh-alert a { color: inherit; font-weight: 700; text-decoration: underline; }

    /* ── Section header ─────────────────── */
    .sh-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }
    .sh-section-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--stx);
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
    }
    .sh-count-badge {
        background: var(--sp);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 9px;
        border-radius: 999px;
    }

    /* ── Job cards ──────────────────────── */
    .sh-job-card {
        background: var(--sw);
        border: 1px solid var(--sbr);
        border-radius: 14px;
        padding: 20px 22px;
        margin-bottom: 12px;
        transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    }
    .sh-job-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(15,23,42,0.1);
        border-color: #a5b4fc;
    }
    .sh-job-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 10px;
    }
    .sh-job-name {
        font-size: 17px;
        font-weight: 700;
        color: var(--sp);
        margin: 0;
        line-height: 1.35;
        flex: 1;
    }
    .sh-job-type {
        flex-shrink: 0;
        font-size: 11px;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 6px;
        background: var(--sp-lt);
        color: var(--sp);
        letter-spacing: 0.3px;
        white-space: nowrap;
    }
    .sh-job-flags {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 6px;
        flex-shrink: 0;
    }
    .sh-flag {
        display: inline-flex;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
        padding: 2px 9px;
        border-radius: 5px;
        letter-spacing: 0.2px;
        white-space: nowrap;
        line-height: 1.4;
    }
    .sh-flag-remote {
        background: #dbeafe;
        color: #1d4ed8;
    }
    .sh-flag-freelance {
        background: #ede9fe;
        color: #6d28d9;
    }
    .sh-job-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
        margin-bottom: 12px;
    }
    .sh-meta-co {
        font-size: 13px;
        font-weight: 600;
        color: var(--stx);
    }
    .sh-meta-sep {
        color: #d1d5db;
        font-size: 12px;
    }
    .sh-meta-loc {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        background: #ecfdf5;
        color: #065f46;
        padding: 2px 9px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
    }
    .sh-meta-sal {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        background: #fffbeb;
        color: #78350f;
        padding: 2px 9px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
    }
    .sh-meta-exp,
    .sh-meta-vac {
        display: inline-flex;
        align-items: center;
        gap: 3px;
        padding: 2px 9px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.4;
        white-space: nowrap;
    }
    .sh-meta-exp {
        background: #ecfdf5;
        color: #047857;
    }
    .sh-meta-vac {
        background: #ffedd5;
        color: #c2410c;
    }
    .sh-job-desc {
        color: var(--stl);
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 16px;
    }
    .sh-job-foot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        padding-top: 14px;
        border-top: 1px solid #f3f4f6;
    }
    .sh-job-date {
        font-size: 12px;
        color: #9ca3af;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* ── Apply button ───────────────────── */
    .sh-apply-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background: var(--sp);
        color: #fff;
        border: 0;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 700;
        padding: 9px 22px;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.15s, transform 0.1s;
        letter-spacing: 0.2px;
    }
    .sh-apply-btn:hover {
        background: var(--sp-dk);
        color: #fff;
        text-decoration: none;
        transform: translateY(-1px);
    }

    /* ── No data ────────────────────────── */
    .sh-no-data {
        padding: 52px 24px;
        border: 2px dashed var(--sbr);
        border-radius: 14px;
        text-align: center;
        background: var(--sw);
    }
    .sh-no-data-icon { font-size: 52px; display: block; margin-bottom: 14px; }
    .sh-no-data h3 { font-size: 18px; font-weight: 700; color: var(--stx); margin-bottom: 6px; }
    .sh-no-data p { font-size: 14px; color: var(--stl); margin: 0; }

    /* ── Sidebar ────────────────────────── */
    .sh-sdb-card {
        background: var(--sw);
        border: 1px solid var(--sbr);
        border-radius: 14px;
        padding: 18px 20px;
        margin-bottom: 18px;
    }
    .sh-sdb-title {
        font-size: 13px;
        font-weight: 700;
        color: var(--stx);
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--sbr);
    }
    .sh-sdb-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px;
        border-radius: 8px;
        font-size: 13px;
        color: var(--stl);
        text-decoration: none;
        transition: all 0.12s ease;
    }
    .sh-sdb-link:hover { background: var(--sp-lt); color: var(--sp); text-decoration: none; }
    .sh-sdb-link.is-active { background: var(--sp-lt); color: var(--sp); font-weight: 600; }
    .sh-sdb-arrow { font-size: 14px; opacity: 0.4; }

    /* ── Pagination ─────────────────────── */
    .sh-pagination { margin-top: 24px; }

    /* ── Sign-in modal ──────────────────── */
    .sh-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15,23,42,0.6);
        justify-content: center;
        align-items: center;
        z-index: 9999;
        padding: 16px;
        backdrop-filter: blur(2px);
    }
    .sh-overlay.is-active { display: flex; }
    .sh-modal {
        width: 100%;
        max-width: 420px;
        background: var(--sw);
        border-radius: 16px;
        padding: 36px 28px 28px;
        position: relative;
        text-align: center;
        box-shadow: 0 24px 60px rgba(15,23,42,0.25);
    }
    .sh-modal-close {
        position: absolute;
        top: 14px; right: 16px;
        background: transparent; border: 0;
        font-size: 24px; color: #9ca3af; cursor: pointer;
        line-height: 1;
    }
    .sh-modal h2 { font-size: 22px; font-weight: 700; color: var(--stx); margin-bottom: 8px; }
    .sh-modal p  { font-size: 14px; color: var(--stl); margin-bottom: 22px; }
    .sh-modal-icon {
        width: 60px; height: 60px;
        background: var(--sp-lt);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 16px;
        font-size: 26px;
    }
    .sh-btn-primary {
        display: block;
        width: 100%;
        padding: 12px;
        background: var(--sp);
        color: #fff;
        border: 0;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        transition: background 0.15s;
        margin-bottom: 12px;
    }
    .sh-btn-primary:hover { background: var(--sp-dk); color: #fff; text-decoration: none; }
    .sh-btn-link {
        display: block;
        color: var(--sp);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-align: center;
    }
    .sh-btn-link:hover { color: var(--sp-dk); text-decoration: underline; }

    /* ── Responsive ─────────────────────── */
    @media (max-width: 960px) {
        .sh-sidebar { display: none; }
    }
    @media (max-width: 768px) {
        .sh-hero h1 { font-size: 26px; }
        .sh-hero-stats { gap: 20px; }
        .sh-hero-stat-num { font-size: 18px; }
        .sh-job-top { flex-direction: column; gap: 8px; }
    }
    @media (max-width: 480px) {
        .sh-hero { padding: 120px 16px 30px; }
        .sh-hero h1 { font-size: 22px; }
        .sh-hero-stats { gap: 16px; }
        .sh-layout { padding: 20px 14px 50px; }
        .sh-apply-btn { width: 100%; }
        .sh-job-foot { flex-direction: column; align-items: flex-start; }
    }

/* ── Local content engine + FAQ (sections 3 & 4) ── */
.seo-content-block {
    max-width: 860px;
    margin: 32px auto 8px;
    padding: 28px 28px 32px;
    background: #ffffff;
    border: 1px solid var(--sbr, #e5e7eb);
    border-radius: 14px;
}
.seo-content-block h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--stx, #111827);
    margin: 22px 0 12px;
}
.seo-content-block h3:first-child { margin-top: 0; }
.seo-paragraph {
    font-size: 15px;
    line-height: 1.75;
    color: var(--stl, #6b7280);
    margin: 0 0 8px;
}
.faq-item {
    border-top: 1px solid var(--sbr, #e5e7eb);
    padding: 16px 0;
}
.faq-item:last-child { padding-bottom: 0; }
.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--stx, #111827);
    margin-bottom: 6px;
}
.faq-a {
    font-size: 14px;
    line-height: 1.7;
    color: var(--stl, #6b7280);
}
@media (max-width: 640px) {
    .seo-content-block { margin: 20px 12px; padding: 20px; }
}

.sh-apply-btn.is-applied {
    background: #ecfdf5;
    color: #059669;
    border: 1.5px solid #a7f3d0;
    cursor: default;
    pointer-events: none;
}
.sh-apply-btn.is-applied::before {
    content: "\2713\00a0"; /* ✓ */
    font-weight: 700;
}

/* ── City fallback notice (type-only results, city not linked to jobs) ── */
.sh-city-fallback-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
}
.sh-city-fallback-notice i { font-size: 15px; flex-shrink: 0; }

/* ── Soft hero ── */
.sh-soft-hero {
    background: #eff6ff;
    border-bottom: 1px solid #dbeafe;
    padding: 132px 20px 28px;
}
.sh-soft-hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.sh-soft-hero-copy { flex: 1; min-width: 240px; }
.sh-soft-hero-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 8px;
}
.sh-soft-hero h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.25;
    letter-spacing: -0.3px;
}
.sh-soft-hero-intro {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #475569;
    max-width: 560px;
}
.sh-soft-hero-stats {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.sh-soft-stat {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    min-width: 108px;
    padding: 12px 14px;
    text-align: center;
}
.sh-soft-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1d4ed8;
    line-height: 1.2;
}
.sh-soft-stat-label {
    display: block;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
@media (max-width: 768px) {
    .sh-soft-hero { padding: 118px 14px 22px; }
    .sh-soft-hero h1 { font-size: 22px; }
    .sh-soft-hero-stats { width: 100%; }
    .sh-soft-stat { flex: 1; min-width: 0; }
}

/* ── Simple page header (replaces hero + filter bar) ── */
.sh-simple-head {
    max-width: 1180px;
    margin: 0 auto;
    padding: 140px 24px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.sh-simple-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--stx, #111827);
    margin: 0;
}
.sh-simple-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--stl, #6b7280);
    background: var(--sw, #fff);
    border: 1px solid var(--sbr, #e5e7eb);
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
@media (max-width: 640px) {
    .sh-simple-head { padding: 120px 14px 16px; }
    .sh-simple-title { font-size: 17px; }
}

.sh-inline-ad-slot {
    margin: 16px auto;
    max-width: 100%;
    position: relative;
    z-index: 0;
    text-align: center;
}
.sh-inline-ad-frame {
    display: block !important;
    box-sizing: border-box !important;
    position: relative;
    width: 300px !important;
    max-width: 100% !important;
    min-height: 250px !important;
    margin: 0 auto !important;
    background: transparent !important;
    border: 0 !important;
    overflow: hidden;
}
.sh-inline-ad {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (min-width: 1024px) {
    .sh-inline-ad-frame {
        width: 728px !important;
        min-height: 90px !important;
    }
}
