.author-block-inter {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
  color: #111;
}

.author-header {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

/* Метка «Автор» — уже мелкая, но явно фиксируем */
.author-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  font-weight: 700;
}

.author-content {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.author-avatar-wrapper {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
}

.author-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #000;
  box-sizing: border-box;
}

.author-info {
  flex-grow: 1;
}

/* Имя автора — можно оставить чуть крупнее для акцента, но если надо тоже 11px — см. ниже */
.author-name {
  margin: 0 0 4px 0;
  font-size: 14px;       /* если хочешь и имя на 11px, поставь здесь 11px */
  font-weight: 700;
  color: #000;
}

/* Роль и биография — именно сюда ставим 11px */
.author-role,
.author-bio {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
}

.author-role {
  color: #555;
  margin-bottom: 8px;
}

.author-bio {
  color: #333;
}

@media (max-width: 768px) {
  .author-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-avatar-wrapper {
    width: 80px;
    height: 80px;
  }

  .author-info {
    text-align: center;
  }
}
/* Секция похожих новостей */
.similar-news-section {
  margin: 40px 0;
  padding: 0 12px;
}

.similar-news-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}

/* Ровно 3 колонки на десктопе */
.similar-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.similar-news-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.similar-news-item:hover {
  border-color: #003399;
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.1);
  transform: translateY(-2px);
}

.similar-news-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.similar-news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.similar-news-item:hover .similar-news-img {
  transform: scale(1.05);
}

.similar-news-body {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.similar-news-title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  margin: 0 0 8px 0;
  /* Обрезка до 3 строк */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.similar-news-title:hover {
  color: #003399;
}

.similar-news-date {
  font-size: 11px;
  color: #888;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Адаптив */
@media (max-width: 768px) {
  .similar-news-grid {
    grid-template-columns: 1fr; /* 1 колонка на мобильном */
  }
}

@media (min-width: 480px) and (max-width: 768px) {
  .similar-news-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшете */
  }
}
/* Контейнер заголовка состава */
.squad-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.season-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  font-weight: 700;
}

/* Блок выпадающего списка */
.season-dropdown {
  position: relative;
  display: inline-block;
}

/* Кнопка-переключатель */
.season-toggle {
  background: #fff;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.season-toggle:hover {
  border-color: #003399;
  color: #003399;
}

.season-toggle .arrow {
  font-size: 10px;
  transition: transform 0.2s;
}

.season-dropdown.open .season-toggle .arrow {
  transform: rotate(180deg);
}

/* Сам список сезонов */
.season-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 100;
}

.season-dropdown.open .season-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.season-list li {
  margin: 0;
}

.season-list a {
  display: block;
  padding: 10px 16px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
}

.season-list a:hover {
  background: #f5f5f5;
  color: #003399;
}

/* Адаптив: на мобильных делаем крупнее и удобнее */
@media (max-width: 768px) {
  .squad-header {
    flex-direction: column;
    align-items: stretch;
  }

  .season-toggle {
    width: 100%;
    justify-content: flex-start;
  }
}
.table-squad-wrapper {
  max-width: 1000px;
  margin: 24px auto;
}

.table-squad {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 12px;
  color: #000; /* весь текст по умолчанию чёрный */
}

.table-squad thead th {
  background-color: #fff;
  color: #000;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #ccc;
}

.table-squad tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.table-squad tbody tr:hover {
  background-color: #fafbfc;
}

.table-squad td {
  padding: 10px 14px;
  vertical-align: middle;
  color: #000;
}

.text-center {
  text-align: center;
}

/* Секции позиций: просто чёрный текст, без фона и рамок */
.squad-section {
  background: transparent;
  border: none;
}

.squad-section td {
  padding: 8px 14px;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid #ddd;   /* тонкая линия сверху, чтобы визуально отделять группы */
  border-bottom: 1px solid #ddd; /* и снизу */
}

/* Иконки — делаем их тёмно‑серыми, чтобы не были слишком яркими */
.table-squad i {
  margin-right: 8px;
  color: #555;
}

/* Стоимость — можно оставить чуть жирнее, но тоже чёрным */
.table-squad .text-center {
  font-weight: 600;
}
