.features {
  padding: 6.5rem 2rem;
  max-width: 1150px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row-reverse {
  direction: rtl;
}

.feature-row-reverse > * {
  direction: ltr;
}

.feature-row-img {
  height: 340px;
  border-radius: 3px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px rgba(22, 39, 63, 0.16);
}

.feature-row-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #ab8642;
  margin-bottom: 0.9rem;
}

.feature-row-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  max-width: 380px;
}

.feature-row-text p {
  color: #5f6672;
  font-size: 1rem;
  max-width: 400px;
}

@media (max-width: 860px) {
  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.8rem;
    margin-bottom: 3.2rem;
  }
  .feature-row-img {
    height: 260px;
  }
  .feature-row-text h3,
  .feature-row-text p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .features {
    padding: 5rem 1.4rem;
  }
}
