/* --- BRAND VARIABLES & GLOBAL STYLES --- */
:root {
    --vrc-blue: #002D9C;
    --vrc-green: #3CB371;
    --dark-gray: #333333;
    --light-gray: #F4F4F4;
    --white: #FFFFFF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
}

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark-gray); background-color: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; color: var(--vrc-blue); line-height: 1.2; }
h2 { font-size: 3rem; margin-bottom: 3rem; text-align: center; }
a { color: var(--vrc-green); text-decoration: none; transition: color 0.3s ease; border-radius: 2px; }
a:hover { color: var(--vrc-blue); text-decoration: none; }
:focus-visible { outline: 3px solid var(--vrc-blue); outline-offset: 2px; transition: outline 0.2s ease;}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 6rem 0; }

/* --- HEADER & FOOTER --- */
.main-header { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: 1.5rem 0; border-bottom: 1px solid #e0e0e0; position: sticky; top: 0; z-index: 1000; }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--dark-gray); }
.logo img { height: 40px; width: auto; margin-right: 12px; border-radius: 4px;}
.accessibility-tools button { background: none; border: none; border-radius: 50%; width: 36px; height: 36px; margin-left: 8px; cursor: pointer; color: #555; transition: background-color 0.3s, color 0.3s; }
.accessibility-tools button:hover { background-color: var(--light-gray); color: var(--vrc-blue); }
.main-footer { background-color: var(--white); color: var(--dark-gray); padding: 4rem 0; border-top: 1px solid #e0e0e0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-grid h4 { color: var(--dark-gray); font-family: var(--font-heading); margin-bottom: 1rem; font-size: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 0.75rem; }
.footer-grid a { color: #555; text-decoration: none; }
.footer-grid a:hover { color: var(--vrc-blue); }
.footer-bottom { text-align: center; font-size: 0.9rem; color: #777; }

div#mobile-menu {
    padding-top: 0.5rem;
}

div#mobile-menu a {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
    position: relative;
    margin: 0.5rem;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vrc-blue);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 8rem 0;
    background-color: #f9f9f9;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-gray);
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 .highlight {
    color: var(--vrc-blue);
}

/* --- QUICK LINKS --- */
#quick-links {
    padding: 5rem 0;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.link-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-gray);
    transition: transform 0.3s ease;
}

.link-item a:hover {
    transform: translateY(-5px);
    color: var(--vrc-blue);
    text-decoration: none;
}

.link-item a:hover span {
    text-decoration: none;
}

.link-item i {
    font-size: 2.5rem;
    color: var(--vrc-blue);
}

/* --- NEWS & EVENTS SECTION --- */
#news-events {
    background-color: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.content-column h3 {
    font-size: 2rem;
    border-bottom: 2px solid var(--vrc-green);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.list-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
    list-style-type: none;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item .meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.list-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.list-item p {
    margin: 0;
}

/* --- ACCESSIBILITY STYLES --- */
body.high-contrast {
    background-color: #000;
    color: #fff;
}
body.high-contrast section,
body.high-contrast .main-header {
    background-color: #000 !important;
    border-color: yellow !important;
}
body.high-contrast h1, body.high-contrast h2, body.high-contrast h3, body.high-contrast h4 {
    color: yellow;
}
body.high-contrast a, body.high-contrast .btn {
    color: cyan;
}
body.high-contrast .logo, body.high-contrast .accessibility-tools button {
    color: #fff;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    h2 { font-size: 2.5rem; }
    .hero h1 { font-size: 3rem; }
    .content-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}


/* --- PAGE-SPECIFIC STYLES --- */

/* Mission Section */
.mission-vision {
    text-align: center;
    background-color: #f9f9f9;
}
.mission-vision h2 {
    color: var(--dark-gray);
}
.mission-vision p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* History Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--vrc-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    border: 4px solid var(--vrc-blue);
    top: 28px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-left {
    left: 0;
}
.timeline-right {
    left: 50%;
}
.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 32px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--light-gray);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--light-gray);
}
.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 32px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--light-gray);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--light-gray) transparent transparent;
}
.timeline-right::after {
    left: -10px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: var(--light-gray);
    position: relative;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.timeline-content:hover {
    transform: scale(1.03);
}
.timeline-content h3 {
    font-size: 1.5rem;
}

/* Governance Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid var(--light-gray);
}
.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.team-member p {
    color: #555;
    font-style: italic;
}
.section-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

/* Executive Staff List */
.staff-list {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
}
.staff-list ul {
    list-style: none;
}
.staff-list li {
    font-size: 1.1rem;
    padding: 0.5rem 0;
}
.staff-list .title {
    color: #555;
    font-style: italic;
    display: block;
    font-size: 0.9rem;
}

/* Public Duty Section */
.public-duty {
    background-color: var(--vrc-blue);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
}
.public-duty h2, .public-duty h3 {
    color: var(--white);
}
.public-duty p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto;
}

