/* Short (SEO-прокладка) — реплика live-шаблона freud.online 1:1.
   Инлайновые стили боксов/миниатюры заданы в компоненте <ShortCta>;
   здесь — то, что нельзя инлайнить: :hover, keyframes, классы шаблона. */

.short-cta a {
  color: #2ba84a;
  text-decoration: none;
}
.short-cta a:hover {
  text-decoration: underline;
}

/* Пульсация миниатюры (на live — setInterval scale(1.05) каждые 2s; тут — CSS) */
@keyframes short-thumb-pulse {
  0%, 90%, 100% { transform: scale(1); }
  95% { transform: scale(1.05); }
}
.short-cta__thumb {
  animation: short-thumb-pulse 2s ease-in-out infinite;
}

/* .centering — из custom.css шаблона */
.short-cta .centering {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  align-items: center;
}

/* .dima-button-bitrix — из custom.css шаблона (кнопки всплывающие на лендингах) */
.short-cta .dima-button-bitrix {
  display: inline-block;
  background-color: #379137;
  color: #fff !important;
  padding: 8px 15px !important;
  font-weight: bold;
  border-radius: 5px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.short-cta .dima-button-bitrix:hover {
  background-color: #4caf50;
  color: #fff !important;
  transform: scale(1.1, 1.1);
  transition: transform 0.5s ease-in-out;
  text-decoration: none;
}
