/* === ИСХОДНЫЙ КОД (без изменений) === */
.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%);
  }
  
  /* 1. БЕГУЩИЙ БЛИК ДЛЯ КНОПОК (оригинальный)                       */
/* ================================================================ */

/* Постоянный блик для кнопок */
.glow-shine {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.glow-shine::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 300px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.5;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    transform: rotate(45deg);
    animation: slideGlow 3.33s ease-in-out infinite;
}

/* Блик при наведении для кнопок */
.glow-shine-hover {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.glow-shine-hover::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 300px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    position: absolute;
    left: -40px;
    top: -150px;
    z-index: 1;
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
}
.glow-shine-hover:hover::after {
    opacity: 0.5;
    animation: slideGlow 3.33s ease-in-out infinite;
}

/* ================================================================ */
/* 2. АДАПТИРОВАННЫЙ БЛИК ДЛЯ КАРТИНКИ 131×278                    */
/* ================================================================ */

.glow-shine-image {
    position: relative;
    overflow: hidden;
    display: inline-block;   /* или block, если картинка одна */
}
.glow-shine-image::after {
    content: "";
    display: inline-block;
    width: 6px;              /* ширина блика (уже) */
    height: 200px;           /* высота блика (чуть меньше картинки) */
    background: rgba(255, 255, 255, 0.4);
    opacity: 0.6;
    position: absolute;
    left: -20px;             /* начинаем за левым краем */
    top: -80px;              /* смещение по вертикали для красивого старта */
    z-index: 1;
    transform: rotate(35deg); /* угол наклона (чуть меньше) */
    animation: slideGlowImage 2.67s ease-in-out infinite;
}

/* Отдельная анимация для изображения (слегка изменена скорость) */
@keyframes slideGlowImage {
    0% {
        left: -20px;
        margin-left: 0;
    }
    30% {
        left: calc(100% + 20px);
        margin-left: 40px;
    }
    100% {
        left: calc(100% + 20px);
        margin-left: 40px;
    }
}

/* ================================================================ */
/* 3. ОБЩАЯ АНИМАЦИЯ (используется в обоих случаях)                */
/* ================================================================ */

@keyframes slideGlow {
    0% {
        left: -10%;
        margin-left: 0;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}

ФЫУВмывм