/* Theme Name: Egovt Child Theme
Theme URI: https://themeforest.net/user/ovatheme/portfolio
Description: CJ Mehedinti - Child Theme EGovt
Author: Ovatheme
Template: egovt
Version: 1.0.0
Text Domain: egovt-child
*/

/* ============================================================
   HEADER - Culori inspirate din cjdolj.ro
   #1962AB  albastru institutional (dropdown nav)
   #6B0926  maroon (accent primar)
   #F18735  portocaliu (hover)
   #E9BC33  galben (hover butoane)
   #202B5D  navy (text nav)
   ============================================================ */

:root {
    --cjm-blue:   #1962AB;
    --cjm-maroon: #6B0926;
    --cjm-orange: #F18735;
    --cjm-yellow: #E9BC33;
    --cjm-navy:   #202B5D;
    --cjm-white:  #ffffff;
}

/* === Header wrapper === */
#ovatheme_header_default {
    background-color: #fff;
    border-bottom: 3px solid #1962AB;
    box-shadow: 0 2px 8px rgba(25, 98, 171, 0.10);
}

/* === Logo === */
.ovatheme_header_default nav.navbar .navbar-brand {
    padding-top: 10px;
    padding-bottom: 10px;
}
.ovatheme_header_default nav.navbar .navbar-brand img {
    max-height: 70px;
    width: auto;
}

/* === Meniu nivel 1 - text navy === */
.ovatheme_header_default nav.navbar .navbar-nav > li > a {
    color: #202B5D !important;
    font-weight: 500;
    transition: color 0.2s ease, box-shadow 0.2s ease;
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

/* Indicator portocaliu la hover (box-shadow evita conflictul cu ::after ElegantIcons) */
.ovatheme_header_default nav.navbar .navbar-nav > li > a:hover,
.ovatheme_header_default nav.navbar .navbar-nav > li.current-menu-item > a,
.ovatheme_header_default nav.navbar .navbar-nav > li.current-menu-ancestor > a,
.ovatheme_header_default nav.navbar .navbar-nav > li.active > a {
    color: #1962AB !important;
    box-shadow: inset 0 -3px 0 #F18735;
}

/* === Dropdown submeniu - fond albastru ca cjdolj.ro === */
.ovatheme_header_default nav.navbar ul.dropdown-menu {
    background-color: #1962AB !important;
    border: none !important;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 6px 20px rgba(25, 98, 171, 0.30);
    padding: 6px 0 !important;
    min-width: 270px;
}

/* Separatori albi translucizi intre iteme submeniu */
.ovatheme_header_default nav.navbar ul.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
}

/* Text submeniu alb */
.ovatheme_header_default nav.navbar ul.dropdown-menu li a {
    color: #ffffff !important;
    padding: 10px 18px !important;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
    display: block;
    transition: background-color 0.15s ease;
}

/* Bullet indicator submeniu */
.ovatheme_header_default nav.navbar ul.dropdown-menu li a:before {
    background-color: #F18735 !important;
}

/* Hover submeniu - portocaliu ca cjdolj.ro */
.ovatheme_header_default nav.navbar ul.dropdown-menu li > a:hover,
.ovatheme_header_default nav.navbar ul.dropdown-menu li.active > a {
    background-color: #F18735 !important;
    color: #ffffff !important;
    border-color: #F18735 !important;
}

/* === Sticky header === */
.ovamenu_shrink.active_fixed,
.ovamenu_shrink_mobile.active_fixed {
    background-color: #ffffff !important;
    border-bottom: 3px solid #1962AB !important;
    box-shadow: 0 2px 12px rgba(25, 98, 171, 0.18) !important;
}

/* === Mobile === */
@media (max-width: 991.98px) {
    .ovatheme_header_default button.navbar-toggler {
        background-color: #1962AB !important;
        color: #ffffff;
        border: none;
        border-radius: 3px;
    }
    .ovatheme_header_default nav.navbar .navbar-nav > li > a {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        box-shadow: none !important;
        border-bottom: 1px solid #eee;
    }
    .ovatheme_header_default nav.navbar .navbar-nav > li > a:hover {
        box-shadow: none !important;
        background-color: rgba(25, 98, 171, 0.08);
    }
    .ovatheme_header_default nav.navbar ul.dropdown-menu {
        box-shadow: none;
    }
}

