/* ===== ПРО НАС ===== */
.about-section {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
}

/* Фото автора */
.about-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.about-author img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border: 4px solid #8DAC99;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-name {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* Заголовок */
.about-title {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Текст */
.about-text {
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #555;
}

/* Галерея */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.about-gallery img {
  width: 100%;
  height: 230px; /* фіксована висота */
  object-fit: cover; /* обрізає зайве, але не спотворює */
  border-radius: 10px;
  display: block;
}

/* Додатковий текст */
.about-more p {
  max-width: 900px;
  margin: 20px auto;
  color: #444;
  line-height: 1.7;
}

.about-btn {
  display: inline-block;
  background: #8DAC99;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 25px;
}

.about-btn:hover {
  background: #7aa788;
}

/* Адаптив */
@media (max-width: 768px) {
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }
}
