/* === ИСХОДНЫЙ КОД (без изменений) === */
.glow-btn {
    animation: softTealGlow 3s infinite ease-in-out;
}
.glow-btn-strong-permanent {
    animation: strongTealGlow 2.5s infinite ease-in-out;
}
.glow-btn-strong {
    transition: all 0.3s ease;
}
.glow-btn-strong:hover {
    animation: strongTealGlow 2.5s infinite ease-in-out;
}
@keyframes softTealGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(74, 158, 154, 0.5); }
    50% { box-shadow: 0 0 15px rgba(74, 158, 154, 0.8), 0 0 25px rgba(74, 158, 154, 0.3); }
}
@keyframes strongTealGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(74, 158, 154, 0.8), 0 0 12px rgba(74, 158, 154, 0.4); transform: translateZ(0); }
    50% { box-shadow: 0 0 25px rgba(74, 158, 154, 1), 0 0 40px rgba(74, 158, 154, 0.7), 0 0 60px rgba(74, 158, 154, 0.3); transform: translateZ(0) scale(1.02); }
}
/* Класс свечения для триггера (аналог .glow-btn-strong-permanent) */
.hover-trigger {
    animation: strongTealGlow 2.5s infinite ease-in-out;
}

.my-logo-slider {
    background: red;
    min-height: 150px;
}


  /* Черно-белый фильтр по умолчанию */
  img.grayscale-hover {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  /* При наведении возвращаем цвет */
  img.grayscale-hover:hover {
    filter: grayscale(0%);
  }
</style>