/* ================================================================
   CJM Templates — Hotărâri & Ședințe
   Adăugat la egovt-child/style.css
   ================================================================ */

/* ---------------------------------------------------------------
   HERO BANNER (arhivă hotărâri & ședințe)
   --------------------------------------------------------------- */
.cjm-hero-banner {
    background: linear-gradient(135deg, #202B5D 0%, #1962AB 100%);
    padding: 36px 0 32px;
    margin-bottom: 0;
}
.cjm-hero-inner {
    display: flex;
    align-items: center;
    gap: 22px;
}
.cjm-hero-icon-wrap {
    width: 66px;
    height: 66px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    color: #fff;
}
.cjm-hero-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.25;
}
.cjm-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* ---------------------------------------------------------------
   CONTAINER ARHIVĂ
   --------------------------------------------------------------- */
.cjm-archive-container {
    padding-top: 28px;
    padding-bottom: 60px;
}

/* ---------------------------------------------------------------
   CARD FILTRE
   --------------------------------------------------------------- */
.cjm-filters-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 22px 26px;
    box-shadow: 0 2px 10px rgba(25, 98, 171, 0.07);
    margin-bottom: 18px;
}

.cjm-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.cjm-filter-row--years {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.cjm-filter-row--controls {
    align-items: flex-end;
    gap: 14px;
}

.cjm-filter-label-icon {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 38px;
}
.cjm-filter-label-icon i { color: #1962AB; }

/* Pills ani */
.cjm-year-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.cjm-pill {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    border: 1.5px solid #cbd5e1;
    color: #475569;
    text-decoration: none !important;
    transition: all 0.18s ease;
    background: #fff;
    line-height: 1;
}
.cjm-pill:hover {
    border-color: #1962AB;
    color: #1962AB;
    background: #eff6ff;
    text-decoration: none !important;
}
.cjm-pill.active {
    background: #1962AB;
    border-color: #1962AB;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* Grupuri control */
.cjm-control-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 150px;
    max-width: 240px;
}
.cjm-control-group--search {
    flex: 2;
    max-width: 360px;
}
.cjm-control-group--reset {
    flex: 0 0 auto;
    min-width: auto;
    max-width: none;
    align-self: flex-end;
}
.cjm-control-label {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: default;
}
.cjm-control-label i { color: #1962AB; font-size: 10px; }

.cjm-select {
    width: 100%;
    padding: 9px 11px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    color: #334155;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.cjm-select:focus {
    outline: none;
    border-color: #1962AB;
    box-shadow: 0 0 0 3px rgba(25, 98, 171, 0.10);
}

/* Search box */
.cjm-search-box {
    display: flex;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.cjm-search-box:focus-within {
    border-color: #1962AB;
    box-shadow: 0 0 0 3px rgba(25, 98, 171, 0.10);
}
.cjm-search-input {
    flex: 1;
    border: none;
    padding: 9px 13px;
    font-size: 13.5px;
    color: #334155;
    outline: none;
    background: #fff;
    min-width: 0;
}
.cjm-search-btn {
    background: #1962AB;
    border: none;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.18s;
    flex-shrink: 0;
}
.cjm-search-btn:hover { background: #14508f; }

.cjm-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 15px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.18s;
    background: #fff;
    white-space: nowrap;
}
.cjm-reset-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
    text-decoration: none !important;
}

/* ---------------------------------------------------------------
   BARA REZULTATE
   --------------------------------------------------------------- */
.cjm-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding: 6px 0;
}
.cjm-results-count {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: #475569;
}
.cjm-results-count i { color: #1962AB; }
.cjm-results-count strong { font-size: 20px; color: #1962AB; font-weight: 700; line-height: 1; }

.cjm-active-filters { display: flex; flex-wrap: wrap; gap: 6px; }
.cjm-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: #eff6ff;
    color: #1962AB;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #bfdbfe;
}

/* ---------------------------------------------------------------
   TABEL HOTĂRÂRI
   --------------------------------------------------------------- */
.cjm-table-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.cjm-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}

/* Header tabel */
.cjm-table thead tr {
    background: linear-gradient(90deg, #202B5D 0%, #1962AB 100%);
}
.cjm-table thead th {
    padding: 13px 16px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.88);
    border: none;
    white-space: nowrap;
}
.cjm-table thead th i { margin-right: 4px; opacity: 0.75; }

/* Coloane */
.cjm-table .col-nr    { width: 68px;  text-align: center; }
.cjm-table .col-titlu { }
.cjm-table .col-data  { width: 108px; white-space: nowrap; }
.cjm-table .col-tip   { width: 130px; }
.cjm-table .col-doc   { width: 88px;  text-align: center; }

/* Rânduri */
.cjm-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.14s;
}
.cjm-table tbody tr:last-child { border-bottom: none; }
.cjm-table tbody tr:hover      { background-color: #f8faff; }
.cjm-table tbody td {
    padding: 13px 16px;
    color: #334155;
    vertical-align: middle;
}

/* Rând respins/retras — fundal subtil */
.cjm-table tbody .cjm-row--respinsa { background-color: #fefaf9; }
.cjm-table tbody .cjm-row--retrasa  { background-color: #fefdf8; }

/* Nr. badge */
.cjm-nr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border-radius: 8px;
    background: #eff6ff;
    color: #1962AB;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid #bfdbfe;
}

/* Titlu rând */
.cjm-row-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    text-decoration: none !important;
    line-height: 1.4;
    display: inline;
    transition: color 0.16s;
}
.cjm-row-title:hover { color: #1962AB; text-decoration: none !important; }

/* Badge status (respins/retras) */
.cjm-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.cjm-status--respinsa { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.cjm-status--retrasa  { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }

/* Tip tag */
.cjm-tip-tag {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}
.cjm-dash { color: #94a3b8; }

/* PDF button */
.cjm-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: #dc2626;
    color: #fff !important;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.18s, transform 0.14s;
    white-space: nowrap;
}
.cjm-pdf-btn:hover {
    background: #b91c1c;
    color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none !important;
}
.cjm-pdf-btn i { font-size: 13px; }
.cjm-no-doc { color: #94a3b8; }

/* ---------------------------------------------------------------
   PAGINARE
   --------------------------------------------------------------- */
.cjm-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 30px;
    padding: 16px 0;
}
.cjm-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.18s;
}
.cjm-pagination .page-numbers:hover {
    border-color: #1962AB;
    color: #1962AB;
    background: #eff6ff;
    text-decoration: none !important;
}
.cjm-pagination .page-numbers.current {
    background: #1962AB;
    border-color: #1962AB;
    color: #fff;
    font-weight: 700;
}
.cjm-pagination .page-numbers.dots {
    border: none;
    background: none;
    pointer-events: none;
}

/* ---------------------------------------------------------------
   EMPTY STATE
   --------------------------------------------------------------- */
.cjm-empty-state {
    text-align: center;
    padding: 72px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}
.cjm-empty-icon {
    font-size: 52px;
    color: #cbd5e1;
    display: block;
    margin-bottom: 18px;
}
.cjm-empty-title {
    font-size: 20px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 8px;
}
.cjm-empty-text {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 22px;
}
.cjm-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    border-radius: 8px;
    border: 2px solid #1962AB;
    color: #1962AB !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.18s;
}
.cjm-btn-outline:hover {
    background: #1962AB;
    color: #fff !important;
    text-decoration: none !important;
}

/* ---------------------------------------------------------------
   SINGLE HOTĂRÂRE
   --------------------------------------------------------------- */
.cjm-single-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    padding: 32px 0 60px;
}
.cjm-single-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}
.cjm-meta-card,
.cjm-docs-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.cjm-card-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #64748b;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cjm-card-title i { color: #1962AB; }

