/**
 * Notice Frontend Styles
 * @version 1.1.0
 */

/* ========== TICKER ========== */
.hp-notice-ticker-wrap {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    height: 40px;
    align-items: center;
    /*margin: 15px 0;*/
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hp-ticker-label {
    background:#927d38;
    color: #fff;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.hp-ticker-icon {
    font-size: 1.5rem;
    color:white;
}

.hp-ticker-content-box {
    flex: 1;
    overflow: hidden;
    height: 100%;
    min-width: 0;
}

.hp-ticker-items {
    display: flex;
    white-space: nowrap;
    height: 100%;
    animation: hp-ticker-scroll 15s linear infinite;
    align-items: center;
}

.hp-ticker-items:hover {
    animation-play-state: paused;
}

.hp-ticker-item {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    height: 100%;
    border-right: 1px solid #eee;
}

.hp-ticker-link {
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.hp-ticker-link:hover {
    color: #927d38;
}

.hp-ticker-date {
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 500;
}

.hp-new-badge {
    background: #dc2626;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 2px;
    letter-spacing: 0.3px;
     animation: blink 1s infinite;
}

/* Archive2 "NEW" badge — was missing entirely, so it never blinked */
.hp-na2-new-badge {
    background: #bbf7d0!important;
    color: #cd1515!important;
    font-size: 0.4rem!important;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    letter-spacing: 0.3px;
    margin-left: 6px;
    animation: blink 1s infinite;
}



@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}







.hp-ticker-view-all {
    padding: 0 1rem;
    color: #927d38;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    border-left: 1px solid #ddd;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s;
    flex-shrink: 0;
    height: 100%;
}

.hp-ticker-view-all:hover {
    background: #f9fafb;
}

.hp-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}

.hp-ticker-view-all:hover .hp-arrow {
    transform: translateX(2px);
}

@keyframes hp-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ARCHIVE ========== */
.hp-notices-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.hp-archive-header {
    margin-bottom: 1rem;
}

.hp-archive-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827 !important;
    margin: 0 0 0.25rem 0;
}

