:root {
    --u-blue: #002855;
    --u-gold: #FFC72C;
    --bg-page: #F8FAFC;
    --white: #FFFFFF;
    --text: #0F172A;
    --border: #E2E8F0;
}

body.dark-mode {
    --bg-page: #0B0E14;
    --white: #1C2128;
    --text: #F8FAFC;
    --border: #30363D;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-page);
    color: var(--text);
    transition: background 0.3s ease;
}

.logo-bar {
    background: var(--u-gold);
    color: var(--u-blue);
    padding: 8px 5%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-align: center;
}

.ucm-hero-block {
    background: var(--u-blue);
    color: white;
    padding: 3rem 0;
    border-bottom: 5px solid var(--u-gold);
}

.container { width: 92%; max-width: 1300px; margin: 0 auto; }

.hero-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.title-section h1 { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; margin: 0; }
.curated-text { color: var(--u-gold); font-weight: 600; margin-top: 5px; }

.a11y-toolbar { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-a11y {
    background: var(--u-gold);
    color: var(--u-blue);
    border: none;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.contact-btn { background: white; }

.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

@media (min-width: 992px) {
    .dashboard-wrapper { flex-direction: row; align-items: flex-start; }
}

.filter-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    flex: 0 0 260px;
    position: sticky;
    top: 20px;
}

.filter-title {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748B;
    margin: 1.5rem 0 1rem;
}

.checkbox-item { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; cursor: pointer; }

/* EA-Style Listing Item */
.listing-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    transition: transform 0.2s, box-shadow 0.2s;
}

.listing-item:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: var(--u-gold); }

.listing-content { flex: 1; padding-right: 2rem; }

.badge-field { background: #DBEAFE; color: #1E40AF; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.badge-eligibility { border: 1px solid var(--border); color: #64748B; padding: 3px 8px; border-radius: 4px; font-size: 11px; margin-left: 10px; }

.listing-stats { flex: 0 0 200px; text-align: right; border-left: 1px solid var(--border); padding-left: 2rem; display: flex; flex-direction: column; justify-content: center; }

.stat-box { font-size: 14px; margin-bottom: 8px; }

.btn-primary {
    background: var(--u-blue);
    color: white;
    text-decoration: none;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 15px;
}