@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.grid-container {
    display: grid;
    grid-template-columns: 70% calc(30% - 10px);
    gap: 10px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    background-color: #fff;
}

/* .main-column {
    display: flex;
    gap: 10px;
} */

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.full-width {
    grid-template-columns: 1fr;
}

.section {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.side-column .section {
    background-color: #f9f9f9;
}

h1, h2, h3 {
    margin: 0 0 10px;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 16px;
    color: #121212;
    line-height: normal;
    margin-bottom: 6px;
}

p {
    margin: 0 0 5px;
}

p a {
    color: #333;
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.tagline {
    font-size: 22px;
    font-weight: bold;
    color: #007BFF;
    text-align: center;
}

.profile-imgs {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 10px;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.profile-img.active {
    opacity: 1;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
}

ul li {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
    font-size: 14px;
}

.clubs {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
}

.clubs img {
    max-width: 70px;
    max-height: 70px;
    object-position: center;
}

.coach-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
}

.coach-info td {
    padding: 8px;
    border: 1px solid #ddd;
}

.coach-info td:first-child {
    font-weight: bold;
    background-color: #f9f9f9;
    width: 30%;
    text-align: center;
}

.coach-info a {
    color: #121212;
    text-decoration: underline;
}

.coach-info a:hover {
    text-decoration: underline;
}

.desktop-options {
    display: block;
}

.mobile-options {
    display: none;
}

@media (max-width: 992px) {
    .grid-container {
        gap: 5px;
        padding: 8px;
    }

    .section {
        padding: 10px 8px;
    }

    .section h3 {
        font-size: 11px;
        margin-bottom: 5px;
        line-height: normal;
    }

    .section p {
        font-size: 10px;
        margin: 0 0 5px;
    }

    .tagline {
        font-size: 15px;
        line-height: normal;
        line-height: 18px;
    }

    .profile-imgs {
        width: 100px;
        height: 100px;
    }

    h1 {
        line-height: normal;
        text-align: center;
        font-size: 15px;
    }

    .row,
    .main-column {
        gap: 5px;
        overflow: hidden;
    }

    .section p a {
        word-wrap: break-word;
    }

    .main-column .row .section:nth-child(1){
        max-width: 100%;
    }

    h1 {
        line-height: 18px;
    }

    ul li {
        font-size: 11px;
        line-height: normal;
        margin-bottom: 5px;
        padding: 8px;
        word-break: break-word;
    }

    .side-column .section {
        height: calc(100% - 20px);
        background-color: #f9f9f9;
    }

    .coach-info td:first-child {
        font-size: 11px;
    }

    .coach-info td {
        font-size: 11px;
    }

    .clubs {
        justify-content: space-between;
        gap: 0;
        flex-wrap: wrap;
        margin-top: 5px;
        margin-bottom: 0;
    }

    .clubs img {
        max-width: 50%;
        max-height: 50%;
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 5px;
    }

    .coach-info table, .coach-info tbody, .coach-info tr, .coach-info td {
        display: block;
        width: 100%;
    }

    .coach-info td {
        border: none;
        padding: 5px 0;
    }

    .coach-info td:first-child {
        background-color: transparent;
        font-weight: bold;
        padding-top: 0;
        text-align: left;
        padding-bottom: 0;
    }

    .coach-info td:last-child {
        padding-bottom: 0;
    }

    .coach-info a {
        word-break: break-all;
    }

    .main-column .row.full-width .section {
        max-width: 100%;
    }

    .container {
        padding: 0 8px;
    }
}

@media (max-width: 600px) {
    .main-column .row .section:nth-child(2) {
        overflow: hidden;
    }

    .break-word {
        word-break: break-word;
    }

    .desktop-options {
        display: none;
    }

    .mobile-options {
        display: block;
    }

    .location > strong {
        display: block;
    }

    /* .simple-list {
        list-style: disc;
        padding-left: 15px;
    } */

    .simple-list li {
        padding: 0;
        background-color: transparent;
    }
}
