.club-page__title {
    margin-bottom: 0.6rem;
}

.club-page__intro {
    display: flex;
    gap: 3.2rem;
}

.activity-full-thumbnail {
    border-radius: 1rem;
    display: block;
    height: var(--thumbnail-large-height);
    max-width: 100%;
    object-fit: cover;
    width: var(--thumbnail-large-width);
}

.club-page > *:not(:first-child) {
    margin-top: var(--s-md);
}

.club-page .club-page h1 .club-name {
    color: var(--brand-primary);
}

ul.club-tags {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: var(--s-xs);
}

ul.club-tags li {
    background-color: var(--light-grey);
    border-radius: var(--s-4xs);
    font-size: var(--font-sm);
    padding: var(--s-4xs) var(--s-2xs);
}

.club-page__description {
    margin-bottom: 1rem;
}

.club-page__address {
    margin-bottom: 0.6rem;
}

.club-page__show-map {
    color: var(--brand-primary);
}

.club-page__details {
    display: flex;
    justify-content: space-between;
    gap: var(--s-md);
}

.club-page__box {
    background-color: var(--light-grey);
    border-radius: var(--s-s);
    color: var(--dark-grey);
    padding: var(--s-sm);
}

.club-page__schedule {
    flex: 1;
}

.club-page__schedule-slot {
    display: flex;
    justify-content: space-between;
}

.club-page__schedule-slot > * {
    align-items: center;
    display: flex;
    gap: 0.5rem;
}

.club-page__schedule-day {
    flex: 3;
    display: flex;
    align-items: center;
    position: relative;
}

.club-page__schedule-day::after {
    content: "";
    flex: 1;
    border-top: 1px solid var(--medium-grey);
    height: 1px;
    margin: 0 1rem;
}

.club-page__schedule-time,
.club-page__schedule-age {
    flex: 2;
}

.club-page__prices {
    margin-bottom: var(--s-sm);
}

.club-page__map:not(.large) .mapbox {
    border-radius: var(--s-s);
    height: 100%;
    min-height: 290px;
    min-width: 220px;
    width: 100%;
}

.club-page__recommendations-list {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.2rem;
    overflow-x: scroll;
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

@media (min-width: 769px) {
    .club-page__recommendations {
        margin-top: 3rem;
    }

    .club-page__recommendations-list {
        padding-left: calc((100% - 95%) / 2);
        padding-right: 1rem;
    }
}

.club-page__recommendations-list::-webkit-scrollbar {
    display: none; /* WebKit (Chrome, Safari) */
}

.club-page__recommendations-list > * {
    flex: 1;
}

.club-page__contact-forms {
    text-align: center;
    margin: 4rem auto;
    max-width: 33rem;
    position: relative;
    z-index: 0;
}

.club-page__contact-forms > svg {
    width: 100%;
    height: 100%;
    margin-top: -2rem;
    position: absolute;
    z-index: -1;
}

.club-page__contact-forms__text {
    font-size: var(--font-lg);
    font-weight: 600;
    margin: 2rem auto;
}

.club-page__contact-forms__cta-buttons {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: var(--s-sm);
}

.club-page__contact-forms__cta-buttons a {
    margin: 0;
}

@media (max-width: 768px) {
    .club-page__recommendations {
        margin-top: 2.5rem;
    }

    .club-page__details {
        flex-direction: column;
    }

    .club-page__intro {
        flex-direction: column;
        gap: 1.2rem;
    }

    .club-page__contact-forms__cta-buttons {
        flex-direction: column;
        gap: var(--s-xs);
    }

    .club-page__recommendations-list {
        padding-right: 0.5rem;
    }
}

@media (min-width: 769px) {
    .club-page__schedule-slot {
        min-width: 550px;
    }
}
