/*
 * Hastürk Soğutma — site overrides on top of CoolAir theme.
 *
 * Keep this file thin; it only adjusts brand colours, the sticky CTA,
 * and a few accessibility touches. Heavy theme styles live in the
 * untouched `style.css` and `coloring.css` files shipped with CoolAir.
 */
:root{
    --hsg-primary: #0b3b8c;
    --hsg-primary-2: #1463d8;
    --hsg-accent: #ffb300;
}

#topbar{background:var(--hsg-primary);}

/* Honour CoolAir's three-state header system instead of forcing one rule:
 *   • desktop + transparent  → see-through over the hero
 *   • desktop + .smaller     → solid white sticky bar after scroll
 *   • mobile  + .header-mobile → solid dark bar (CoolAir handles via JS)
 * The original style.css already covers all three; we only override the
 * .smaller colour to match our brand white (theme defaults to dark). */
header.transparent:not(.header-mobile):not(.smaller){background:transparent;}
header.transparent.smaller:not(.header-mobile){background:#fff;box-shadow:0 4px 22px rgba(0,0,0,.06);}
header.transparent:not(.header-mobile):not(.smaller) #mainmenu > li > a.menu-item{
    text-shadow:0 2px 10px rgba(3,10,24,.38);
}
header.transparent:not(.header-mobile):not(.smaller) #mainmenu > li:hover > a.menu-item,
header.transparent:not(.header-mobile):not(.smaller) #mainmenu > li > a.menu-item:hover,
header.transparent:not(.header-mobile):not(.smaller) #mainmenu > li > a.menu-item.active{
    color:var(--hsg-accent) !important;
}
header .menu_side_area .btn-main{white-space:nowrap;}
.btn-main{background:var(--hsg-accent);color:#0b1220;}
.btn-main:hover{filter:brightness(1.05);}

/* Frontend subheader readability layer: dark transparent top gradient behind
 * the header, matching the old hero look without changing hero height. */
#subheader::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:138px;
    z-index:3;
    pointer-events:none;
    background:linear-gradient(180deg, rgba(5,18,42,.62), rgba(5,18,42,.22) 58%, rgba(5,18,42,0));
}
#subheader > .container{
    position:relative;
    z-index:1000;
}
#subheader .de-overlay{
    z-index:2;
    background:rgba(8,24,52,.44);
}

