/* Grid Layout */
.contact-cards-grid-2a5d6270 {
    display: grid;
    gap: 15px;
}

/* Card Styling */
.contact-card-2a5d6270 {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    background-color: #f9f9f6; /* Off-white matching image */
    display: flex;
    flex-direction: column;
}

/* Top Section (Avatar + Info) */
.contact-card-top-2a5d6270 {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Avatar */
.contact-card-avatar-2a5d6270 {
    width: 48px;
    height: 48px;
    background-color: #0052a3; /* Deep blue from image */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 18px;
    flex-shrink: 0;
}

/* Text Info */
.contact-card-info-2a5d6270 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card-role-2a5d6270 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 2px;
}

.contact-card-name-2a5d6270 {
    font-size: 16px;
    font-weight: 400;
    color: #111;
}

/* Divider */
.contact-card-divider-2a5d6270 {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}

/* Bottom Section (Phone) */
.contact-card-bottom-2a5d6270 {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.contact-card-bottom-2a5d6270 a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-card-bottom-2a5d6270 a:hover {
    opacity: 0.8;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0052a3;
    font-size: 14px;
}

.contact-icon-wrapper svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}