.offer {
  padding: 50px 0;
  text-align: center;
  background-color: var(--color-light);
}

.offer__container {
  margin: 0 auto;
}
.offer__title {
  padding: 1rem 0;
  color: var(--color-accent);
}
.offer__desc {
  /* max-width: 800px; */
  margin: 0 auto 3rem;
  color: var(--color-dark);
  line-height: 1.6;
}

/* === GRID === */
.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
  flex-wrap: wrap;
  padding: 0 10px;
}

/* Responsywność */
@media (max-width: 991px) {
  .offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .offer__grid {
    grid-template-columns: 1fr;
  }
}

/* === ITEM === */
.offer__item {
  opacity: 0;
  border: 1px solid #9e7b3942;
  border-radius: 4px;
  padding: 1.5rem 1rem;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 500px;
  background-color: var(--color-white);
}

.offer__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offer__icon img {
  height: 400px;
  border-radius: 4px;
  width: auto;
  margin: auto auto 1rem auto;
  transition: transform 0.5s ease;
}

.offer__item:hover .offer__icon img {
  transform: scale(1.05);
}

.offer__item-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.offer__item-desc {
  color: var(--color-gray, #555);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* === CTA === */
.offer__cta {
  margin-top: 3rem;
  padding: 2rem;
}
