/*
 * ============================================================
 * GENERATION CTA — REMOVE LEGACY TOP ACCENT
 * ============================================================
 *
 * Старый базовый CSS создаёт:
 *
 * .generationListCard::before
 * height: 3px
 *
 * и на hover / focus-within задаёт ему gradient.
 *
 * Полностью отключаем этот декоративный слой.
 */

.generationListCard::before,
.generationListCard:hover::before,
.generationListCard:focus-within::before {
  content: none !important;

  display: none !important;

  width: 0 !important;
  height: 0 !important;

  background: none !important;
  background-image: none !important;

  border: 0 !important;

  box-shadow: none !important;
}


/*
 * Не трогаем геометрию самой карточки.
 * Остаются:
 *
 * - белый фон;
 * - основная рамка;
 * - синяя hover-тень.
 */

@media (hover: hover) {

  .generationListCard:hover {
    border-color:
      #2f6fd6 !important;

    box-shadow:
      5px 5px 0
      #2f6fd6 !important;

    transform:
      none !important;
  }

}