/* Hero stat — single-stat heroes converted +18% in the 2026 study */
.hsg-hero-stat{display:flex;flex-direction:column;align-items:flex-start;}
.hsg-hero-stat .stat-num{font-size:64px;font-weight:800;color:var(--hsg-primary);line-height:1;}
.hsg-hero-stat .stat-label{font-size:18px;color:#475569;margin-top:8px;}

/* Service / sector cards */
.hsg-card{background:#fff;border-radius:16px;padding:28px;box-shadow:0 6px 24px rgba(11,59,140,.06);transition:.2s;display:block;color:inherit;}
.hsg-card:hover{transform:translateY(-3px);box-shadow:0 14px 38px rgba(11,59,140,.12);text-decoration:none;color:inherit;}
.hsg-card h3{font-size:22px;margin-bottom:8px;}
.hsg-card p{color:#475569;margin-bottom:0;}
.hsg-card .icon{width:54px;height:54px;border-radius:12px;background:rgba(11,59,140,.08);display:flex;align-items:center;justify-content:center;margin-bottom:16px;color:var(--hsg-primary);font-size:22px;}

/* Breadcrumb */
.hsg-breadcrumb{padding:14px 0;font-size:14px;color:#64748b;}
.hsg-breadcrumb a{color:#64748b;}
.hsg-breadcrumb a:hover{color:var(--hsg-primary);}

/* Footer overrides */
footer.dark-scheme{background:#0b1220;color:#cbd5e1;}
footer.dark-scheme h4,footer.dark-scheme h5{color:#fff;}
footer.dark-scheme a{color:#cbd5e1;}
footer.dark-scheme a:hover{color:#fff;}
.footer-brand-logo{display:block;margin-bottom:0;}
.subfooter .de-flex{gap:18px;align-items:center;}
.footer-ad-credit a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:5px 12px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:999px;
    color:#dbeafe;
    font-size:14px;
    font-weight:600;
    line-height:1.35;
    background:rgba(255,255,255,.04);
}
.footer-ad-credit a:hover{
    color:#fff;
    border-color:rgba(255,179,0,.55);
    background:rgba(255,179,0,.10);
}
@media (max-width:767.98px){
    .subfooter{text-align:center;}
    .subfooter .de-flex{
        display:flex !important;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:12px;
    }
    .subfooter .de-flex > .de-flex-col{
        display:flex !important;
        width:100%;
        justify-content:center;
        align-items:center;
    }
    .subfooter .menu-simple{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:8px 18px;
        width:100%;
        margin-top:0;
    }
    .subfooter .menu-simple li{margin:0;}
    .footer-ad-credit{margin-top:0;order:3;}
    .footer-ad-credit a{
        max-width:100%;
        padding:5px 11px;
        font-size:12px;
        line-height:1.25;
        opacity:.92;
    }
}

/* ----------------------------------------------------------------
 * CAPTCHA widget
 * ---------------------------------------------------------------- */
.captcha-group { margin-bottom: 4px; }
.captcha-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}
.captcha-display img {
    border: 1px solid #c9d4e0;
    border-radius: 8px;
    display: block;
    background: #f0f4fa;
}
.captcha-refresh-btn {
    background: transparent;
    border: 1px solid #c9d4e0;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: var(--hsg-primary);
    transition: background .15s, border-color .15s;
    flex-shrink: 0;
}
.captcha-refresh-btn:hover {
    background: rgba(11,59,140,.08);
    border-color: var(--hsg-primary);
}
.captcha-group .form-control.is-invalid { border-color: #dc3545; }

/* ----------------------------------------------------------------
 * Active menu link visibility on the mobile dark header.
 * CoolAir defaults to `color: var(--primary-color)` which happens
 * to match our dark navy header background — so the active page
 * link disappears against it. Swap to the brand accent (amber)
 * only inside the mobile menu where the background is dark.
 * ---------------------------------------------------------------- */
header.header-mobile #mainmenu li a.menu-item.active,
header.header-mobile #mainmenu li a.active {
    color: var(--hsg-accent) !important;
}
#menu-btn:focus-visible {
    outline: 2px solid var(--hsg-accent);
    outline-offset: 3px;
}
.skip-to-content:focus,
.skip-to-content:focus-visible {
    position: fixed !important;
    top: 12px;
    left: 12px;
    z-index: 10000;
    width: auto !important;
    height: auto !important;
    padding: 10px 14px;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    background: var(--hsg-accent);
    color: #0b1220;
    border-radius: 8px;
    font-weight: 700;
}

/* ----------------------------------------------------------------
 * Header Search — anchor the overlay to the right side of the
 * header bar. `.menu_side_area` is the flex row that contains the
 * toggle button; giving it `position:relative` lets the absolute
 * dropdown attach to it on desktop without affecting the layout.
 * ---------------------------------------------------------------- */
.menu_side_area { position: relative; }

/* ----------------------------------------------------------------
 * Header Search — toggle button
 * ---------------------------------------------------------------- */
.hsg-search-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 6px 8px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------------------------------------------
 * Header Search — overlay / dropdown
 *
 * Desktop (≥ 768 px): compact dropdown anchored below the toggle.
 * Mobile  (< 768 px): full-width bar pinned to the very top of the
 *                     viewport so it never overlaps the hero section.
 * ---------------------------------------------------------------- */

/* Overlay wrapper — hidden by default */
.hsg-search-overlay {
    /* layout */
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 300px;
    /* visual */
    background: #fff;
    border: 1px solid #dde3ec;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(11,59,140,.12);
    padding: 10px 12px;
    /* animation */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    /* stacking — above hero but below mobile nav drawer */
    z-index: 1050;
}
/* Show state */
.hsg-search-overlay.hsg-search-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Inner flex row: input + submit + close */
.hsg-search-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hsg-search-form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 6px;
    margin: 0;
}
.hsg-search-form .form-control {
    flex: 1;
    border-radius: 6px;
    border: 1px solid #c8d4e8;
    padding: 7px 12px;
    font-size: 14px;
}
.hsg-search-submit {
    background: var(--hsg-primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 14px;
    cursor: pointer;
    transition: background .15s;
    flex-shrink: 0;
}
.hsg-search-submit:hover { background: var(--hsg-primary-2); }

.hsg-search-close {
    background: none;
    border: none;
    color: #64748b;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
    font-size: 16px;
    flex-shrink: 0;
    border-radius: 4px;
    transition: color .15s, background .15s;
}
.hsg-search-close:hover { color: #0b3b8c; background: rgba(11,59,140,.07); }

/* ----------------------------------------------------------------
 * Mobile overrides (< 768 px)
 * Turn the dropdown into a fixed full-width bar at the top of the
 * viewport. This keeps it completely outside the document flow so
 * it can never push or overlap the hero section.
 * ---------------------------------------------------------------- */
@media (max-width: 767px) {
    .hsg-search-overlay {
        /* Reset dropdown positioning */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
        border-radius: 0 0 12px 12px;
        border-top: none;
        border-left: none;
        border-right: none;
        /* Sits above everything including the mobile nav */
        z-index: 9999;
        padding: 12px 16px;
        /* Slide down from top instead of dropdown fade */
        transform: translateY(-100%);
    }
    .hsg-search-overlay.hsg-search-active {
        transform: translateY(0);
    }
    .hsg-search-form .form-control {
        font-size: 16px; /* prevents iOS zoom-in on focus */
    }
}

/* ================================================================
 * ARAMA SONUÇLARI SAYFASI
 * /arama?q=...
 * ================================================================ */

/* ── Sayfa başlığı ── */
.hsg-search-header {
    position: relative;
    overflow: hidden;
    padding: 190px 0 72px;
    background:
        radial-gradient(circle at 18% 20%, rgba(20,99,216,.38), transparent 34%),
        linear-gradient(135deg, #071a3d 0%, #0b3b8c 58%, #1463d8 100%);
}
.hsg-search-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}
.hsg-search-header > .container {
    position: relative;
    z-index: 1;
}
.hsg-search-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 10px;
}
.hsg-search-headline {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.18;
    margin-bottom: 18px;
}
.hsg-search-term-hero {
    color: var(--hsg-accent);
}
.hsg-search-count-hero {
    color: var(--hsg-accent);
}
.hsg-search-subline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}
.hsg-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}
.hsg-pill-service { background: rgba(20,99,216,.35); color: #a8c8ff; }
.hsg-pill-blog    { background: rgba(16,185,129,.35); color: #a7f3d0; }
.hsg-pill-brand   { background: rgba(245,158,11,.35);  color: #fde68a; }

/* ── Arama formu ── */
.hsg-search-form-section {
    padding: 0;
    margin-top: -32px;
    position: relative;
    z-index: 10;
}
.hsg-search-page-form {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(11,59,140,.14);
    padding: 10px 10px 10px 0;
}
.hsg-search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}
.hsg-search-icon-left {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
}
.hsg-search-page-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 14px 40px 14px 46px;
    font-size: 16px;
    background: transparent;
    color: #1e293b;
}
.hsg-search-page-input::placeholder { color: #94a3b8; }
.hsg-search-clear-btn {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    text-decoration: none;
    padding: 4px 6px;
    border-radius: 4px;
    transition: color .15s, background .15s;
}
.hsg-search-clear-btn:hover { color: #64748b; background: #f1f5f9; }
.hsg-search-page-btn {
    flex-shrink: 0;
    background: var(--hsg-primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 26px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 50px;
}
.hsg-search-page-btn:hover  { background: var(--hsg-primary-2); }
.hsg-search-page-btn.loading .hsg-search-btn-text { display: none; }
.hsg-search-spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hsg-spin .7s linear infinite;
}
.hsg-search-page-btn.loading .hsg-search-spinner { display: block; }

@keyframes hsg-spin { to { transform: rotate(360deg); } }

/* ── Sonuçlar bölümü ── */
.hsg-results-section {
    padding-top: 40px;
}

/* ── Kategori sekmeleri ── */
.hsg-tab-bar {
    display: flex;
    gap: 4px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 28px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.hsg-tab-bar::-webkit-scrollbar { display: none; }

.hsg-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    border-radius: 6px 6px 0 0;
    transition: color .18s, border-color .18s, background .18s;
}
.hsg-tab:hover { color: var(--hsg-primary); background: rgba(11,59,140,.04); }
.hsg-tab.active {
    color: var(--hsg-primary);
    border-bottom-color: var(--hsg-primary);
    background: rgba(11,59,140,.04);
}
.hsg-tab-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    background: #e2e8f0;
    color: #475569;
    transition: background .18s, color .18s;
}
.hsg-tab.active .hsg-tab-badge { background: var(--hsg-primary); color: #fff; }
.hsg-badge-service { background: rgba(20,99,216,.12); color: var(--hsg-primary-2); }
.hsg-badge-blog    { background: rgba(16,185,129,.12); color: #059669; }
.hsg-badge-brand   { background: rgba(245,158,11,.12);  color: #d97706; }
.hsg-tab.active .hsg-badge-service,
.hsg-tab.active .hsg-badge-blog,
.hsg-tab.active .hsg-badge-brand {
    background: var(--hsg-primary);
    color: #fff;
}

/* ── Sonuç kartları ── */
.hsg-results-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hsg-result-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e8edf5;
    border-bottom: none;
    transition: background .18s, box-shadow .18s, transform .18s;
}
.hsg-result-card:first-child { border-radius: 12px 12px 0 0; }
.hsg-result-card:last-child  { border-radius: 0 0 12px 12px; border-bottom: 1px solid #e8edf5; }
.hsg-result-card:only-child  { border-radius: 12px; border-bottom: 1px solid #e8edf5; }
.hsg-result-card:hover {
    background: #f8faff;
    box-shadow: 0 4px 20px rgba(11,59,140,.07);
    z-index: 1;
    position: relative;
}

/* Badge */
.hsg-result-badge {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 2px;
}
.hsg-result-badge.hsg-badge-service { background: rgba(20,99,216,.1);  color: var(--hsg-primary-2); }
.hsg-result-badge.hsg-badge-blog    { background: rgba(16,185,129,.1); color: #059669; }
.hsg-result-badge.hsg-badge-brand   { background: rgba(245,158,11,.1);  color: #b45309; }

/* Body */
.hsg-result-body {
    flex: 1;
    min-width: 0;
}
.hsg-result-meta {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 5px;
}
.hsg-result-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.35;
}
.hsg-result-link {
    color: #1e293b;
    text-decoration: none;
    transition: color .15s;
}
.hsg-result-link:hover {
    color: var(--hsg-primary);
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}
.hsg-result-excerpt {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Action button */
.hsg-result-action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 8px;
    background: rgba(11,59,140,.07);
    color: var(--hsg-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s, color .18s;
    align-self: center;
}
.hsg-result-action:hover {
    background: var(--hsg-primary);
    color: #fff;
    text-decoration: none;
}

/* ── Highlight (arama terimi) ── */
.hsg-highlight,
mark.hsg-highlight {
    background: #fef08a;
    color: #713f12;
    border-radius: 3px;
    padding: 0 2px;
}

/* ── Boş durum ── */
.hsg-empty-state {
    max-width: 520px;
    margin: 40px auto 0;
    text-align: center;
    padding: 40px 24px 60px;
}
.hsg-empty-icon {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #94a3b8;
}
.hsg-empty-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}
.hsg-empty-desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 28px;
}
.hsg-empty-tips {
    background: #f8fafc;
    border-radius: 12px;
    padding: 18px 24px;
    text-align: left;
    margin-bottom: 24px;
}
.hsg-tips-title {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 10px;
}
.hsg-tips-list {
    margin: 0;
    padding-left: 18px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.8;
}
.hsg-empty-links { margin-top: 12px; }
.hsg-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}
.hsg-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .18s, color .18s, background .18s;
}
.hsg-quick-link:hover {
    border-color: var(--hsg-primary);
    color: var(--hsg-primary);
    background: rgba(11,59,140,.04);
    text-decoration: none;
}

/* ── Fade-in animasyon (stagger) ── */
@keyframes hsg-reveal {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hsg-reveal {
    animation: hsg-reveal .45s ease both;
    animation-delay: var(--delay, 0s);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .hsg-search-header {
        padding: 118px 0 48px;
    }
    .hsg-search-page-form {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
    }
    .hsg-search-page-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
    .hsg-result-card {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
    }
    .hsg-result-action {
        width: 100%;
        justify-content: center;
    }
    .hsg-result-badge {
        align-self: auto;
        margin-top: 0;
    }
    .hsg-tab {
        padding: 10px 14px;
        font-size: 13px;
    }
    .hsg-search-headline {
        font-size: clamp(22px, 6vw, 32px);
    }
}


/* ────────────────────────────────────────────────────────────────────
   IMG / PICTURE inside Bootstrap .ratio wrappers
   Bootstrap forces all .ratio > * to position:absolute / width:100% /
   height:100%, but doesn't set object-fit on <img>. The default
   object-fit:fill stretches the image to the box's aspect ratio,
   which visibly distorts service hero photos that don't match 16:9
   exactly (e.g. AI-generated 1536×1024 @ 3:2). Cover crops cleanly
   instead.
   ──────────────────────────────────────────────────────────────────── */
.ratio > picture,
.ratio > picture > img,
.ratio > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ----------------------------------------------------------------
 * Frontend pagination
 * CoolAir's base theme paints pagination links white for dark sections.
 * Blog/category list pages render them on a white background, so keep the
 * numbers and previous/next links readable across public list pages.
 * ---------------------------------------------------------------- */
main .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-left: 0;
    margin: 0;
}
main .pagination .page-item {
    margin: 0;
}
main .pagination .page-link,
main .pagination .page-link:visited {
    float: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 10px 16px;
    color: var(--hsg-primary) !important;
    background: #ffffff !important;
    border: 1px solid #d7dee8 !important;
    border-radius: 6px !important;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
    transition: color .18s, background .18s, border-color .18s, box-shadow .18s;
}
main .pagination .page-link:hover,
main .pagination .page-link:focus {
    color: #ffffff !important;
    background: var(--hsg-primary) !important;
    border-color: var(--hsg-primary) !important;
    box-shadow: 0 8px 20px rgba(11, 59, 140, .16);
}
main .pagination .page-item.active .page-link,
main .pagination .page-item.active .page-link:visited,
main .pagination .page-link.active {
    color: #ffffff !important;
    background: var(--hsg-primary-2) !important;
    border-color: var(--hsg-primary-2) !important;
    box-shadow: 0 8px 20px rgba(20, 99, 216, .18);
}
main .pagination .page-item.disabled .page-link,
main .pagination .page-item.disabled .page-link:visited {
    color: #64748b !important;
    background: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    box-shadow: none;
    opacity: 1;
}
