.masters-page {
  flex: 1 0 auto; /* ОБОВ’ЯЗКОВО — для sticky footer */
  background-color: #f8f9fa;
  padding-top: 10px;
}
.masters {
  background: #f8f8f8;
  padding-top: 20px;
  padding-bottom: 100px;
}
.masters-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #790000;
  text-align: left;
}
.masters-subtitle {
  font-size: 24px;
  text-align: left;
  color: #222222;
  margin-bottom: 25px;
}
.masters-note {
  color: #666;
  font-size: 15px;
  margin-bottom: 50px;
  text-align: left;
  color: #790000;
} /* ========================== Список майстрів ========================== */
.masters-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

/* ===================== КАРТКА МАЙСТРА ===================== */
.master-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.master-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* ===================== ВЕРХНЯ ЧАСТИНА ===================== */
.master-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.master-photo-wrapper {
  flex: 0 0 120px;
}

.master-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.master-short-info {
  flex: 1;
}

.master-short-info h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: #790000;
  font-weight: 600;
}

.master-contact {
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

.master-contact a {
  color: #790000;
  text-decoration: none;
  font-weight: 500;
}

.master-contact a:hover {
  text-decoration: underline;
}

.master-contact span {
  display: block;
  color: #555;
}

/* ===================== НИЖНЯ ЧАСТИНА ===================== */
.master-bottom {
  padding: 20px;
  display: flex;
  flex-direction: column; /* щоб кнопка була під текстом */
  gap: 10px; /* невеликий відступ між текстом і кнопкою */
  background: #fff;
}

/* ===================== Текст майстра ===================== */
.master-details {
  max-height: 120px; /* висота скороченого тексту */
  overflow: hidden; /* приховує зайвий текст */
  flex: 1;
  font-size: 14.5px;
  line-height: 1.6;
  color: #333;
  transition: max-height 0.3s ease; /* плавне розгортання */
}

.master-details.expanded {
  max-height: 1000px; /* достатньо для повного тексту */
}

.master-details p {
  margin-bottom: 12px;
}

.master-details strong {
  color: #790000;
  font-weight: 600;
}

/* ===================== Кнопка "Читати ще" ===================== */
.read-more-btn {
  display: inline-block; /* щоб працював margin */
  margin: 5px auto 0 auto; /* верх 5px, автоматичне горизонтальне центрування */
  color: #1960be;
  cursor: pointer;
  font-weight: 600;
  font-size: 14.5px;
  text-align: center; /* для внутрішнього тексту */
}
