#race-lijst {
    padding-top: 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
    padding-bottom: 20px;
}

.race-item {
    color: white;
    width: 90%;
    font-family: 'Antonio', sans-serif;
    background-color: #111111;
    border: 1px solid #333333;
    padding: 0;
    overflow: hidden;
    display: block;
}

/* Afbeelding bovenaan de card */
.race-img-wrap {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.race-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tekst onder de afbeelding */
.race-item-text {
    padding: 10px;
}

.race-item p {
    display: flex;
    align-items: center;
    color: #9D9D9D;
    font-family: Inter, sans-serif;
}

.race-item p img {
    width: 25px;
}

.groene-lijn {
    display: block;
    width: 90%;
    background-color: #00b050;
    height: 2px;
}

.rode-lijn {
    display: block;
    width: 90%;
    background-color: #d92027;
    height: 2px;
}

p.upcoming-groen {
    color: #00b050;
    font-weight: bold;
}

p.completed-rood {
    color: #d92027;
    font-weight: bold;
}


@media (min-width: 400px) {
    .race-img-wrap {
        height: 350px;
    }
}

@media (min-width: 768px) {
    #race-lijst {
        padding-top: 150px;
        width: 80%;
        margin: 0 auto;
    }

    .race-item {
        width: 300px;
    }

    .race-img-wrap {
        height: 160px;
    }
}
