/* ---------- Side Banners Wrapper ---------- */
.side-banners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 120px;
  width: 225px;
  min-width: 225px;
  padding-inline-end: 25px;

  /* Tablets */
  @media (max-width: 991px) {
    width: 100%;
    position: relative;
    top: auto;
    padding-inline-end: 0;
  }

  /* Mobile */
  @media (max-width: 768px) {
    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;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    img,
    video {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
      border-radius: 14px;
    }

    /* ---------- Banner Content ---------- */
    .containt {
      position: absolute;
      top: 40%;
      right: 17px;
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-decoration: none;

      h3 {
        margin: 0;
        font-size: 20px;
        font-weight: 700;
        color: var(--text-color-primary-bg);
      }

      p {
        margin: 0;
        font-size: 15px;
        font-weight: 600;
        color: var(--primary-color);
      }
    }

    /* ---------- Overlay ---------- */
    &::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;
    }
  }
}
