.offer__grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 64px;
  padding: 160px 0 80px;
}

.offer__grid .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 1001px;
}

.offer__grid .card.desktop {
  display: none;
}

.offer__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.02em;
}

.offer__description {
  line-height: 140%;
  margin-bottom: 48px;
}

.offer__time {
  font-size: 36px;
  font-weight: 700;
  line-height: 140%;
}

.offer b {
  font-weight: 600;
}

@media screen and (min-width: 1440px) {
  .offer__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    justify-items: flex-start;
    gap: 32px;
    padding: 160px 0;
  }

  .offer__grid .card.desktop {
    display: flex;
  }

  .offer__title {
    font-size: 48px;
  }
	
	.offer__grid img {
		width: 826px;
	}
}