:root {
    --bg: #f4f7fb;
    --ink: #102239;
    --muted: #5a6c83;
    --brand: #0f8d86;
    --brand-deep: #0a6771;
    --accent: #ffbd5f;
    --card: #ffffff;
    --line: #d9e4f0;
    --soft: #eef5fb;
    --shadow: 0 12px 34px rgba(14, 30, 49, 0.08);
}

* {
    box-sizing: border-box;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

body.site-body {
    margin: 0;
    color: var(--ink);
    font-family: 'Manrope', 'Hind Siliguri', sans-serif;
    background:
        radial-gradient(940px 360px at 12% -8%, rgba(15, 141, 134, 0.15), transparent 45%),
        radial-gradient(760px 320px at 88% -10%, rgba(255, 189, 95, 0.16), transparent 50%),
        var(--bg);
    min-height: 100vh;
}

.home-main,
.post-main {
    position: relative;
}

.home-main::before,
.post-main::before {
    content: '';
    position: absolute;
    inset: 1rem auto auto 0;
    width: min(68vw, 620px);
    height: 230px;
    background: radial-gradient(circle at 18% 28%, rgba(15, 141, 134, 0.1), transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.home-main > .container,
.post-main > .container {
    position: relative;
    z-index: 1;
}

.site-header {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(216, 227, 239, 0.95);
}

.mobile-menu-panel {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, opacity 0.22s ease;
}

.mobile-menu-panel.is-open {
    max-height: 24rem;
    opacity: 1;
    pointer-events: auto;
}

.menu-icon {
    width: 1.2rem;
    height: 1rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon-line {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.menu-toggle.is-active .menu-icon-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-icon-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-icon-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.78rem;
    background: linear-gradient(145deg, var(--brand), var(--brand-deep));
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 20px rgba(10, 103, 113, 0.28);
}

.brand-title {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.site-nav-link {
    color: #213854;
    font-weight: 700;
    position: relative;
    transition: color 0.2s ease;
}

.site-nav-link:hover {
    color: var(--brand);
}

.site-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.42rem;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s ease;
}

.site-nav-link:hover::after {
    transform: scaleX(1);
}

.hero-panel {
    background:
        radial-gradient(circle at 86% 12%, rgba(255, 189, 95, 0.32), transparent 42%),
        linear-gradient(132deg, rgba(15, 141, 134, 0.98), rgba(10, 103, 113, 0.97));
    color: #f3fbfd;
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: auto -18% -32% auto;
    width: 52%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 68%);
    transform: rotate(-11deg);
    pointer-events: none;
}

.hero-panel > * {
    position: relative;
    z-index: 1;
}

.motif-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0) 34%),
        repeating-linear-gradient(138deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 16px);
    opacity: 0.35;
    pointer-events: none;
}

.hero-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 252, 255, 0.86);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.62rem;
}

.hero-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.2rem;
    padding: 0.5rem 0.9rem;
    border-radius: 0.72rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-action-btn:hover {
    transform: translateY(-1px);
}

.hero-action-btn-primary {
    background: #ffffff;
    color: #0a6670;
    box-shadow: 0 8px 20px rgba(6, 56, 62, 0.2);
}

.hero-action-btn-primary:hover {
    background: #f3fcfe;
}

.hero-action-btn-ghost {
    background: rgba(6, 56, 62, 0.22);
    color: #ecfbff;
    border-color: rgba(220, 247, 252, 0.45);
}

.hero-action-btn-ghost:hover {
    background: rgba(6, 56, 62, 0.34);
}

.filter-bar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 6px 16px rgba(14, 30, 49, 0.05);
}

.filter-bar-premium {
    position: relative;
    overflow: hidden;
}

.filter-bar-premium::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), #33a4a0, var(--accent));
}

.filter-input {
    border: 1px solid #d1dfec;
    border-radius: 0.62rem;
    padding: 0.62rem 0.78rem;
    font-size: 0.86rem;
    color: #24364f;
    background: #fff;
}

.filter-input:focus {
    outline: none;
    border-color: #8ec4cb;
    box-shadow: 0 0 0 3px rgba(15, 141, 134, 0.14);
}

.job-card {
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 7px 20px rgba(14, 30, 49, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    background: #fff;
}

.card-motif {
    position: relative;
}

.card-motif::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(15, 141, 134, 0.9), rgba(255, 189, 95, 0.78));
    transform: scaleX(0.42);
    transform-origin: left;
    transition: transform 0.24s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(14, 30, 49, 0.15);
    border-color: #bcd3e8;
}