/* --- PAGE-SPECIFIC STYLES --- */
.page-hero { text-align: center; padding: 6rem 0; background-color: #f9f9f9; }
.page-hero h1 { font-size: 4rem; color: var(--dark-gray); }

/* Apply/Renew Section */
.apply-renew-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.action-box { text-align: center; padding: 3rem; border: 1px solid #ddd; border-radius: 12px; }
.action-box h3 { font-size: 2rem; margin-bottom: 1rem; }
.action-box p { margin-bottom: 2rem; max-width: 40ch; margin-left: auto; margin-right: auto; }
.btn-primary { background-color: var(--vrc-blue); color: var(--white); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-family: var(--font-heading); display: inline-block; }
.btn-primary:hover { background-color: #001f6b; text-decoration: none; color: white; }
.btn-secondary { background-color: var(--vrc-green); }
.btn-secondary:hover { background-color: #2e8b57; }

/* License Categories Section */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.category-card { background-color: #f9f9f9; padding: 2rem; border-radius: 12px; text-align: center; }
.category-card i { font-size: 3rem; color: var(--vrc-green); margin-bottom: 1rem; }
.category-card h4 { font-size: 1.5rem; }

/* Guides & Requirements Section */
.guides-list { max-width: 800px; margin: 0 auto; }
.guide-item { display: flex; align-items: center; gap: 2rem; padding: 2rem; border-bottom: 1px solid #e0e0e0; }
.guide-item:last-child { border-bottom: none; }
.guide-item i { font-size: 2.5rem; color: var(--vrc-blue); flex-shrink: 0; }
.guide-item h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Bulk Licensing Section */
.api-info { background-color: var(--dark-gray); color: var(--white); padding: 4rem; border-radius: 12px; text-align: center; }
.api-info h2, .api-info h3 { color: var(--white); }
.api-info p { max-width: 60ch; margin: 0 auto 2rem; color: #ccc; }
.api-info a { color: var(--vrc-green); font-weight: 700; }

/* Contact Directory */
.directory-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.directory-division h3 { font-size: 1.75rem; border-bottom: 2px solid var(--vrc-green); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.contact-person { margin-bottom: 1rem; }
.contact-person strong { font-size: 1.1rem; }
.contact-person .title { color: #555; font-style: italic; display: block; }
.contact-person a { font-weight: 700; }

/* Forms & Location Grid */
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }
.form-column h3 { font-size: 2rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { font-weight: 700; display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.75rem; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; font-family: var(--font-body); }
.form-group textarea { resize: vertical; min-height: 150px; }
.btn-primary { background-color: var(--vrc-blue); color: var(--white); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-family: var(--font-heading); display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background-color: #001f6b; text-decoration: none; color: white; }

/* Location Info */
.location-info { background-color: #f9f9f9; padding: 2rem; border-radius: 12px; }
.location-info h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.location-info p { margin-bottom: 1rem; }
.map-placeholder { background-color: #e0e0e0; height: 200px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-style: italic; color: #777; }

/* Anonymous Feedback */
.anonymous-form { background-color: var(--dark-gray); color: var(--white); padding: 4rem; border-radius: 12px; }
.anonymous-form h2, .anonymous-form h3 { color: var(--white); }
.anonymous-form p { color: #ccc; max-width: 70ch; margin: 0 auto 2rem; text-align: center; }

/* Responsive */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* Apply/Renew Section */
.apply-renew-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.action-box { text-align: center; padding: 3rem; border: 1px solid #ddd; border-radius: 12px; }
.action-box h3 { font-size: 2rem; margin-bottom: 1rem; }
.action-box p { margin-bottom: 2rem; max-width: 40ch; margin-left: auto; margin-right: auto; }
.btn-primary { background-color: var(--vrc-blue); color: var(--white); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-family: var(--font-heading); display: inline-block; }
.btn-primary:hover { background-color: #001f6b; text-decoration: none; color: white; }
.btn-secondary { background-color: var(--vrc-green); }
.btn-secondary:hover { background-color: #2e8b57; }

/* License Categories Section */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.category-card { background-color: #f9f9f9; padding: 2rem; border-radius: 12px; text-align: center; }
.category-card i { font-size: 3rem; color: var(--vrc-green); margin-bottom: 1rem; }
.category-card h4 { font-size: 1.5rem; }

/* Guides & Requirements Section */
.guides-list { max-width: 800px; margin: 0 auto; }
.guide-item { display: flex; align-items: center; gap: 2rem; padding: 2rem; border-bottom: 1px solid #e0e0e0; }
.guide-item:last-child { border-bottom: none; }
.guide-item i { font-size: 2.5rem; color: var(--vrc-blue); flex-shrink: 0; }
.guide-item h4 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Bulk Licensing Section */
.api-info { background-color: var(--dark-gray); color: var(--white); padding: 4rem; border-radius: 12px; text-align: center; }
.api-info h2, .api-info h3 { color: var(--white); }
.api-info p { max-width: 60ch; margin: 0 auto 2rem; color: #ccc; }
.api-info a { color: var(--vrc-green); font-weight: 700; }

/* Meeting Calendar */
.meeting-list { max-width: 900px; margin: 0 auto; }
.meeting-item { display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid #e0e0e0; }
.meeting-date { text-align: center; font-family: var(--font-heading); }
.meeting-date .month { font-size: 1rem; text-transform: uppercase; font-weight: 700; }
.meeting-date .day { font-size: 3rem; font-weight: 800; color: var(--vrc-blue); line-height: 1; }
.meeting-details h3 { font-size: 1.75rem; margin-bottom: 1rem; }
.meeting-meta { list-style: none; }
.meeting-meta li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.meeting-meta i { color: var(--vrc-green); }
.btn-primary { background-color: var(--vrc-blue); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 700; font-family: var(--font-heading); display: inline-block; }
.btn-primary:hover { background-color: #001f6b; text-decoration: none; color: white; }

/* Meeting Minutes & Recordings */
.archive-controls { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.archive-controls select, .archive-controls input { padding: 0.75rem; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem; }
.archive-list { max-width: 900px; margin: 0 auto; }
.archive-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 1rem; }
.archive-item i { font-size: 2rem; color: var(--vrc-blue); }
.archive-info strong { font-size: 1.25rem; }
.archive-links { margin-left: auto; display: flex; gap: 1rem; }
.archive-links a { font-weight: 700; }

/* Budget & Financials */
.financials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.financial-card { background-color: #f9f9f9; padding: 2rem; border-radius: 12px; text-align: center; }
.financial-card i { font-size: 3rem; color: var(--vrc-green); margin-bottom: 1rem; }
.financial-card h4 { font-size: 1.5rem; margin-bottom: 1rem; }

/* --- PAGE-SPECIFIC STYLES --- */

/* Race Calendar Section */
.calendar-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 12px;
}
.filter-group label { font-weight: 700; display: block; margin-bottom: 0.5rem; }
.filter-group select, .filter-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--white);
}
.calendar-results .race-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 120px;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}
.calendar-results .race-item:last-child { border-bottom: none; }
.calendar-results .race-header { font-weight: 800; color: var(--dark-gray); padding-bottom: 1rem; }
.race-item strong { font-family: var(--font-heading); color: var(--vrc-blue); }
.btn-details { background-color: var(--vrc-blue); color: var(--white); padding: 0.5rem 1rem; border-radius: 6px; text-align: center; }
.btn-details:hover { background-color: #001f6b; text-decoration: none; color: white; }

/* Results & Statistics Section */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.live-feed h3, .historical-data h3 { font-size: 2rem; border-bottom: 2px solid var(--vrc-green); padding-bottom: 1rem; margin-bottom: 2rem; }
.result-item { padding: 1rem 0; border-bottom: 1px solid #ddd; }
.result-item:last-child { border-bottom: none; }
.result-item .track-race { font-weight: 800; margin-bottom: 0.5rem; }
.result-item .finishers { display: flex; flex-wrap: wrap; gap: 1rem; }
.historical-data p { margin-bottom: 2rem; }
.btn-primary { background-color: var(--vrc-green); color: var(--white); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-family: var(--font-heading); }
.btn-primary:hover { background-color: #2e8b57; text-decoration: none; color: white; }

/* Tracks & Venues Section */
.tracks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.track-card { background-color: #f9f9f9; border-radius: 12px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.track-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.track-card img { width: 100%; height: 200px; object-fit: cover; }
.track-content { padding: 1.5rem; }
.track-content h4 { font-size: 1.5rem; }
.track-info { list-style: none; margin-top: 1rem; }
.track-info li { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.track-info i { color: var(--vrc-green); }

/* Feature Stories Section */
.stories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.story-card { position: relative; border-radius: 12px; overflow: hidden; color: white; }
.story-card img { width: 100%; height: 400px; object-fit: cover; display: block; }
.story-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.story-content .category { font-weight: 700; text-transform: uppercase; font-size: 0.8rem; color: var(--vrc-green); }
.story-content h4 { font-size: 1.5rem; color: white; }
.story-card a::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }

/* Statutes & Regulations */
.search-bar { display: flex; max-width: 800px; margin: 0 auto 3rem; }
.search-bar input { flex-grow: 1; padding: 1rem; border: 1px solid #ddd; border-radius: 8px 0 0 8px; font-size: 1rem; }
.search-bar button { padding: 1rem 1.5rem; border: none; background-color: var(--vrc-blue); color: white; font-size: 1rem; border-radius: 0 8px 8px 0; cursor: pointer; }
.document-list { max-width: 800px; margin: 0 auto; }
.document-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; border-bottom: 1px solid #e0e0e0; }
.document-item:last-child { border-bottom: none; }
.document-item i { font-size: 2rem; color: var(--vrc-green); }
.document-info strong { display: block; font-size: 1.25rem; }
.document-info span { color: #555; font-size: 0.9rem; }
.document-item a { margin-left: auto; font-weight: 700; }

/* Compliance Checklists */
.checklists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.checklist-card { background-color: #f9f9f9; padding: 2rem; border-radius: 12px; text-align: center; }
.checklist-card i { font-size: 3rem; color: var(--vrc-blue); margin-bottom: 1rem; }
.checklist-card h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.btn-primary { background-color: var(--vrc-blue); color: var(--white); padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 700; font-family: var(--font-heading); display: inline-block; }
.btn-primary:hover { background-color: #001f6b; text-decoration: none; color: white; }

/* Reporting Requirements */
.reporting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.reporting-info p { margin-bottom: 2rem; }
.form-links ul { list-style: none; }
.form-links li { margin-bottom: 1rem; }
.form-links a { display: inline-flex; align-items: center; gap: 0.75rem; font-weight: 700; font-size: 1.1rem; }
.form-links i { color: var(--vrc-green); }

/* Audits & Reports */
.report-list { max-width: 800px; margin: 0 auto; }
.report-item { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem; border: 1px solid #e0e0e0; border-radius: 8px; margin-bottom: 1rem; }
.report-item i { font-size: 2.5rem; color: var(--vrc-blue); }
.report-info strong { display: block; font-size: 1.25rem; }
.report-info span { color: #555; font-size: 0.9rem; }
.report-item a { margin-left: auto; font-weight: 700; }

/* Responsive */
@media (max-width: 768px) {
    h2, .page-hero h1 { font-size: 2.5rem; }
    .reporting-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    /* .logo {width: 150px;} */
    /* .accessibility-tools {width: 125px;} */

    #mobile-menu-button { display: flex; }
    #desktop-menu { display: none; }
    
}

@media (min-width: 769px) {
    #mobile-menu, #mobile-menu-button { display: none; }
    #desktop-menu { display: flex; }
    /* .accessibility-tools {width: 35%;} */
    
}

@media (max-width: 768px) {
    h2, .page-hero h1 { font-size: 2.5rem; }
    .meeting-item { grid-template-columns: 1fr; text-align: center; }
    .meeting-date { margin-bottom: 1rem; }
    .meeting-meta { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h2 { font-size: 2.5rem; }
    .calendar-results .race-item { grid-template-columns: 1fr 1fr; gap: 1rem 2rem; }
    .calendar-results .race-header { display: none; }
    .results-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h2, .page-hero h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h2, .page-hero h1 { font-size: 2.5rem; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .timeline-item::before { left: 60px; border: medium solid var(--light-gray); border-width: 10px 10px 10px 0; border-color: transparent var(--light-gray) transparent transparent; }
    .timeline-left::after, .timeline-right::after { left: 21px; }
    .timeline-right { left: 0%; }
    .apply-renew-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    .hero h1 { font-size: 2.2rem; }
    .links-grid { grid-template-columns: 1fr 1fr; gap: 3rem 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
}