.club-card a {
    display: flex;
    gap: 1.2rem;
}

.club-card__infos {
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: space-between;
}

.club-card__club-name {
    font-weight: 600;
    margin-bottom: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.club-card__venue-name {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.club-card__distance {
    margin-bottom: 0.4rem;
}

@media (max-width: 768px) {
    .club-card a {
        flex-direction: column;
    }

    .activity-thumbnail {
        width: 100%;
    }

    .club-card__infos {
        gap: 0.6rem;
    }
}

@media (min-width: 769px) {
    .activity-thumbnail {
        width: var(--thumbnail-width);
    }
}
