/* ----------------------------------------------------
   Core Design System & Reset
   ---------------------------------------------------- */
:root {
    --bg-main: #060913;
    --bg-card: rgba(16, 22, 38, 0.55);
    --bg-card-hover: rgba(22, 30, 52, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --color-primary: #5c64ec;     /* Electric Violet */
    --color-cyan: #00f0ff;        /* Neon Cyan */
    --color-purple: #ab47bc;      /* soft Purple */
    --color-green: #00e676;       /* Mint Green */
    --color-amber: #ffb300;       /* Amber */
    --color-rose: #ff4081;        /* Soft Rose */
    
    --text-main: #f1f3fa;
    --text-muted: #8b95a5;
    
    --font-heading: 'Outfit', 'Noto Sans KR', sans-serif;
    --font-body: 'Inter', 'Noto Sans KR', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    height: 100vh;
}

/* Canvas Particle Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ----------------------------------------------------
   App Layout
   ---------------------------------------------------- */
.app-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background: rgba(8, 12, 24, 0.85);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    transition: var(--transition-smooth);
}

.sidebar-header {
    padding: 30px 24px;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 26px;
    color: var(--color-cyan);
    animation: rotateAtom 10s linear infinite;
    display: inline-block;
}

@keyframes rotateAtom {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-main), var(--color-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    font-size: 11px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-nav {
    flex: 1;
    padding: 24px 16px;
    overflow-y: auto;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.sidebar-nav a i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.sidebar-nav li.active a,
.sidebar-nav li a:hover {
    color: var(--text-main);
    background: rgba(92, 100, 236, 0.15);
    border: 1px solid rgba(92, 100, 236, 0.25);
}

.sidebar-nav li.active a i {
    color: var(--color-cyan);
    text-shadow: 0 0 10px var(--color-cyan);
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    font-size: 32px;
    color: var(--text-muted);
}

.user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.user-role {
    font-size: 11px;
    color: var(--text-muted);
}

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-y: auto;
    position: relative;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(6, 9, 19, 0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 5;
}

.header-title h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-top: 6px;
}

.date-badge {
    font-size: 12px;
    color: var(--color-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 500;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.content-body {
    flex: 1;
    padding: 40px;
}

/* ----------------------------------------------------
   Buttons & UI Elements
   ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #3b42c4);
    color: var(--text-main);
}

.btn-primary:hover {
    box-shadow: 0 0 15px rgba(92, 100, 236, 0.4);
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tag-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-cyan);
    margin-bottom: 12px;
}

.badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.badge-low { background: rgba(0, 230, 118, 0.12); color: var(--color-green); border: 1px solid rgba(0, 230, 118, 0.2); }
.badge-medium { background: rgba(255, 179, 0, 0.12); color: var(--color-amber); border: 1px solid rgba(255, 179, 0, 0.2); }
.badge-high { background: rgba(255, 64, 129, 0.12); color: var(--color-rose); border: 1px solid rgba(255, 64, 129, 0.2); }
.badge-danger { background: rgba(255, 64, 129, 0.2); color: var(--color-rose); border: 1px solid var(--color-rose); }

/* ----------------------------------------------------
   Grid & Card Layouts
   ---------------------------------------------------- */
.grid-container {
    display: grid;
    gap: 24px;
}

.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
}

.card {
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(255, 255, 255, 0.15);
}

.hover-up:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Card Icons */
.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.card-icon.cyan { background: rgba(0, 240, 255, 0.1); color: var(--color-cyan); }
.card-icon.purple { background: rgba(171, 71, 188, 0.1); color: var(--color-purple); }
.card-icon.green { background: rgba(0, 230, 118, 0.1); color: var(--color-green); }
.card-icon.blue { background: rgba(92, 100, 236, 0.1); color: var(--color-primary); }
.card-icon.amber { background: rgba(255, 179, 0, 0.1); color: var(--color-amber); }
.card-icon.rose { background: rgba(255, 64, 129, 0.1); color: var(--color-rose); }

.card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Border variants */
.border-left-primary { border-left: 4px solid var(--color-primary); }
.border-left-danger { border-left: 4px solid var(--color-rose); }

/* Alert Card */
.alert-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 30px;
    background: rgba(255, 64, 129, 0.05);
}

.alert-icon {
    font-size: 24px;
    color: var(--color-rose);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.6; text-shadow: 0 0 5px var(--color-rose); }
    100% { opacity: 1; text-shadow: 0 0 15px var(--color-rose); }
}

/* ----------------------------------------------------
   Hero Component
   ---------------------------------------------------- */
.hero-card {
    position: relative;
    border-radius: 24px;
    padding: 50px 48px;
    background: linear-gradient(135deg, rgba(16, 22, 38, 0.9), rgba(6, 9, 19, 0.9)), url('hero-bg.png') no-repeat center center;
    background-size: cover;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(92, 100, 236, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #dcdffb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-cyan);
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Section Title */
.section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--color-primary);
}

.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 24px; }

/* ----------------------------------------------------
   Tab Layout & Transition
   ---------------------------------------------------- */
.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------
   Charts
   ---------------------------------------------------- */
.chart-card {
    padding: 24px;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin-top: 20px;
}

