/* Container for all cards */
.offer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  justify-content: flex-start;
}

/* Each card block */
.offer-card {
  flex: 0 1 calc(33.333% - 4rem);
  display: flex;
  flex-direction: column;
  min-width: 250px;
  text-decoration: none;
}

.wb-image-container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  min-height: 70px;
}

.wb-image-container img {
  width: auto;
  max-height: 70px;
  object-fit: contain;
}

/* Info section */
.offer-info {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.4;
  color: #333;
}

.offer-info .arrow-right {
  margin-top: 0.5rem;
  width: 1.5rem;
  height: auto;
}

.offer-info a {
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;

  &:hover {
    transform: scale(1.1);
  }
}

/* Responsive Breakpoints */
@media screen and (max-width: 1024px) {
  .offer-card {
    flex: 0 1 calc(50% - 2rem);
  }
}

@media screen and (max-width: 640px) {
  .offer-card {
    flex: 0 1 100%;
  }
}

@media screen and (max-width: 768px) {
  .offer-container {
    gap: 2rem;
  }
}
