<!-- ============================================== -->
<!-- Стили                                         -->
<!-- ============================================== -->

:root {
  --guides-gap: 20px;
}

#guides-container {
  width: 100%;
}

.guides-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: var(--guides-gap);
  width: 100%;
  box-sizing: border-box;
}

.guide-card-slot {
  flex: 1 1 0%;
  min-width: 0;
}

.guides-count-1 .guide-card-slot {
  flex: 0 1 auto;
}

/* Показываем вставленные блоки */
.guide-card-slot .t-rec {
  opacity: 1 !important;
  visibility: visible !important;
}

.guide-card-slot .tn-elem {
  opacity: 1 !important;
  visibility: visible !important;
}

.guide-card-slot [data-animate-sbs],
.guide-card-slot [data-animate-style] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Мобилка */
@media (max-width: 640px) {
  .guides-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .guide-card-slot {
    flex: none;
    width: 100%;
  }
}
</style>