.card-motif:hover::before {
    transform: scaleX(1);
}

.deadline-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.23rem 0.58rem;
}

.deadline-chip.open {
    background: #e8fbef;
    color: #166534;
    border: 1px solid #b7efc7;
}

.deadline-chip.closed {
    background: #fff1f0;
    color: #b42318;
    border: 1px solid #ffd7d4;
}

.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #ecf8fa;
    color: #0d6177;
    border: 1px solid #c7e2e6;
    border-radius: 9999px;
    padding: 0.28rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
}

.job-actions {
    display: flex;
    gap: 0.46rem;
    flex-wrap: wrap;
}

.job-thumb-wrap {
    position: relative;
}

.job-actions-float {
    position: absolute;
    inset: 0;
    z-index: 4;
    margin: 0;
    width: 100%;
    height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
    pointer-events: none;
}

.job-actions-float .save-btn,
.job-actions-float .compare-btn {
    position: absolute;
    top: 0.54rem;
    flex: 0 0 auto;
    white-space: nowrap;
    background: #f8fbff;
    border-color: #c8d7e8;
    color: #1e3854;
    padding: 0.34rem 0.58rem;
    border-radius: 999px;
    box-shadow: 0 3px 10px rgba(14, 30, 49, 0.06);
    pointer-events: auto;
}

.job-actions-float .save-btn {
    left: 0.54rem;
}

.job-actions-float .compare-btn {
    right: 0.54rem;
}

.save-btn,
.compare-btn {
    border: 1px solid #d3deea;
    background: #f8fbff;
    color: #2b405b;
    border-radius: 999px;
    padding: 0.42rem 0.72rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.save-btn:hover,
.compare-btn:hover {
    border-color: #afc7de;
    background: #eff6ff;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(14, 30, 49, 0.09);
}

.save-btn.is-saved {
    background: #e6fffb;
    border-color: #8de8d6;
    color: #0f766e;
}

.compare-btn.is-selected {
    background: #e9f5ff;
    border-color: #9dd0ff;
    color: #0b63b6;
}

.btn-primary-soft {
    background: linear-gradient(130deg, var(--brand), var(--brand-deep));
    box-shadow: 0 7px 18px rgba(10, 103, 113, 0.24);
}

.btn-primary-soft:hover {
    filter: brightness(1.06);
}

.btn-primary-soft:disabled {
    opacity: 0.56;
    cursor: not-allowed;
}

.btn-secondary-soft {
    background: linear-gradient(135deg, #2f7d32, #1f5d21);
}

.btn-secondary-soft:hover {
    filter: brightness(1.06);
}

.compare-toolbar {
    position: sticky;
    bottom: 0.58rem;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #dbe7f2;
    border-radius: 0.85rem;
    padding: 0.68rem 0.82rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 24px rgba(16, 24, 40, 0.09);
}

.compare-toolbar-premium {
    position: sticky;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 252, 0.98));
}

.compare-toolbar-premium::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand), var(--accent));
}

.compare-toolbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.compare-clear-btn {
    border: 1px solid #cfddeb;
    color: #2d455f;
    background: linear-gradient(180deg, #ffffff, #f3f8fd);
    box-shadow: 0 4px 10px rgba(14, 30, 49, 0.07);
}

.compare-clear-btn:hover:not(:disabled) {
    border-color: #9fc5df;
    color: #153f67;
    background: linear-gradient(180deg, #ffffff, #eaf4fe);
}

.compare-clear-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.pagination-shell {
    position: relative;
    display: flex;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0.75rem;
    border: 1px solid #d7e4ef;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 252, 0.95));
    box-shadow: 0 12px 26px rgba(14, 30, 49, 0.08);
}

.pagination-shell-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pager-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #d2deea;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #f6faff);
    color: #334155;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px rgba(14, 30, 49, 0.06);
    text-align: center;
}

.pager-link:hover {
    transform: translateY(-1px);
    border-color: #9ccfcb;
    box-shadow: 0 10px 18px rgba(14, 30, 49, 0.10);
}

.pager-link.is-active {
    background: linear-gradient(135deg, #0f8d86, #0a6d68);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 12px 22px rgba(10, 109, 104, 0.28);
    transform: translateY(-1px) scale(1.02);
}

.pager-nav {
    min-width: 5rem;
}

.pager-ellipsis {
    user-select: none;
    line-height: 1;
    color: #94a3b8;
}

.highlight-mark {
    background: #fff3b0;
    color: #5a4300;
    border-radius: 0.25rem;
    padding: 0 0.18rem;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes badgeGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(15, 141, 134, 0.24);
    }
    60% {
        box-shadow: 0 0 0 7px rgba(15, 141, 134, 0);
    }
}

@keyframes markPulse {
    0%,
    100% {
        background-color: #fff3b0;
    }
    50% {
        background-color: #ffe68d;
    }
}

.search-main .highlight-mark {
    animation: markPulse 1.9s ease-in-out infinite;
}

.search-result-card,
.related-card {
    position: relative;
}

.search-result-card::before,
.related-card::before {
    position: absolute;
    top: 0.72rem;
    right: 0.72rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    padding: 0.2rem 0.48rem;
    border-radius: 999px;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f5259;
    border: 1px solid rgba(15, 141, 134, 0.32);
    background: linear-gradient(180deg, rgba(231, 250, 247, 0.94), rgba(214, 246, 240, 0.94));
    animation: badgeFloat 2.3s ease-in-out infinite, badgeGlow 2.3s ease-in-out infinite;
}

.search-result-card::before {
    content: 'Match';
}

.related-card::before {
    content: 'Related';
}

.sidebar-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 7px 20px rgba(14, 30, 49, 0.07);
}

