.banner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6efd6; 
  padding-bottom: 1.5rem;
  width: 100%;
}

.banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.banner-actions {
  margin-top: 1rem;
}

.btn-disabled {
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  font-size: 0.95rem;
  opacity: 0.75;
  cursor: not-allowed;
}

@media (min-width: 768px) {
  .banner-container {
    position: relative;
    display: block;
    padding-bottom: 0;
    background-color: transparent;
  }

  .banner-actions {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }
}
