/* Sirmium Capital — Fund Intelligence Dashboard Styles */

:root {
    --pipeline-green: #22c55e;
    --pipeline-amber: #f59e0b;
    --pipeline-blue: #3b82f6;
    --pipeline-red: #ef4444;
    --mono: 'JetBrains Mono', monospace;
}

.dash-hero {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.95));
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.dash-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(197, 160, 89, 0.08), transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.05), transparent 50%);
    pointer-events: none;
}

.dash-hero .container {
    position: relative;
    z-index: 2;
}

.dash-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.dash-hero .subtitle {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 700px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold-300);
    font-family: var(--font-display);
}

.hero-stat-label {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* Pipeline */
.pipeline-section {
    padding: 5rem 0;
}

.pipeline-stages {
    display: flex;
    gap: 0;
    margin-top: 3rem;
    position: relative;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.pipeline-stage {
    flex: 1;
    min-width: 130px;
    text-align: center;
    position: relative;
    padding: 1.5rem 0.75rem;
}

.pipeline-stage::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(197, 160, 89, 0.3);
    font-size: 1.2rem;
    z-index: 2;
}

.pipeline-stage:last-child::after {
    display: none;
}

.stage-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.stage-dot.active {
    background: rgba(34, 197, 94, 0.2);
    border: 2px solid var(--pipeline-green);
    color: var(--pipeline-green);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.stage-dot.pending {
    background: rgba(245, 158, 11, 0.15);
    border: 2px solid var(--pipeline-amber);
    color: var(--pipeline-amber);
}

.stage-dot.future {
    background: rgba(100, 116, 139, 0.1);
    border: 2px solid rgba(100, 116, 139, 0.3);
    color: #64748b;
}

.stage-name {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    font-weight: 600;
}

.stage-prob {
    font-family: var(--mono);
    font-size: 0.85rem;
    color: var(--gold-300);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.category-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

.category-tag.crypto {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.category-tag.iran {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.category-tag.nk {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.category-tag.alqaeda {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.category-tag.hezbollah {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.category-tag.syria {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.category-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-amount {
    font-family: var(--mono);
    font-size: 1.4rem;
    color: var(--gold-300);
    font-weight: 800;
}

.category-cases {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.prob-bar-container {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    height: 6px;
    overflow: hidden;
}

.prob-bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease;
}

/* Source Grid */
.source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.source-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.source-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.source-status.current {
    background: var(--pipeline-green);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.source-status.stale {
    background: var(--pipeline-amber);
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

.source-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.source-type {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Methodology */
.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-step {
    padding: 2rem;
    background: rgba(197, 160, 89, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 16px;
    position: relative;
}

.method-step-num {
    font-family: var(--mono);
    font-size: 2rem;
    color: rgba(197, 160, 89, 0.2);
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1.25rem;
}

.method-step h4 {
    color: var(--gold-300);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.method-step p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* FinBERT */
.finbert-example {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--gold-300);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.finbert-example:hover {
    background: rgba(197, 160, 89, 0.18);
    transform: translateY(-1px);
}

#finbert-input:focus {
    border-color: rgba(197, 160, 89, 0.4);
}

/* CTA + Buttons */
.fund-cta-card {
    background: rgba(197, 160, 89, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.fund-cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
}

.fund-cta-card p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.fund-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-block;
    background: var(--gold-300);
    color: #0a0a0a;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold-300);
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-300);
}

.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: var(--gold-300);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(197, 160, 89, 0.35);
}

.btn-outline-gold:hover {
    border-color: var(--gold-300);
    background: rgba(197, 160, 89, 0.08);
}

/* Footer disclaimer */
.fund-disclaimer {
    font-size: 0.72rem;
    color: #475569;
    margin-top: 1.5rem;
    max-width: 640px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 1.8rem;
    }

    .pipeline-stages {
        flex-direction: column;
    }

    .pipeline-stage::after {
        display: none;
    }

    .pipeline-stage {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 0.75rem;
    }

    .stage-dot {
        margin: 0;
        flex-shrink: 0;
    }

    .fund-intel-wrapper {
        grid-template-columns: 1fr !important;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .source-grid {
        grid-template-columns: 1fr;
    }

    #finbert-results .category-card {
        padding: 1rem;
    }

    #finbert-results>div:first-child {
        grid-template-columns: 1fr;
    }

    .fund-cta-card {
        padding: 2.5rem 1.25rem;
    }

    .fund-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fund-cta-buttons a {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* --- Utilities & Refinements --- */
.u-bg-dark-98 {
    background: rgba(2, 6, 23, 0.98);
}

.u-bg-dark-95 {
    background: rgba(15, 23, 42, 0.95);
}

.u-mt-05 {
    margin-top: 0.5rem;
}

.u-mt-1 {
    margin-top: 1rem;
}

.u-mt-15 {
    margin-top: 1.5rem;
}

.u-mt-2 {
    margin-top: 2rem;
}

.u-py-5 {
    padding: 5rem 0;
}

.u-py-6 {
    padding: 6rem 0;
}

.u-text-muted-400 {
    color: #94a3b8;
}

.u-text-muted-500 {
    color: #64748b;
}

.u-max-w-700 {
    max-width: 700px;
}

.u-fs-065 {
    font-size: 0.65rem;
}

.u-fs-07 {
    font-size: 0.7rem;
}

.u-fs-075 {
    font-size: 0.75rem;
}

.u-fs-08 {
    font-size: 0.8rem;
}

.u-fs-085 {
    font-size: 0.85rem;
}

.u-fs-095 {
    font-size: 0.95rem;
}

.u-fs-3 {
    font-size: 3rem;
}

.u-fw-900 {
    font-weight: 900;
}

.u-ls-2 {
    letter-spacing: 2px;
}

.u-text-center {
    text-align: center;
}

/* ===== MULTIMODAL RECON SECTION ===== */
.recon-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.playback-card {
    background: #020617;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playback-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.1) 0%, transparent 70%);
}

.playback-placeholder-icon {
    font-size: 3rem;
    color: var(--guide-gold);
    opacity: 0.5;
    z-index: 2;
}

.evidence-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.evidence-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.evidence-item:hover {
    background: rgba(197, 160, 89, 0.05);
    border-color: rgba(197, 160, 89, 0.3);
    transform: translateX(5px);
}

.evidence-tag {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.tag-vision {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.tag-audio {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.tag-video {
    background: rgba(197, 160, 89, 0.2);
    color: var(--guide-gold);
}

.tag-orchestrator {
    background: rgba(0, 232, 184, 0.15);
    color: #00e8b8;
}

/* Agent Badges (Dashboard-specific overrides) */
.agent-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.agent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Agent Pulse Animations */
.agent-dot.pulse-alpha {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
    animation: pulse-blue 2s ease-in-out infinite;
}

.agent-dot.pulse-beta {
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
    animation: pulse-purple 2s ease-in-out infinite 0.5s;
}

.agent-dot.pulse-gamma {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
    animation: pulse-gold 2s ease-in-out infinite 1s;
}

.agent-dot.pulse-delta {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-green 2s ease-in-out infinite 1.5s;
}

@keyframes pulse-blue {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 14px rgba(59, 130, 246, 0.8);
    }
}

@keyframes pulse-purple {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(168, 85, 247, 0.4);
    }

    50% {
        box-shadow: 0 0 14px rgba(168, 85, 247, 0.8);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 14px rgba(245, 158, 11, 0.8);
    }
}

@keyframes pulse-green {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(34, 197, 94, 0.4);
    }

    50% {
        box-shadow: 0 0 14px rgba(34, 197, 94, 0.8);
    }
}

/* Active Ping Effect */
.evidence-item.active-ping {
    border-color: rgba(197, 160, 89, 0.2);
    position: relative;
}

.evidence-item.active-ping::before {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: pulse-green 2s ease-in-out infinite;
}

/* Intelligence Report Card */
.intelligence-report-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(197, 160, 89, 0.04);
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
}

.evidence-timestamp {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: #64748b;
}

.report-body {
    padding: 1.5rem;
}

.evidence-meta {
    display: grid;
    gap: 1rem;
}

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

.meta-item label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
}

.meta-item span {
    font-size: 0.9rem;
    color: #e2e8f0;
}

.deadline-tracker label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #64748b;
    display: block;
    margin-bottom: 0.75rem;
}

.deadline-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.deadline-pill.urgent {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.05);
}

.deadline-pill .date {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--gold-300);
    font-weight: 700;
    white-space: nowrap;
}

.deadline-pill .event {
    font-size: 0.8rem;
    color: #94a3b8;
}

.report-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.lempod-status {
    font-size: 0.75rem;
    color: #64748b;
}

.lempod-icon {
    margin-right: 4px;
}

.view-all-intel {
    padding-top: 0.75rem;
}

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

    .agent-badge {
        font-size: 0.55rem;
        padding: 3px 6px;
    }
}

@media (max-width: 991px) {
    .recon-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Utility Classes */
.u-text-muted-400 {
    color: #94a3b8;
}

.u-text-muted-500 {
    color: #64748b;
}

.u-max-w-700 {
    max-width: 700px;
}

.u-mt-1 {
    margin-top: 1rem;
}

.u-fs-075 {
    font-size: 0.75rem;
}

.u-ls-2 {
    letter-spacing: 2px;
}

.u-text-gold-underline {
    color: var(--gold-300);
    text-decoration: underline;
}

.u-textarea-custom {
    color: #e2e8f0;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    resize: vertical;
    transition: border-color 0.3s;
}

.u-btn-small-no-border {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
    border: none;
}

.u-gradient-gold {
    background: linear-gradient(90deg, #f59e0b, var(--gold-300));
}

.u-gradient-red {
    background: linear-gradient(90deg, #ef4444, #f97316);
}

.u-gradient-purple {
    background: linear-gradient(90deg, #a855f7, #8b5cf6);
}

.u-gradient-blue {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.u-gradient-green {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.u-gradient-pink {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.u-flex {
    display: flex;
}

.u-gap-075 {
    gap: 0.75rem;
}

.u-flex-wrap {
    flex-wrap: wrap;
}

.u-w-full {
    width: 100%;
}

.u-rounded-12 {
    border-radius: 12px;
}

.u-outline-none {
    outline: none;
}

.u-relative {
    position: relative;
}

.u-absolute {
    position: absolute;
}

.u-pos-br-1 {
    bottom: 1rem;
    right: 1rem;
}

.u-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.u-mb-15 {
    margin-bottom: 1.5rem;
}

/* Progress Variable Support */
.prob-bar-fill {
    width: var(--progress, 0%);
}

.u-font-display {
    font-family: var(--font-display);
}

.u-ttu {
    text-transform: uppercase;
}

.u-text-green {
    color: var(--pipeline-green);
}

.u-text-blue {
    color: var(--pipeline-blue);
}

.u-text-gold {
    color: var(--gold-300);
}

.u-text-red {
    color: var(--pipeline-red);
}

.u-border-green-20 {
    border-color: rgba(34, 197, 94, 0.2);
}

.u-border-blue-20 {
    border-color: rgba(59, 130, 246, 0.2);
}

.u-border-gold-20 {
    border-color: rgba(197, 160, 89, 0.2);
}

.u-border-red-20 {
    border-color: rgba(239, 68, 68, 0.2);
}

.u-border-slate-20 {
    border-color: rgba(100, 116, 139, 0.2);
}

.u-bg-white-03 {
    background: rgba(255, 255, 255, 0.03);
}

.u-border-white-08 {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.u-bg-white-02 {
    background: rgba(255, 255, 255, 0.02);
}

.u-border-white-06 {
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Progress Variable Support */
.prob-bar-fill {
    width: var(--progress, 0%);
}

.u-h-4px {
    height: 4px;
}

.u-bg-white-05 {
    background: rgba(255, 255, 255, 0.05);
}

.u-round-4 {
    border-radius: 4px;
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-bg-green {
    background: var(--pipeline-green);
}

.u-bg-neutral {
    background: #94a3b8;
}

.u-bg-red {
    background: var(--pipeline-red);
}

.u-p-1-15 {
    padding: 1rem 1.5rem;
}

.u-opacity-0 {
    opacity: 0;
}

.u-translate-y-20 {
    transform: translateY(20px);
}

.u-transition-all {
    transition: all 0.5s ease;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.u-animation-spin {
    animation: spin 0.8s linear infinite;
}

.u-h-24 {
    height: 24px;
}

.u-w-24 {
    width: 24px;
}

.u-border-2 {
    border: 2px solid rgba(197, 160, 89, 0.3);
}

.u-border-t-gold {
    border-top-color: var(--gold-300);
}

.u-round-50 {
    border-radius: 50%;
}

.u-inline-block {
    display: inline-block;
}

.u-d-none {
    display: none;
}

.u-text-center {
    text-align: center;
}