.offers-features-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 84px;
  padding: 0 16px;
  box-sizing: border-box;
}

.offers-features {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  padding: 8px 16px;
  margin: 0 auto;
  box-sizing: border-box;
}

.offer-card {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 1 250px;
  min-width: 200px;
  max-width: 260px;
  height: 70px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(12, 14, 20, 0.04);
  scroll-snap-align: center;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
}

.offer-card .box-links__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: block;
  color: var(--accent, #d42c2c);
}

.offer-card .box-links__icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.offer-card .box-links__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offer-card .box-links__title {
  font-weight: 700;
  font-size: 14px;
  color: inherit;
  line-height: 1.1;
}

.offer-card .box-links__text {
  font-size: 12px;
  color: #777;
  line-height: 1.15;
  margin-top: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .offer-card {
    background: #f0f0f0;
  }

  .offer-card:hover {
    background: var(--accent, #d42c2c);
    color: #fff;
    transform: translateY(-4px);
  }

  .offer-card:hover .box-links__icon {
    color: #fff;
  }

  .offer-card:hover .box-links__text {
    color: rgba(255, 255, 255, 0.9);
  }
}
@media (max-width: 767px) {
  .offers-features-wrap {
    padding: 0 12px;
    margin-top: 70px;
    box-sizing: border-box;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }

  .offers-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    justify-items: stretch;
    align-items: stretch;
    overflow: visible;
  }

  .offer-card {
    gap: 10px;
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f0f0f0;
    color: #111;
    box-shadow: 0 6px 18px rgba(12, 14, 20, 0.04);
    box-sizing: border-box;
    transform: none !important;
    -webkit-transform: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

  .offer-card .box-links__icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .offer-card .box-links__icon svg {
    width: 36px;
    height: 36px;
    display: block;
  }

  .offer-card .box-links__content {
    min-width: 0;
  }

  .offer-card .box-links__title {
    font-size: 14px;
    line-height: 1.15;
  }

  .offer-card .box-links__text {
    font-size: 12px;
    line-height: 1.2;
    color: #777;
    margin-top: 4px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
@media (max-width: 767px) and (hover: none) and (pointer: coarse) {
  .offer-card,
  .offer-card:hover {
    transition: none !important;
    transform: none !important;
    background: #fff !important;
    color: inherit !important;
  }
}
@media (max-width: 360px) {
  .offer-card {
    min-height: 78px;
    padding: 12px;
  }
}