

/* Start:/local/templates/vyberibankrotstvo/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?17780772638015*/
/* ===== БАЗОВАЯ ТИПОГРАФИКА КОНТЕНТА ===== */
.article-detail__content {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    word-wrap: break-word;
}

.article-detail__content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
}

.article-detail__content h3 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
}

.article-detail__content h4 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    color: #000;
}

.article-detail__content p {
    margin-bottom: 1rem;
}

.article-detail__content ul,
.article-detail__content ol {
    padding-left: 1.5rem;
    list-style: disc;
    color: #222;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.article-detail__content ol {
    list-style: decimal;
}

.article-detail__content li {
    margin-bottom: 0.8rem;
}

.article-detail__content strong,
.article-detail__content b {
    font-weight: 700;
}

.article-detail__content em,
.article-detail__content i {
    font-style: italic;
}

.article-detail__content a {
    color: #3b80ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-detail__content a:hover {
    color: #1e4fd1;
    text-decoration: underline;
}

.article-detail__content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.article-detail__content th,
.article-detail__content td {
    padding: 1.2rem 1.6rem;
    border: 0.1rem solid #eee;
    text-align: left;
    vertical-align: top;
    font-weight: 300;
}

.article-detail__content th {
    background: #f8f9fa;
    font-weight: 600;
}

.article-detail__content blockquote {
    margin: 2rem 0;
    padding: 1.6rem 2rem;
    background: #f8f9fa;
    border-left: 0.4rem solid #3b80ff;
    border-radius: 0 0.8rem 0.8rem 0;
    font-style: italic;
    color: #444;
}

.article-detail__content blockquote p:last-child {
    margin-bottom: 0;
}

.article-detail__content img {
    margin-bottom: 2rem;
    border-radius: 0.8rem;
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== МЕТА-СТРОКА ===== */
.article-detail__meta {
    font-size: 1.4rem;
    color: #00000080;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

.article-detail__date {
    color: #00000080;
    font-weight: 300;
}

/* ===== ЗАГОЛОВОК СТАТЬИ ===== */
.article-detail__title {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.2;
    color: #000;
}

/* ===== БЛОК АВТОРА, РЕДАКТОРА И ЭКСПЕРТА ===== */
.article-contributors {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 0.1rem solid #eee;
}

.article-contributors__item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.article-contributors__item:hover {
    opacity: 0.7;
}

.article-contributors__label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #00000080;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-contributors__person {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.article-contributors__photo {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.article-contributors__photo-placeholder {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #666;
    flex-shrink: 0;
    user-select: none;
}

.article-contributors__name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}

.article-contributors__role {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* ===== ЮРИДИЧЕСКИЙ ДИСКЛЕЙМЕР ===== */
.article-disclaimer {
    margin-top: 4rem;
    padding: 2.4rem;
    background: #f8f9fa;
    border: 0.1rem solid #eee;
    border-radius: 0.8rem;
}

.article-disclaimer__text {
    margin: 0;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    font-weight: 300;
    text-transform: uppercase;
}

/* ===== КНОПКА "НАЗАД" ===== */
.article-detail__back {
    font-size: 1.4rem;
    color: #3b80ff;
    text-decoration: none;
}

.article-detail__back:hover {
    color: #1e4fd1;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .article-detail__title {
        font-size: 2.6rem;
    }
    
    .article-detail__content {
        font-size: 1.6rem;
    }
    
    .article-detail__content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .article-detail__title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }
    
    .article-contributors {
        flex-direction: column;
        gap: 1.2rem;
        margin-bottom: 3rem;
        padding-bottom: 1.6rem;
    }
    
    .article-contributors__photo,
    .article-contributors__photo-placeholder {
        width: 3.2rem;
        height: 3.2rem;
    }
    
    .article-contributors__name {
        font-size: 1.3rem;
    }
    
    .article-contributors__role {
        font-size: 1.1rem;
    }
    
    .article-detail__content h2 {
        font-size: 2rem;
    }

    .article-detail__content h3 {
        font-size: 1.8rem;
    }

    .article-detail__content h4 {
        font-size: 1.6rem;
    }

    .article-detail__content table {
        font-size: 1.4rem;
    }

    .article-detail__content th,
    .article-detail__content td {
        padding: 1rem;
    }
}

/* ===== БЛОК ПЕРВОИСТОЧНИКОВ (Article Sources) ===== */
.article-sources {
  margin: 4rem 0;
  border: 0.1rem solid #e0e0e0;
  border-radius: 1.2rem;
  background: #fafafa;
  overflow: hidden;
}

.article-sources__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.6rem 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  transition: background 0.2s;
}

.article-sources__toggle:hover {
  background: #f0f0f0;
}

.article-sources__toggle-icon {
  flex-shrink: 0;
  color: #666;
  transition: transform 0.25s ease;
}

.article-sources.open .article-sources__toggle-icon {
  transform: rotate(180deg);
}

.article-sources__content {
  border-top: 0.1rem solid #e0e0e0;
  padding: 1.8rem 2.2rem 2.2rem;
}

.article-sources__body {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
  word-wrap: break-word;
  color: #222;
}

.article-sources__body p {
  margin-bottom: 1rem;
}

.article-sources__body a {
  color: #3b80ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-sources__body a:hover {
  color: #1e4fd1;
  text-decoration: underline;
}

.article-sources__body ul,
.article-sources__body ol {
  padding-left: 2rem;
  color: #222;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.article-sources__body ul {
  list-style-type: disc;
}

.article-sources__body ul li::marker {
  color: #666;
}

.article-sources__body ol {
  list-style-type: decimal;
}

.article-sources__body ol li::marker {
  color: #666;
}

.article-sources__body li {
  margin-bottom: 0.6rem;
}

.article-sources__body strong,
.article-sources__body b {
  font-weight: 700;
}

.article-sources__body em,
.article-sources__body i {
  font-style: italic;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
  .article-sources__body {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .article-sources {
    margin: 3rem 0;
  }
  
  .article-sources__toggle {
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
  }
  
  .article-sources__content {
    padding: 1.4rem 1.6rem 1.8rem;
  }

  .article-sources__body {
    font-size: 1.4rem;
  }
}
/* End */
/* /local/templates/vyberibankrotstvo/components/bitrix/news/articles/bitrix/news.detail/.default/style.css?17780772638015 */
