/* layout */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

/* текст */
.about-content p {
  margin-bottom: 16px;
  color: #555;
  line-height: 1.8;
}

.about-lead {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

/* карточка справа */
.about-card {
  padding: 28px;
  border-radius: 24px;
  background: #f5f5f5;
}

.about-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.about-card ul {
    color: #555;
    line-height: 1.7;
    list-style: unset;
    padding-left: 15px;
}

.about-card li {
  margin-bottom: 6px;
}

/* контакты */
.about-contact p {
  margin: 0 0 6px;
  font-size: 14px;
  color: #888;
}

.about-contact strong {
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

/* адаптив */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
}