/* Убираем подчеркивание для ссылок внутри equipment-card */
.equipment-card {
    text-decoration: none;
    color: inherit; /* Сохраняем цвет текста как у родителя */
    display: block; /* Чтобы ссылка вела себя как блочный элемент */
}

/* Убираем подчеркивание при наведении */
.equipment-card:hover {
    text-decoration: none;
}

/* Убираем подчеркивание при активном состоянии */
.equipment-card:active {
    text-decoration: none;
}

/* Убираем подчеркивание при посещении */
.equipment-card:visited {
    text-decoration: none;
}

.equipment-card h3,
.equipment-card p {
    text-decoration: none !important;
    color: inherit !important;
}

