/*Heading and subheading styles*/
.bl-baud-heading {
    text-align: center;
    font-family: "Financier Display", Sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 0.9em;
    color: var(--e-global-color-072ffad);
}

.bl-baud-subheading {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
}

.bl-baud-record-title {
    font-size: 16px;
    font-weight: bold;
    color: #001F5C;
}

.bl-baud-record {
    font-size: 16px;
    font-weight: bold;
    color: #5A5F61;
}

.bl-baud-record > span:nth-of-type(1) {
    margin-right: .5rem;
}

.bl-baud-record > span:nth-of-type(2) {
    margin-left: .5rem;
}

.bl-baud-heading + .bl-baud-subheading {
    border-top: 1px solid #DDDDDD;
    padding-top: 1.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 25rem;
    margin: 2rem auto 4rem auto;
}

/*Coach card and header gallery image styles*/
.bl-baud-gallery-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.bl-baud-card-wrapper {
    width: calc(100% / 5);
}

.bl-baud-card {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: 1rem;
}

.bl-baud-card-content {
    background: #9ACAEC;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: .5rem 0.25rem;
    width: 100%;
}

.bl-baud-card-content > div {
    color: #001F5C;
    font-weight: bold;
    font-size: 15px;
    width: 100%;
}

.bl-baud-card-content > div > span {
    /*display: flex;*/
}

.bl-baud-card-content > span {
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    width: 100%;
}

/*Blackbaud table wrapping class*/
table.bl-baud {
    width: 100%;
    border-collapse: collapse;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/*table header and body styles*/
table.bl-baud thead th {
    font-size: 14px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 200;
    color: #343434;
    letter-spacing: 2px;
}

table.bl-baud tbody td {
    font-size: 14px;
    font-weight: bold;
    color: #001F5C;
}

table.bl-baud td, table.bl-baud th {
    padding: .75rem 1rem;
    border: none;
}

table.bl-baud thead {
    border-top: 1px solid #D8D8D8;
}

table.bl-baud tbody tr:nth-of-type(odd) {
    background: #F2F2F2;
    border-top: 1px solid #D8D8D8;
    border-bottom: 1px solid #D8D8D8;
}

/*table column width styles: add .bl-baud-players to .bl-baud for Roster sized columns*/
table.bl-baud.bl-baud-players tr > th:nth-of-type(1), table.bl-baud.bl-baud-players tr > td:nth-of-type(1) {
    max-width: 9%;
    width: 100%;
}

table.bl-baud.bl-baud-players tr > th:nth-of-type(2), table.bl-baud.bl-baud-players tr > td:nth-of-type(2) {
    max-width: 9%;
    width: 100%;
}

table.bl-baud.bl-baud-players tr > th:nth-of-type(3), table.bl-baud.bl-baud-players tr > td:nth-of-type(3) {
    max-width: 50%;
    width: 100%;
}

table.bl-baud.bl-baud-players tr > th:nth-of-type(4), table.bl-baud.bl-baud-players tr > td:nth-of-type(4) {
    max-width: 32%;
    width: 100%;
}

table.bl-baud.bl-baud-players tr > td img {
    border-radius: 4px;
    width: 45px;
}


/*mobile styles*/
@media screen and (max-width: 1024px) {
    .bl-baud-card-wrapper {
        width: calc(100% / 4);
    }
}

@media screen and (max-width: 768px) {
    .bl-baud-card-wrapper {
        width: calc(100% / 2);
    }
}

