.oferta-group {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.oferta-group .oferta-bg {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 420px;
  opacity: 0.07;
  filter: grayscale(0.3);
  pointer-events: none;
  clip-path: inset(0 0 18% 0);
}

.oferta-group .module-title .container {
  padding-inline: 0;
}

.oferta-group .small-title {
  margin-bottom: 48rem;
}

.oferta-group .offer-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.oferta-group .ratio-3x4 {
  position: relative;
  width: 100%;
  padding-top: 133.333%;
}

.oferta-group .offer-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.oferta-group .offer-card:hover img {
  transform: scale(1.05);
}

.oferta-group .card-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.1) 30%, rgba(20, 18, 15, 0.85) 100%);
}

.oferta-group .card-caption {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  color: #fff;
}

.oferta-group .card-caption h3 {
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 16px;
  color: #fff;
}

.oferta-group .card-more {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-pale);
}

.oferta-group .offer-custom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 40px;
  height: 100%;
  min-height: 400px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.oferta-group .offer-custom:hover {
  background: #f3efe6;
  border-color: #dccfb4;
}

.oferta-group .dashed-frame {
  position: absolute;
  top: 14px;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border: 1px dashed #d5c9ae;
  pointer-events: none;
}

.oferta-group .plus-circle {
  width: 62px;
  height: 62px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 22px;
}

.oferta-group .offer-custom h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.oferta-group .offer-custom:hover h3 {
  color: var(--gold);
}

.oferta-group .offer-custom p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey);
  max-width: 30ch;
  margin-bottom: 18px;
}

.oferta-group .offer-custom .card-more {
  color: var(--gold);
}

@media (max-width: 900px) {
  .oferta-group {
    padding: 72px 0 64px;
  }
  .oferta-group .oferta-bg {
    width: 200px;
    top: 24px;
    right: 16px;
  }
}