.sidebar-motif .sidebar-section {
    position: relative;
    overflow: hidden;
}

.sidebar-motif .sidebar-section::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 52px;
    height: 52px;
    border-radius: 0 0 18px 0;
    background: radial-gradient(circle at 30% 30%, rgba(15, 141, 134, 0.16), rgba(15, 141, 134, 0.02));
}

.sidebar-section-latest .latest-item img {
    border: 1px solid #d7e3ef;
    box-shadow: 0 4px 12px rgba(14, 30, 49, 0.08);
}

.sidebar-section-categories .category-link {
    background: linear-gradient(180deg, #f8fbfe, #f2f8fd);
}

.sidebar-section-stats {
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.sidebar-input {
    border: 1px solid #ccd8e6;
    border-right: none;
    border-radius: 0.62rem 0 0 0.62rem;
    background: #fff;
}

.sidebar-input:focus {
    outline: none;
    border-color: #85b8be;
    box-shadow: inset 0 0 0 1px #85b8be;
}

.sidebar-search-btn {
    border-radius: 0 0.62rem 0.62rem 0;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.sidebar-search-btn:hover {
    filter: brightness(1.06);
}

.latest-link {
    color: #1b2c42;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
}

.latest-link:hover {
    color: var(--brand);
}

.category-link {
    display: block;
    padding: 0.56rem 0.72rem;
    border-radius: 0.55rem;
    border: 1px solid #d7e2ef;
    background: #f6f9fc;
    color: #2a3f5b;
    font-size: 0.86rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.category-link:hover {
    border-color: #acd7dc;
    background: #ebf8f9;
    color: var(--brand-deep);
}

.chart-toggle {
    display: none;
}

.chart-panel {
    display: block;
}

.chart-canvas-shell {
    position: relative;
    width: 100%;
    min-height: 160px;
}

.chart-panel canvas {
    display: block;
    width: 100% !important;
    height: 160px !important;
}

.detail-article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(13, 22, 36, 0.08);
}

.detail-article-premium {
    position: relative;
    overflow: hidden;
}

.detail-article-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 70% 30%, rgba(15, 141, 134, 0.14), transparent 66%);
    pointer-events: none;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f3f8fc;
    border: 1px solid #d6e3ef;
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    font-size: 0.78rem;
    color: #47607b;
    font-weight: 700;
}

.info-grid {
    background: #f9fbfd;
    border: 1px solid #e2ebf5;
    border-radius: 0.9rem;
}

.info-grid-premium > div {
    padding-left: 0.78rem;
    border-left: 3px solid rgba(15, 141, 134, 0.14);
}

.info-grid-premium > div:nth-child(2n) {
    border-left-color: rgba(255, 189, 95, 0.35);
}

.info-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5d738b;
}

.detail-content {
    color: #27374d;
    line-height: 1.78;
    overflow-wrap: anywhere;
}

.detail-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1rem auto;
    border-radius: 0.85rem;
    object-fit: contain;
}

.detail-content figure {
    max-width: 100%;
    margin: 1rem 0;
}

.detail-content figure img {
    margin: 0;
}

.detail-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.detail-content iframe {
    width: 100%;
    max-width: 100%;
}

