/* ===========================================================

	Title: sustainability.css
	Created: 2024-11-05

=========================================================== */
.athlete-name {
    background-image: linear-gradient(90deg, rgba(199,243,138,1), rgba(199,243,138,.75) 50%, rgba(199,243,138,.5));
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin: 40px 0 24px;
    padding: .5em 1em;
    width: calc(50% - 32px);
}

.athlete-profile {
    border-bottom: 2px solid #156082;
    display: block;
    font-weight: bold;
    width: calc(50% - 32px);
}

.athlete-profile--table th {
    width: 25%;
}

.athlete-img {
    margin-top: 16px;
    width: 100%;
}

@media screen and (max-width:1024px) {
    .athlete-name {
        width: 100%;
    }

    .athlete-profile {
        border-bottom: 2px solid #156082;
        display: block;
        width: 100%;
    }

}