.slb-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
  text-align: center;
  gap: 1rem;
}

.slb-block .top-title .title_block::after {
  display: none;
}

.slb-links {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  width: 100%;
}

.slb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: #222;
  color: #fff !important;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.slb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback when no background image */
.slb-facebook {
  background: #1977f2;
}

.slb-instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.slb-icon {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

@media (max-width: 767px) {
  .slb-links {
    flex-direction: column;
    height: auto;
  }

  .slb-link {
    height: 200px;
  }
}
