.saidi-banners-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}


.saidi-banner img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  display: block;
  transition: opacity 0.3s ease;
}


.saidi-banner {
  flex: 1 1 100%;
  box-sizing: border-box;
  text-align: center;
  background-color: #111;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.saidi-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1);
}


.saidi-banner a {
  display: block;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 600px) {
  .saidi-banners-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .saidi-banner {
    max-width: 100%;
  }
}

