/* Стили для ссылок в карточках контактов */

.contacts-card__subtitle a {
    color: #333 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacts-card__subtitle a:hover {
    color: var(--primary, #007bff) !important;
    text-decoration: underline;
}

.contacts-card__subtitle a:visited {
    color: #333 !important;
}

.contacts-card__subtitle a:active {
    color: var(--primary, #007bff) !important;
}


