.on-offer-real {
  padding: 56px 0 48px;
  background: #f7f7f5;
  font-family: Manrope, sans-serif;
}
.on-offer-real__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}
.on-offer-real__title {
  margin: 0 0 10px;
  color: #222;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
}
.on-offer-real__lead {
  margin: 0 auto 28px;
  max-width: 640px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}
.on-offer-real__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 28px;
}
.on-offer-real__item {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.on-offer-real__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.on-offer-real__item:hover img {
  transform: scale(1.04);
}
.on-offer-real__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 30px;
  background: #e87f22;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(0, 11, 48, 0.18);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.on-offer-real__cta:hover,
.on-offer-real__cta:focus-visible {
  background: #d4711c;
  color: #fff !important;
}
@media (max-width: 960px) {
  .on-offer-real {
    padding: 44px 0 36px;
  }
  .on-offer-real__title {
    font-size: 24px;
  }
  .on-offer-real__grid {
    gap: 12px;
  }
}
@media (max-width: 640px) {
  .on-offer-real__grid {
    grid-template-columns: 1fr;
  }
  .on-offer-real__item {
    aspect-ratio: 16 / 10;
  }
}
