/* Contact profile card styles */
.contact-profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.contact-profile-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.contact-profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent);
}

/* Logo variant to match homepage (not circular crop) */
.contact-profile-image--logo { border-radius: 1rem; overflow: hidden; }
.contact-profile-image--logo img { border-radius: 0; object-fit: contain; background: transparent; }

.contact-profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-profile-title {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .contact-profile-card { padding: 1.25rem; margin-bottom: 2rem; }
    .contact-profile-image { width: 96px; height: 96px; }
    .contact-profile-name { font-size: 1.25rem; }
}
