﻿.club-details {
    position: relative;
    padding: 0;
    margin: 60px 0px 0px 0px;
    width: 100%;
    min-height: 250px;
    background: var(--navy-dark-hex, #062732);
    overflow: hidden;
}

@media (min-width: 768px) {
    .club-details {
        margin: 75px 0px 0px 0px;
    }
}

@media (min-width: 992px) {
    .club-details {
        margin: 85px 0px 0px 0px;
    }
}

.club-details .container {
    height: 100%;
}

.page-title {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.club-info {
    position: relative;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
}

    .club-info h4 {
        color: var(--white-hex, #ffffff) !important;
    }

    .club-info h6 {
        color: var(--teal-hex, #2eb5b2) !important;
    }

    .club-info i {
        height: 50px;
        width: 50px;
        background-color: var(--white-hex, #ffffff);
        color: var(--teal-hex, #2eb5b2);
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

.club-logo-wrapper {
    top: 0;
    left: 0;
    height: 180px;
    width: 180px;
    border-radius: var(--radius, 0.313rem);
}

    .club-logo-wrapper img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius, 0.313rem);
    }