.cjm-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
    font-size: 13.5px;
}
.cjm-meta-row:last-child { border-bottom: none; }
.cjm-meta-key {
    color: #64748b;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.cjm-meta-key i { color: #1962AB; font-size: 11px; }
.cjm-meta-val { color: #1e293b; font-weight: 600; text-align: right; }

.cjm-doc-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fef2f2;
    color: #dc2626 !important;
    text-decoration: none !important;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 8px;
    border: 1px solid #fecaca;
    transition: all 0.18s;
}
.cjm-doc-link:hover {
    background: #dc2626;
    color: #fff !important;
    border-color: #dc2626;
}
.cjm-doc-link i { font-size: 18px; flex-shrink: 0; }

.cjm-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.16s;
}
.cjm-back-link:hover { color: #1962AB; }

.cjm-single-content h1 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    margin-bottom: 20px;
}
.cjm-download-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

/* ---------------------------------------------------------------
   ȘEDINȚE — arhivă cards
   --------------------------------------------------------------- */
.cjm-sedinta-card {
    display: flex;
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.18s, transform 0.14s;
}
.cjm-sedinta-card:hover {
    box-shadow: 0 6px 20px rgba(25, 98, 171, 0.12);
    transform: translateY(-2px);
}
.cjm-sedinta-date-col {
    background: linear-gradient(180deg, #202B5D 0%, #1962AB 100%);
    color: #fff;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    text-align: center;
}
.cjm-sedinta-zi   { font-size: 28px; font-weight: 800; line-height: 1; }
.cjm-sedinta-luna { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.82; margin-top: 3px; }
.cjm-sedinta-an   { font-size: 10px; opacity: 0.65; margin-top: 1px; }
.cjm-sedinta-body { padding: 16px 20px; flex: 1; }
.cjm-sedinta-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none !important;
    display: block;
    margin-bottom: 6px;
    transition: color 0.16s;
}
.cjm-sedinta-title:hover { color: #1962AB; }
.cjm-sedinta-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}
.cjm-sedinta-meta span { display: flex; align-items: center; gap: 4px; }
.cjm-sedinta-meta i { color: #1962AB; font-size: 11px; }
.cjm-sedinta-docs { display: flex; flex-wrap: wrap; gap: 7px; }
.cjm-doc-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1.5px solid;
    transition: all 0.16s;
}
.cjm-doc-chip--pdf {
    background: #fef2f2;
    color: #dc2626;
    border-color: #fecaca;
}
.cjm-doc-chip--pdf:hover { background: #dc2626; color: #fff !important; border-color: #dc2626; }
.cjm-doc-chip--doc {
    background: #eff6ff;
    color: #1962AB;
    border-color: #bfdbfe;
}
.cjm-doc-chip--doc:hover { background: #1962AB; color: #fff !important; border-color: #1962AB; }

/* Badges tip ședință */
.cjm-tip-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    border: 1.5px solid;
    text-transform: capitalize;
}
.cjm-tip-badge--ordinara     { background: #eff6ff; color: #1962AB; border-color: #bfdbfe; }
.cjm-tip-badge--extraordinara{ background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.cjm-tip-badge--de_indata    { background: #fefce8; color: #ca8a04; border-color: #fde68a; }

/* ---------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 991px) {
    .cjm-single-wrap {
        grid-template-columns: 1fr;
    }
    .cjm-single-sidebar { position: static; }
}

@media (max-width: 767px) {
    .cjm-hero-banner { padding: 22px 0; }
    .cjm-hero-inner  { flex-direction: column; text-align: center; gap: 12px; }
    .cjm-hero-title  { font-size: 19px; }
    .cjm-hero-icon-wrap { width: 54px; height: 54px; font-size: 22px; }

    .cjm-filters-card { padding: 16px; }
    .cjm-filter-row--controls { flex-direction: column; }
    .cjm-control-group,
    .cjm-control-group--search { max-width: 100%; width: 100%; }

    .cjm-table .col-data,
    .cjm-table .col-tip { display: none; }

    .cjm-sedinta-card { flex-direction: column; }
    .cjm-sedinta-date-col { flex-direction: row; gap: 8px; padding: 10px 16px; justify-content: flex-start; }
    .cjm-sedinta-zi { font-size: 20px; }
}

@media (max-width: 480px) {
    .cjm-results-bar { flex-direction: column; align-items: flex-start; }
    .cjm-year-pills  { gap: 5px; }
    .cjm-pill { padding: 4px 11px; font-size: 12px; }
}

