/* # Additional CSS for BOD Cards
---------------------------------------------------------------------------------------------------- */

.bod-cards {
    max-width: 1152px;
}

.bod-cards .bod-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.bod-cards .bod-row:last-of-type {
    margin-bottom: 0;
}

.bod-cards .card {
    background: var(--light);
    border: 1px solid #E5E0DC;
    box-shadow: 0px 1px 2px 0px #0000000D;
    border-radius: 12px;
    flex: 0 0 368px;
    overflow: hidden;
}

.bod-cards .card-content {
    text-align: center;
    padding: 24px 17px;
}

.bod-cards .card-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 16px;
}

.bod-cards .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bod-cards .card-name {
    font-size: 18px;
    line-height: 1.56;
    margin: 16px 0 4px;
}

.bod-cards .card-name,
.bod-cards .card-position {
    font-weight: 600;
}

.bod-cards .card-position,
.bod-cards .card-description {
    font-size: 14px;
    line-height: 1.43;
}

.bod-cards .card-position{
    color: var(--light-green);
    margin: 0 0 8px;
}

.bod-cards .card-description {
    color: var(--light-gray);
}

@media only screen and (max-width: 1024px) {
    .bod-cards .card-name {
        font-size: 17px;
    }
}

@media only screen and (max-width: 768px) {
    .bod-cards .bod-row {
        flex-direction: column;
    }

    .bod-cards .card {
        flex: 0 0 auto;
    }

    .bod-cards .card-name {
        font-size: 16px;
    }
}