.about {
  margin-top: 120px;
  padding: 60px 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px; /* příjemná mezera */
}

.about-image img {
  width: 400px;
  border-radius: 18px;
  object-fit: cover;
}

.about-content {
  max-width: 520px;
}

.about h2 {
  font-size: 40px;
  font-weight: 700;
  color: #3a342d;
  margin-bottom: 16px;
}

.about p {
  font-size: 18px;
  color: #5a5248;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-buttons {
  display: flex;
  gap: 14px;
}

/* tlačítka používají stejné styly jako hero-btn, primary, secondary */
 
/* MOBILE */
@media (max-width: 860px) {
  .about {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .about-buttons {
    justify-content: center;
  }
  .about-image img {
    width: 100%;
    max-width: 320px;
  }
}