.chart-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ----------------------------------------------------
   Tables
   ---------------------------------------------------- */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 16px;
}

.table-modern {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    text-align: left;
}

.table-modern th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
}

.table-modern td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: middle;
}

.table-modern tbody tr:last-child td {
    border-bottom: none;
}

.table-modern tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.highlight-row td {
    background: rgba(92, 100, 236, 0.08);
}

.highlight-row:hover td {
    background: rgba(92, 100, 236, 0.12) !important;
}

.text-success {
    color: var(--color-green);
    font-weight: 600;
}

/* ----------------------------------------------------
   SWOT Matrix Styling
   ---------------------------------------------------- */
.swot-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.swot-box {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.swot-box::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.swot-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.swot-title span {
    font-size: 24px;
    font-weight: 900;
}

.swot-box ul {
    list-style-type: none;
    position: relative;
    z-index: 2;
}

.swot-box li {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.swot-box li::before {
    content: '▪';
    position: absolute;
    left: 0;
    top: 0;
}

/* SWOT Themes */
.swot-s { background: rgba(0, 240, 255, 0.04); }
.swot-s::after { background: var(--color-cyan); }
.swot-s .swot-title { color: var(--color-cyan); }
.swot-s li::before { color: var(--color-cyan); }

.swot-w { background: rgba(255, 64, 129, 0.04); }
.swot-w::after { background: var(--color-rose); }
.swot-w .swot-title { color: var(--color-rose); }
.swot-w li::before { color: var(--color-rose); }

.swot-o { background: rgba(0, 230, 118, 0.04); }
.swot-o::after { background: var(--color-green); }
.swot-o .swot-title { color: var(--color-green); }
.swot-o li::before { color: var(--color-green); }

.swot-t { background: rgba(255, 179, 0, 0.04); }
.swot-t::after { background: var(--color-amber); }
.swot-t .swot-title { color: var(--color-amber); }
.swot-t li::before { color: var(--color-amber); }

/* ----------------------------------------------------
   Feature Lists & Mapping
   ---------------------------------------------------- */
.feature-item {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.01);
}

.feature-icon {
    font-size: 22px;
    color: var(--color-cyan);
    margin-bottom: 12px;
}

.feature-item h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 12.5px;
    line-height: 1.5;
}

/* Mapping List */
.mapping-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.mapping-item {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
}

.mapping-tech {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-cyan);
    margin-bottom: 6px;
}

.mapping-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Accordion for Clusters */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.01);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-header h5 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-header h5 i {
    color: var(--color-cyan);
}

.toggle-icon {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 24px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(92, 100, 236, 0.3);
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    padding: 8px 24px 20px 24px;
    max-height: 200px;
    opacity: 1;
}

/* ----------------------------------------------------
   Timeline Component
   ---------------------------------------------------- */
.timeline {
    position: relative;
    padding-left: 30px;
    margin-top: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: rgba(255,255,255,0.06);
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -30px;
    top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 4px solid var(--bg-main);
    font-size: 0; /* Hide text, just node */
    box-shadow: 0 0 10px rgba(92, 100, 236, 0.5);
}

.timeline-panel {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: 12px;
}

.timeline-panel h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.timeline-panel p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   Simulator Custom Component
   ---------------------------------------------------- */
.simulator-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .simulator-layout { grid-template-columns: 1fr; }
}

.sim-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.control-group {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
}

.control-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.control-label strong {
    color: var(--color-cyan);
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,0.1);
    outline: none;
    transition: background 0.3s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-cyan);
    cursor: pointer;
    box-shadow: 0 0 10px var(--color-cyan);
    transition: transform 0.1s;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.slider-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Simulator Results */
.sim-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric-gauges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gauge-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
}

.gauge-title {
    font-size: 11.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.gauge-value {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
}

.gauge-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.bar-fill {
    height: 100%;
    background: var(--color-cyan);
    border-radius: 2px;
    transition: width 0.5s ease-out;
}

.bar-fill.bg-orange { background: var(--color-amber); }
.bar-fill.bg-green { background: var(--color-green); }

.gauge-goal {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
}

.sim-analysis-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sim-analysis-card h5 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-cyan);
}

.sim-analysis-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sim-verdict {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    font-size: 13.5px;
}

.verdict-grade {
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
}

.grade-success { background: rgba(0,230,118,0.12); color: var(--color-green); border: 1px solid rgba(0,230,118,0.2); }
.grade-warning { background: rgba(255,179,0,0.12); color: var(--color-amber); border: 1px solid rgba(255,179,0,0.2); }
.grade-danger { background: rgba(255,64,129,0.12); color: var(--color-rose); border: 1px solid rgba(255,64,129,0.2); }

/* ----------------------------------------------------
   Benchmark Custom Layout
   ---------------------------------------------------- */
.benchmark-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.bench-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.flag-icon {
    font-size: 12px;
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bench-header h4 {
    margin-top: 4px;
    margin-bottom: 0;
}

.bench-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
}

.bench-meta span { color: var(--text-muted); }
.bench-meta strong { color: var(--text-main); }

.bench-desc {
    margin-top: 16px;
    font-size: 12.5px !important;
    line-height: 1.5;
}
