﻿.contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 220px;
    padding: 22px 26px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.25);
}

.contact-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.contact-card__sub {
    font-size: 14px;
    opacity: 0.7;
    color: #fff;
}

.contact-card--cv {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(255, 176, 0, 0.12));
}