.offer-grid {
  margin: 90px 0;
  background: #ffffff;
}
@media (max-width: 900px) {
  .offer-grid {
    margin: 60px 0;
  }
}
.offer-grid__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .offer-grid__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.offer-grid__head-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.offer-grid__title {
  margin: 0;
  max-width: 720px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 55px;
  color: #1a1a1a;
}
@media (max-width: 1200px) {
  .offer-grid__title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media (max-width: 900px) {
  .offer-grid__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.offer-grid__subtitle {
  margin: 0;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
}
.offer-grid__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 1200px) {
  .offer-grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .offer-grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .offer-grid__list {
    grid-template-columns: 1fr;
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  aspect-ratio: 295/342;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  -webkit-text-decoration: none;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 24px rgba(15, 27, 61, 0.06);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.offer-card:hover {
  background: #f5f7fb;
  box-shadow: 0 12px 32px rgba(15, 27, 61, 0.12);
}
.offer-card:hover .offer-card__media {
  background: #f5f7fb;
}
.offer-card:hover .offer-card__arrow {
  background: #ff8c00;
  border-color: #ff8c00;
  color: #ffffff;
}
.offer-card__media {
  flex: 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 35px;
  transition: background 0.2s ease;
}
.offer-card__media img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.offer-card__media--placeholder {
  background: repeating-linear-gradient(45deg, #f5f7fb, #f5f7fb 10px, rgb(234.0714285714, 238.2571428571, 246.6285714286) 10px, rgb(234.0714285714, 238.2571428571, 246.6285714286) 20px);
}
.offer-card__body {
  padding: 20px 21px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.offer-card__title {
  padding-right: 20px;
  font-family: "Play",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #1a1a1a;
}
.offer-card__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.offer-card__arrow svg {
  display: block;
}
/*# sourceMappingURL=styles.css.map */
