.two-guides {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 80px 20px;
}

.guide-block {
  display: flex;
  justify-content: center;
}

.guide-tile {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-direction: row;
}

.guide-tile.image-right {
  flex-direction: row-reverse;
}

.guide-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  object-fit: cover;
}

.guide-text {
  flex: 1;
  padding: 0 20px;
}

.guide-text h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.guide-text p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #444;
  line-height: 1.5;
}

.guide-text .button-primary {
  background: black;
  color: white;
  padding: 8px 16px 8px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .guide-tile {
    flex-direction: column !important;
    text-align: center;
  }

  .guide-image img {
    max-width: 100%;
  }

  .guide-text {
    padding: 0;
  }

  .two-guides {
    margin: 32px 24px 70px 24px;
  }

  .guide-text h2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }

  .guide-text p {
    margin-bottom: 24px;
  }
}
