/* ============================================
   СТРАНИЦА РЕДАКЦИИ
   ============================================ */

/* Заголовки страницы */
.contacts-info__heading,
.article-authors__heading {
  font-family: 'Rainer', sans-serif;
  font-size: 36px;
  font-weight: 400;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 5px;
  padding-left: 25px;
}

.contacts-info__heading::before,
.article-authors__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background-color: #000;
}

/* Секция редакции */
.editorial {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.editorial__column {
  width: 49%;
}

.editorial__column:last-child {
  padding-left: 120px;
  border-left: solid 1px #C4C4C4;
}

.editorial__line {
  width: 100%;
  height: 1px;
  max-width: 360px;
  background: #C4C4C4;
  margin: 45px 0;
}

.editorial__column .editorial__line:last-child {
  margin-bottom: 0;
}

/* Блок контактов */
.contacts-info {
  max-width: 400px;
}

/* Описательный список (dl/dt/dd) для пар «роль → имя» — семантически точнее, чем ul/li */
.contacts-info__list {
  margin: 0;
  padding: 0;
}

/* dt — термин (должность/роль) */
.contacts-info__title,
.contacts-info__title-second {
  font-family: CoFo Robert,sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
}

/* dd — описание (имя, почта и т.д.) */
.contacts-info__description {
  margin: 0 0 20px 0; /* Отступ снизу между парами dt/dd */
}

.contacts-info__title-second {
  padding-top: 0;
}

.contacts-info__description,
.contacts-info__description-text {
  font-family: CoFo Robert,sans-serif;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 400;
}

/* Убираем отступ у последнего dd в списке */
.contacts-info__list dd:last-child {
  margin-bottom: 0;
}

.contacts-info__description-link,
.contacts-info__description-regular {
  display: inline;
  text-decoration: underline;
  color: black;
}

.contacts-info__description-regular {
  font-weight: 400;
}

.padding-30 {
  padding-top: 30px;
}

/* Обертка для страницы редакции 2 */
.editorial-page__wrapper {
  display: flex;
  gap: 50px;
}

.editorial-page__column {
  min-width: 330px;
}

.editorial-page .article-tile img {
  padding-top: 35px;
}

/* Список авторов */
.article-authors {
  margin-top: 90px;
  margin-bottom: 25px;
}

.article-authors__container {
  display: flex;
  flex-wrap: wrap;
  max-width: 606px;
}

.article-authors__link {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 303px;
  width: 100%;
  text-decoration: none;
  padding-top: 20px;
}

.article-authors__link:hover {
  opacity: 0.8;
}

.article-authors__image {
  flex-basis: 18%;
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-authors__description {
  flex: 1;
}

.article-authors__name {
  font-family: CoFo Robert,sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
  margin: 0;
}

.article-authors__materials {
  font-family: 'Steinbeck', sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: #6D6D6D;
  margin: 4px 0 0 0;
}

/* Адаптивность для планшетов */
@media (max-width: 920px) {
  .editorial-page__wrapper {
    display: flex;
    gap: 25px;
  }

  .editorial-page__column {
    min-width: 210px;
  }
}

/* Адаптивность для планшетов (768px) */
@media (max-width: 768px) {
  .editorial {
    flex-direction: column;
  }

  .editorial__line {
    margin: 30px 0;
    max-width: 100%;
  }

  .editorial__column:last-child {
    padding-left: 0;
    border-left: none;
  }

  .editorial__column .editorial__line:last-child {
    margin-bottom: 30px;
  }

  .editorial__column {
    width: 100%;
  }

  .article-authors {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #C4C4C4;
  }

}

/* Адаптивность для мобильных */
@media (max-width: 480px) {}