/* ---------- Side Banners Wrapper ---------- */

.side-banners_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
  width: 300px;
  min-width: 300px;
  padding-inline-end: 25px;

  /* Tablets */
  @media (max-width: 991px) {
    .side-banners {
      width: 100%;
      position: relative;
      top: auto;
      display: none;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .side-banners {
      display: none;
    }
  }

  /* ---------- Banner Item ---------- */
  .banner-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    background: var(--bg-secondary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    img,
    video {
      width: 100%;
      border-radius: 14px;
      object-fit: cover;
      height: 500px;
      display: block;
    }
  }

  /* ---------- Banner Content (Text Over Image) ---------- */
  .banner-item .containt {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-decoration: none;
    padding: 50px;
    border-radius: 100%;
    background: var(--primary-color);
    color: white !important;
    aspect-ratio: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-color-primary-bg);
    }

    p {
      font-size: 15px;
      font-weight: 600;
      color: var(--white-color);
      margin: 0;
    }
  }

  /* ---------- Overlay for Better Readability ---------- */
  .banner-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.45)
    );
    border-radius: 14px;
    z-index: 1;
  }
}
@media (max-width: 991px) {
  .side-banners_container {
    display: none;
  }
}
