/* Контейнер текста */
body.single-post .news-short-desc {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 22px !important;
  line-height: 1.7 !important;
  color: #fff !important;
  max-width: 1200px !important; /* ширина текста и фото */
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

/* Заголовок поста */
body.single-post .news-title {
  font-family: 'Rajdhani', sans-serif !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin: 40px auto 20px auto !important;
  max-width: 1200px !important;
  padding: 0 40px !important;
  text-align: left !important;
  box-sizing: border-box !important;
}

/* Дата поста */
body.single-post .news-date {
  font-family: 'Rajdhani', sans-serif !important; /* как в блоге */
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  color: #bbb !important;
  margin: 0 auto 20px auto !important;
  max-width: 1200px !important; /* ширина контейнера текста */
  padding: 0 40px !important;   /* боковые отступы как у текста */
  text-align: left !important;  /* выравнивание влево */
  box-sizing: border-box !important;
}


/* Абзацы */
body.single-post .news-short-desc p {
  font-size: 22px !important;
  line-height: 1.7 !important;
  margin-bottom: 20px !important;
  color: #fff !important;
}

/* Заголовки внутри текста */
body.single-post .news-short-desc h2,
body.single-post .news-short-desc h3 {
  margin: 30px 0 15px !important;
  font-weight: 700;
  color: #fff !important;
}

/* Изображение */
body.single-post .news-photo {
  max-width: 1200px !important;
  margin: 0 auto 30px auto !important;
  padding: 0 40px !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

body.single-post .news-photo img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

/* Контейнер иконок */
body.single-post .news-social-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px; /* расстояние между иконками */
  margin: 20px auto 0 auto; /* центрируем как и текст */
  max-width: 1200px; /* совпадает с контейнером текста */
  padding: 0 40px; /* такие же боковые отступы как у текста */
  box-sizing: border-box;
}


/* Стили для ссылок */
body.single-post .news-social-links a {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
}

/* Все картинки по умолчанию */
body.single-post .news-social-links a img {
  display: block;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease-in-out;
}

/* Скрываем hover-иконку */
body.single-post .news-social-links a img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Показываем красную при наведении */
body.single-post .news-social-links a:hover img.hover {
  opacity: 1;
}

