/* Кастомный футер — логотип, слоган, Telegram */
.rb-footer.rb-footer-custom {
  padding: 2rem 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(99, 91, 255, 0.15);
}

.rb-footer-custom .rb-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.rb-footer-custom .rb-footer-logo-link {
  display: block;
  flex-shrink: 0;
}

.rb-footer-custom .rb-footer-logo-link img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.rb-footer-custom .rb-footer-tagline {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
  max-width: 420px;
}

.rb-footer-custom .rb-footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  background: #2d9cdb;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.rb-footer-custom .rb-footer-telegram:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 767px) {
  .rb-footer.rb-footer-custom {
    padding: 1.5rem 0;
  }

  .rb-footer-custom .rb-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .rb-footer-custom .rb-footer-tagline {
    max-width: none;
  }
}
