/* Contact Cards */
.contact-section {
    margin-top: 24px;
    margin-bottom: 24px;
    padding: 32px;
}

.contact-section h2 {
    text-align: left;
    color: black;
    font-weight: 700;
    line-height: 27.6px;
    margin-block-end: 19.92px;
    margin-block-start: 19.92px;
}

.contact-cards-wrapper {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-card {
    padding: .5em;
    display: flex;
    gap: 1em;
    flex: 1 1 100%;
    min-width: 230px;
    font-weight: smaller;
    min-height: 135px;
}

@media only screen and (min-width: 768px) {
    .contact-card {
        flex: 1 0 40%;
    }
}

@media only screen and (min-width: 87rem) {
    .contact-card {
        flex: 1 0 20%;
    }
}

.contact-card-details {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    justify-content: flex-start;
}

.contact-card-details>* {
    margin: 0;
    line-height: 15.3333px
}

.contact-card-details>h4 {
    font-weight: 700;
    line-height: 18.4px;
    color: black;
    font-size: initial;
    min-height: 36.8px;
}


.contact-card img {
    object-fit: cover;
    object-position: center;
    height: 100px !important;
    width: 100px !important;
}

.contact-link {
    color: inherit;
}

.description {
    font-size: 13.3333px;
    min-height: 30.666px;
}

.contact-detail {
    display: flex;
    gap: .5em;
    font-size: 13.3333px;
    align-items: center;
    word-break: break-word;
}

.contact-detail a {
    border: none;
}

/* End Contact Cards */