.schedule-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 20px;
    color: white;
}

.schedule-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ccc;
}

/* Grid same as your Race Calendar */
.race-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.race-card {
    position: relative;
    background: #121212;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: transform .2s ease;
}

.race-card:hover {
    transform: translateY(-5px);
}

.race-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.race-info {
    padding: 15px;
}

.race-round {
    font-size: 0.8rem;
    color: #bbb;
    font-weight: 600;
}

.race-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 5px 0;
}

.race-date {
    font-size: 0.95rem;
    color: #ccc;
}




/* HERO WRAPPER */
.schedule-hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

/* HERO IMAGE */
.schedule-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

/* TEXT OVERLAY */
.schedule-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}




/* --- Load More Button Styling --- */
.load-more-btn {
    display: block;
    width: 200px;
    margin: 40px auto 20px;
    padding: 12px 20px;
    background-color: var(--f1-red);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.load-more-btn:hover {
    background-color: #cc0000;
}

/* Class to hide the button when no more articles are left */
.load-more-btn.hidden {
    display: none;
}