.hp-archive-subtitle {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* ========== CONTROLS ========== */
.hp-archive-controls-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.hp-archive-controls {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    flex-wrap: wrap;
}

/* Search */
.hp-search-box {
    flex: 1;
    min-width: 220px;
    display: flex;
}

.hp-search-box input {
    flex: 1;
    height: 36px;
    padding: 0 0.75rem;
    border: 1px solid #d1d5db;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 0.85rem;
    transition: border-color 0.2s;
}

.hp-search-box input:focus {
    outline: none;
    border-color: #927d38;
    box-shadow: 0 0 0 1px #927d38;
}

.hp-search-btn {
    height: 36px;
    padding: 0 1rem;
    background: #927d38;
    color: #fff;
    border: 1px solid #927d38;
    border-radius: 0 4px 4px 0;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.hp-search-btn:hover {
    background: #002a5c;
}

/* Filter controls row */
.hp-filter-controls {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Shared label + select block */
.hp-year-filter,
.hp-category-filter {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hp-year-filter label,
.hp-category-filter label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    white-space: nowrap;
    cursor:pointer;
}

.hp-year-filter select,
.hp-category-filter select {
    height: 36px;
    padding: 0 2rem 0 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.85rem;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    cursor  : pointer;
}

.hp-year-filter select {
    min-width: 110px;
}

.hp-category-filter select {
    min-width: 150px;
}

.hp-year-filter select:focus,
.hp-category-filter select:focus {
    outline: none;
    border-color: #927d38;
    box-shadow: 0 0 0 1px #927d38;
    cursor:pointer;
}

/* Clear button */
.hp-clear-filters {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 0.875rem;
    background: #fff;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.hp-clear-filters:hover {
    background: #dc3545;
    color: #fff;
}

/* ========== TABLE ========== */
.hp-notices-table-wrapper {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.hp-notices-table {
    width: 100%;
    border-collapse: collapse;
}

.hp-notices-table thead {
    background: #927d38;
}

.hp-notices-table thead th {
    color: #fff;
    font-weight: 700;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.65rem 0.85rem;
    text-align: left;
}

.hp-notices-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.1s;
}

.hp-notices-table tbody tr:last-child {
    border-bottom: none;
}

.hp-notices-table tbody tr:hover {
    background: #f8fafc;
}

.hp-notices-table tbody td {
    padding: 0.9rem 0.85rem;
    vertical-align: middle;
    text-align: left;
    color:black;
}

/* Column widths */
.hp-col-sno      { width: 48px; }
.hp-col-date     { width: 95px; }
.hp-col-category { width: 130px; }
.hp-col-action   { width: 110px; }

.hp-td-sno,
.hp-td-date,
.hp-td-action,
.hp-td-category  { text-align: center; }

.hp-notice-sno {
    font-weight: 700;
    color: #9ca3af;
    font-size: 0.78rem;
}

.hp-notice-date-cell {
    color: #374151;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.3;
}

.hp-notice-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Force title dark — override theme link/heading colors */
.hp-notice-table-title,
h3.hp-notice-table-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #111827 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.hp-notice-table-description {
    font-size: 0.78rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Download button — sharp, professional */
.hp-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.38rem 0.85rem;
    background: #927d38;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.18s;
    cursor: pointer;
    white-space: nowrap;
}

.hp-download-btn:hover {
    background: #6f5a14;
    color: #fff !important;
}

.hp-no-document {
    color: #d1d5db;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Row highlight */
.hp-highlighted-notice {
    background: #fffbeb !important;
    border-left: 3px solid #f59e0b;
}

.hp-flash-highlight {
    animation: flashHighlight 1.5s ease;
}

@keyframes flashHighlight {
    0%, 100% { background: #fffbeb; }
    50%       { background: #fef3c7; }
}

/* Empty state */
.hp-no-results {
    text-align: center;
    padding: 2rem 1.5rem !important;
}

.hp-no-results-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 0.3rem 0;
}

.hp-no-results-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

/* ========== PAGINATION ========== */
.hp-notices-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    flex-wrap: wrap;
}

.hp-page-btn {
    background: #fff;
    color: #927d38;
    border: 2px solid #927d38;
    padding: 0.4rem 0.9rem;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.hp-page-btn:hover {
    background: #927d38;
    color: #fff;
}

.hp-page-numbers {
    display: flex;
    gap: 0.3rem;
}

.hp-page-number {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.15s;
    border: 1px solid #e5e7eb;
}

.hp-page-number:not(.active) {
    color: #6b7280;
    background: #f9fafb;
}

.hp-page-number:not(.active):hover {
    background: #e5e7eb;
    color: #927d38;
}

.hp-page-number.active {
    background: #927d38;
    color: #fff;
    border-color: #927d38;
}

.hp-page-dots {
    display: flex;
    align-items: center;
    padding: 0 0.3rem;
    color: #d1d5db;
}

/* ========== CATEGORY BADGES ========== */
.hp-notice-category-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.hp-cat-notice          { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }
.hp-cat-event           { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.hp-cat-transfer        { background: #fae8ff; color: #86198f; border: 1px solid #f5d0fe; }
.hp-cat-press-release   { background: #fef9c3; color: #713f12; border: 1px solid #fde68a; }
.hp-cat-students-corner { background: #ede9fe; color: #4c1d95; border: 1px solid #c4b5fd; }
.hp-cat-tender          { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* New Categories */
.hp-cat-notification    { background: #e0f2fe; color: #075985; border: 1px solid #bae6fd; }
.hp-cat-promotion       { background: #fce7f3; color: #9d174d; border: 1px solid #fbcfe8; }
.hp-cat-recruitment     { background: #ecfccb; color: #365314; border: 1px solid #d9f99d; }
.hp-cat-other           { background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }


/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .hp-filter-controls {
        flex-wrap: wrap;
    }

    .hp-category-filter select {
        min-width: 130px;
    }
}

@media (max-width: 768px) {


.hp-ticker-icon-txt{
    display:none;
}

    .hp-notices-archive {
        padding: 1rem 0.5rem;
    }

    .hp-archive-title {
        font-size: 1.3rem;
    }

    .hp-archive-controls {
        flex-direction: column;
    }

    .hp-search-box {
        min-width: 100%;
    }

    .hp-filter-controls {
        width: 100%;
    }

    .hp-year-filter,
    .hp-category-filter {
        flex: 1;
    }

    .hp-year-filter select,
    .hp-category-filter select {
        width: 100%;
        min-width: unset;
    }

    .hp-notices-table-wrapper {
        overflow: visible;
        border: none;
        background: transparent;
    }

    .hp-notices-table thead {
        display: none;
    }

    .hp-notices-table tbody {
        display: block;
    }

    .hp-notices-table tbody tr {
        display: block;
        margin-bottom: 0.75rem;
        border: 1px solid #e5e7eb;
        border-radius: 4px;
        padding: 0.75rem;
        background: #fff;
    }

    .hp-notices-table tbody td {
        display: block;
        padding: 0.3rem 0;
        border: none;
        text-align: left !important;
    }

    .hp-notice-sno,
    .hp-notice-date-cell {
        display: inline-block;
        background: #f3f4f6;
        padding: 0.2rem 0.5rem;
        border-radius: 3px;
        font-size: 0.7rem;
    }

    .hp-notice-date-cell {
        margin-left: 0.4rem;
    }

    .hp-td-info {
        margin: 0.5rem 0;
    }

    .hp-td-action {
        margin-top: 0.75rem;
    }

    .hp-download-btn {
        width: 100%;
    }

    .hp-ticker-view-all span:first-child {
        display: none;
    }
}

@media print {
    .hp-ticker-view-all,
    .hp-notices-pagination,
    .hp-new-badge,
    .hp-archive-controls-wrapper,
    .hp-download-btn {
        display: none;
    }
}


/* ========== NOTICE ARCHIVE 2 — Tabbed Board ========== */

.hp-na2-section {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.hp-na2-section-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.hp-na2-section-accent {
    width: 5px;
    height: 50px;
    background: #15803d;
    flex-shrink: 0;
}

.hp-na2-section .hp-na2-section-header .hp-na2-section-title {
    display: block;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    margin: 0 0 0.2rem 0;
    font-family: inherit;
    text-decoration: none !important;
}

.hp-na2-section-sub {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* ── Board card ── */
.hp-na2-wrap {
    display: grid;
    grid-template-columns: 210px 1fr;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    border-radius: 6px;
}

/* ── Left sidebar ── */
.hp-na2-sidebar {
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.hp-na2-sidebar .hp-na2-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 1px solid #e8edf3;
    border-left: 4px solid transparent;
    background: transparent;
    font-size: 12px;
    font-weight: 600;
    color: #4b5563 !important;
    text-align: left;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
    line-height: 1;
}

.hp-na2-sidebar .hp-na2-tab:last-child {
    border-bottom: none;
}

.hp-na2-sidebar .hp-na2-tab:hover {
    background: #edf2f7;
    color: #1e293b !important;
}

.hp-na2-sidebar .hp-na2-tab.hp-na2-tab--active {
    background: #b69f54;
    color: #fff !important;
    border-left: 4px solid #fbbf24;
}

.hp-na2-sidebar .hp-na2-tab.hp-na2-tab--active:hover {
    background: #a08a3f !important;
    color: #fff !important;
}

.hp-na2-tab-icon {
    width: 1.1rem;
    flex-shrink: 0;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1;
}

/* ── Right panel ── */
.hp-na2-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #ffffff;
}

/* Panel header */
.hp-na2-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1.2rem;
    border-bottom: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.hp-na2-wrap .hp-na2-panel-header .hp-na2-panel-title {
    display: block;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    font-family: inherit;
    line-height: 1;
    text-decoration: none !important;
}

.hp-na2-view-all {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.85rem;
    background: #b69f54;
    color: #ffffff !important;
    font-size: 0.73rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    border-radius: 2px;
    font-family: inherit;
}

.hp-na2-view-all:hover {
    background: #a08a3f;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ── Scrollable list ── */
.hp-na2-list {
    height: 355px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 0 1.2rem;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.hp-na2-list::-webkit-scrollbar       { width: 3px; }
.hp-na2-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 2px; }
.hp-na2-list::-webkit-scrollbar-track { background: transparent; }

/* Loading state */
.hp-na2-panel[aria-busy="true"] .hp-na2-list {
    opacity: 0.35;
    pointer-events: none;
}

/* ── Notice item row ── */
.hp-na2-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.6rem 0.5rem 0.6rem 0.5rem;
    border-bottom: 1px solid #e2e8f0 !important;
    background: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.15s, padding-left 0.15s;
}

.hp-na2-item:hover {
    background:#b69f54;
    padding-left: 0.75rem;
}

.hp-na2-item:last-child {
    border-bottom: none !important;
}

.hp-na2-item-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hp-na2-meta-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ── Date badge — NO color change on hover ── */
.hp-na2-date {
    display: inline-flex;
    align-items: center;
    background: #f0fdf4;
    color: #166534;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border: 1px solid #bbf7d0;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
    line-height: 1.4;
    /* No transition — stays same color always */
}

/* ── NEW badge ── */
.hp-na2-new-badge {
    display: inline-block;
    background: #fec3c3;
    color: #854d0e;
    font-size: 10px;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border: 1px solid #fde68a;
    border-radius: 3px;
    line-height: 1.5;
    font-family: inherit;
}

/* ── Notice title ── */
.hp-na2-wrap .hp-na2-list .hp-na2-item .hp-na2-item-left .hp-na2-title {
    display: block !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #1e293b !important;
    line-height: 1.45 !important;
    font-family: inherit !important;
    text-decoration: none !important;
    background: none !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.15s;
}

/* Title turns green on row hover */
.hp-na2-wrap .hp-na2-list .hp-na2-item:hover .hp-na2-title {
    color: #f4f4f4 !important;
    font-weight: 600 !important;
}

.hp-na2-item .hp-na2-item-left a,
.hp-na2-item .hp-na2-item-left span {
    color: inherit !important;
    text-decoration: none !important;
}

/* ── View / Doc button ── */
.hp-na2-doc-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border: 1px solid #9ca3af;
    color: #374151 !important;
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #ffffff;
    font-family: inherit;
    line-height: 1.6;
    border-radius: 2px;
    cursor: pointer;
}

.hp-na2-doc-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff !important;
}

.hp-na2-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    color: #9ca3af;
    font-size: 0.85rem;
    font-family: inherit;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .hp-na2-wrap { grid-template-columns: 175px 1fr; }
}

@media (max-width: 640px) {
    .hp-na2-wrap { grid-template-columns: 1fr; }

    .hp-na2-sidebar {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hp-na2-sidebar::-webkit-scrollbar { display: none; }

    .hp-na2-sidebar .hp-na2-tab {
        border-bottom: none !important;
        border-right: 1px solid #e2e8f0;
        border-left: none !important;
        flex-shrink: 0;
        padding: 0.7rem 0.9rem;
        white-space: nowrap;
    }

    .hp-na2-sidebar .hp-na2-tab:last-child { border-right: none; }

    .hp-na2-list         { height: 320px; padding: 0 1rem; }
    .hp-na2-panel-header { padding: 0.65rem 1rem; }

    .hp-na2-section .hp-na2-section-header .hp-na2-section-title {
        font-size: 1.3rem !important;
    }
}

@media (max-width: 400px) {
    .hp-na2-tab-label { display: none; }
    .hp-na2-sidebar .hp-na2-tab { flex: 1; justify-content: center; padding: 0.7rem 0.5rem; }
    .hp-na2-tab-icon { font-size: 1.1rem; }
}