.tag-chip {
    border: 1px solid #d5e2ef;
    background: linear-gradient(180deg, #f5f9fd, #edf4fb);
    color: #2f455f;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.site-footer {
    margin-top: 3.5rem;
    background:
        radial-gradient(circle at 12% 4%, rgba(15, 141, 134, 0.2), transparent 38%),
        #0b1b2e;
    color: #d9e6ff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-link {
    color: #c8d8f5;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.site-footer .text-white,
.site-footer .text-blue-100,
.site-footer .text-blue-200\/90,
.site-footer .text-blue-200 {
    color: #d9e6ff !important;
}

.site-footer .border-blue-900\/60 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.site-footer .footer-link {
    color: #c9d8f3 !important;
}

.site-footer .footer-link:hover {
    color: #ffffff !important;
}

.reveal-up {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 1.1rem;
    }

    .hero-panel {
        border-radius: 0.94rem;
    }

    .hero-action-btn {
        min-height: 2.1rem;
        border-radius: 0.66rem;
        padding: 0.46rem 0.78rem;
    }

    .job-card {
        border-radius: 0.9rem;
    }

    .site-footer {
        margin-top: 2.5rem;
    }

    .detail-article {
        border-radius: 0.85rem;
    }

    .meta-pill {
        width: 100%;
        justify-content: flex-start;
    }

    .home-main::before,
    .post-main::before {
        height: 170px;
        width: min(86vw, 440px);
    }

    .sidebar-motif .sidebar-section::before {
        width: 42px;
        height: 42px;
    }

    body.mobile-menu-open {
        overflow: auto;
    }
}

@media (max-width: 640px) {
    .site-header .container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .section-chip {
        font-size: 0.68rem;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-action-btn {
        font-size: 0.74rem;
    }

    .filter-bar {
        border-radius: 0.86rem;
    }

    .job-actions {
        width: 100%;
    }

    .save-btn,
    .compare-btn {
        flex: 0 0 auto;
        text-align: center;
    }

    .job-actions-float {
        height: 0;
    }

    .job-actions-float .save-btn,
    .job-actions-float .compare-btn {
        padding: 0.28rem 0.5rem;
        font-size: 0.68rem;
    }

    .job-actions-float .save-btn {
        left: 0.44rem;
        top: 0.44rem;
    }

    .job-actions-float .compare-btn {
        right: 0.44rem;
        top: 0.44rem;
    }

    .compare-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }

    .compare-toolbar-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .compare-toolbar-premium::before {
        width: 100%;
        height: 3px;
        inset: 0 0 auto 0;
    }

    .pager-link {
        min-height: 2.55rem;
        min-width: 2.55rem;
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .pager-nav {
        min-width: 4.4rem;
    }

    .chart-toggle {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
        margin-bottom: 0.7rem;
    }

    .chart-toggle-btn {
        border: 1px solid #cbd5e1;
        background: #f8fafc;
        color: #334155;
        font-size: 0.72rem;
        font-weight: 700;
        border-radius: 0.55rem;
        padding: 0.45rem 0.55rem;
    }

    .chart-toggle-btn.is-active {
        border-color: var(--brand);
        background: #e7f7f5;
        color: var(--brand-deep);
    }

    .chart-panel {
        display: none;
    }

    .chart-panel.is-active {
        display: block;
    }

    .chart-canvas-shell {
        min-height: 150px;
    }

    .chart-panel canvas {
        height: 150px !important;
    }

    .site-footer .container {
        padding-top: 2.05rem;
        padding-bottom: 1.9rem;
    }

    .site-footer h2 {
        font-size: 1.24rem;
        line-height: 1.25;
    }

    .site-footer h3 {
        font-size: 0.72rem;
        letter-spacing: 0.09em;
    }

    .site-footer p,
    .site-footer li,
    .site-footer a {
        font-size: 0.82rem;
        line-height: 1.55;
    }

    .site-footer ul {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .motif-hero::after,
    .detail-article-premium::before {
        opacity: 0.2;
    }

    .info-grid-premium > div {
        border-left-width: 2px;
        padding-left: 0.58rem;
    }

    .search-result-card::before,
    .related-card::before {
        top: 0.58rem;
        right: 0.58rem;
        min-width: 58px;
        font-size: 0.58rem;
        padding: 0.18rem 0.42rem;
    }
}

@media (max-width: 420px) {
    .site-footer .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .site-footer h2 {
        font-size: 1.12rem;
    }
}
