/* ==================== */
/* Contact Card         */
/* ==================== */

.card-container {
    background-color: #fff;
    max-width: 320px;
    max-height: 280px;
    border-radius: 20px;
    box-shadow: 0 8px 0 rgba(240, 91, 137, 1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.headshot {
    width: 125px;
    height: 125px;
    padding: 5px;
    border-radius: 100%;
    border: 4px solid #f05b89;
    box-shadow: inset 0 0 0 8px #fff;
    object-fit: cover;
    display: block;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    width: 100%;
}

.card-content h5 {
    padding-top: 15px;
}

.card-content small {
    padding-bottom: 15px;
}

.card-content h5,
.card-content small,
.card-content a {
    display: block;
    margin: 0;
}
