:root {
    --sdsu-red: #A6192E;
    --sdsu-red-dark: #8E1728;
    --bg-light: #F4F4F2;
    --border-light: #E5E5E5;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --white: #FFFFFF;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    color: var(--sdsu-red);
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--sdsu-red);
}

.hero {
    background: var(--sdsu-red);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    max-width: 750px;
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.75rem;
    border-radius: 6px;
}

.card-title {
    font-weight: 600;
}

.card-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.card-description {
    color: var(--text-secondary);
}

.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
}
