

/* Start:/local/templates/aspro_mshop/css/rd-article.css?178533074218087*/
/* ===== BASE ===== */
  #rd-article-style {
    max-width: 1120px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a2e;
    line-height: 1.75;
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
  }
  #rd-article-style * { box-sizing: border-box; }
  
  /* ===== LAYOUT: TOC sidebar + article ===== */
  #rd-article-style .rd-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  #rd-article-style .rd-layout > article {
    flex: 1;
    min-width: 0;
    max-width: 860px;
  }
  
  /* ===== PROGRESS BAR ===== */
  #rd-article-style .rd-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #e79004, #f5b342);
    z-index: 9999;
    transition: width 0.15s linear;
  }
  
  /* ===== TOC ===== */
  #rd-article-style .rd-toc {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    align-self: flex-start;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    font-size: 13px;
    scrollbar-width: thin;
  }
  #rd-article-style .rd-toc-inner {
    background: #fafafa;
    border-radius: 10px;
    padding: 18px 16px;
    border: 1px solid #eee;
  }
  #rd-article-style .rd-toc-title {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 12px;
  }
  #rd-article-style .rd-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #rd-article-style .rd-toc li {
    padding: 0;
    margin: 0;
  }
  #rd-article-style .rd-toc li::before { display: none; }
  #rd-article-style .rd-toc a {
    display: block;
    padding: 5px 10px;
    color: #666;
    text-decoration: none;
    border-left: 2px solid transparent;
    border-bottom: none;
    border-radius: 0 4px 4px 0;
    transition: all 0.2s;
    line-height: 1.4;
    font-size: 13px;
  }
  #rd-article-style .rd-toc a:hover {
    color: #1a1a2e;
    background: #f0f0f0;
    border-bottom: none;
  }
  #rd-article-style .rd-toc a.active {
    color: #e79004;
    border-left-color: #e79004;
    background: #fef7ec;
    font-weight: 600;
    border-bottom: none;
  }
  #rd-article-style .rd-toc-toggle {
    display: none;
    width: 100%;
    padding: 12px 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    text-align: left;
  }
  #rd-article-style .rd-toc-toggle::after {
    content: '▾';
    float: right;
    transition: transform 0.2s;
  }
  #rd-article-style .rd-toc.open .rd-toc-toggle::after {
    transform: rotate(180deg);
  }
  
  /* ===== READING TIME ===== */
  #rd-article-style .rd-meta-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #888;
  }
  #rd-article-style .rd-meta-bar svg {
    vertical-align: -2px;
    margin-right: 4px;
  }
  
  /* ===== TYPOGRAPHY ===== */
  #rd-article-style h1 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #0d0d1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
  }
  #rd-article-style h2 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #0d0d1a;
    margin: 48px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e79004;
  }
  #rd-article-style h3 {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 600;
    color: #1a1a2e;
    margin: 32px 0 14px 0;
  }
  #rd-article-style p {
    margin: 0 0 18px 0;
    color: #2c2c3e;
    font-size: 16px;
    line-height: 1.75;
  }
  #rd-article-style .lead {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a2e;
  }
  #rd-article-style a {
    color: #e79004;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
  }
  #rd-article-style a:hover { border-bottom-color: #e79004; }
  #rd-article-style strong { font-weight: 700; color: #0d0d1a; }
  #rd-article-style ul, #rd-article-style ol {
    margin: 0 0 20px 0;
    padding-left: 24px;
  }
  #rd-article-style ul { list-style: none; padding-left: 0; }
  #rd-article-style ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    line-height: 1.65;
  }
  #rd-article-style ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    height: 10px;
    background: #e79004;
    border-radius: 50%;
  }
  #rd-article-style ol li {
    margin-bottom: 14px;
    line-height: 1.65;
    padding-left: 4px;
  }
  
  /* ===== FIGURES ===== */
  #rd-article-style figure {
    margin: 28px 0;
    padding: 0;
    text-align: center;
  }
  #rd-article-style figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    cursor: zoom-in;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  #rd-article-style figure img:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.14);
  }
  #rd-article-style figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
    line-height: 1.5;
    font-style: italic;
  }
  
  /* ===== BLOCKQUOTE ===== */
  #rd-article-style blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: #f8f4eb;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #2c2c3e;
  }
  #rd-article-style blockquote p { margin: 0 0 8px 0; }
  #rd-article-style blockquote p:last-child { margin-bottom: 0; }
  
  /* ===== HR ===== */
  #rd-article-style hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ddd 20%, #ddd 80%, transparent);
    margin: 40px 0;
  }
  
  /* ===== STATS CARDS ===== */
  #rd-article-style .rd-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 32px 0;
  }
  #rd-article-style .rd-stat {
    background: linear-gradient(135deg, #fef7ec 0%, #fff 100%);
    border: 1px solid #f0e4cc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
  }
  #rd-article-style .rd-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #e79004;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  #rd-article-style .rd-stat-label {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
  }
  
  /* ===== CALLOUT BOXES ===== */
  #rd-article-style .rd-callout {
    margin: 28px 0;
    padding: 18px 20px 18px 52px;
    border-radius: 8px;
    position: relative;
    font-size: 15px;
    line-height: 1.65;
  }
  #rd-article-style .rd-callout::before {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 20px;
  }
  #rd-article-style .rd-callout-result {
    background: #ecf7ed;
    border-left: 4px solid #2d9f4c;
  }
  #rd-article-style .rd-callout-result::before { content: '\2713'; color: #2d9f4c; }
  #rd-article-style .rd-callout-info {
    background: #edf4fc;
    border-left: 4px solid #3498db;
  }
  #rd-article-style .rd-callout-info::before { content: '\2139'; color: #3498db; font-weight: 700; }
  #rd-article-style .rd-callout p { margin: 0; }
  
  /* ===== CTA BLOCKS ===== */
  #rd-article-style .rd-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
  }
  #rd-article-style .rd-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.15s, box-shadow 0.15s;
    border-bottom: none;
  }
  #rd-article-style .rd-cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-bottom: none;
  }
  #rd-article-style .rd-cta-primary {
    background: #e79004;
    color: #fff !important;
  }
  #rd-article-style .rd-cta-secondary {
    background: #1a1a2e;
    color: #fff !important;
  }
  
  /* ===== STEP CARDS ===== */
  #rd-article-style .rd-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 28px 0;
    counter-reset: step;
  }
  #rd-article-style .rd-step {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 16px;
    position: relative;
    counter-increment: step;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  #rd-article-style .rd-step:hover {
    border-color: #e79004;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  }
  #rd-article-style .rd-step::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: #e79004;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
    margin-bottom: 12px;
  }
  #rd-article-style .rd-step-title {
    font-weight: 600;
    font-size: 15px;
    color: #0d0d1a;
    margin-bottom: 6px;
  }
  #rd-article-style .rd-step-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.55;
  }
  #rd-article-style .rd-step-desc a {
    font-size: 13px;
  }
  
  /* ===== COMPARISON TABLE ===== */
  #rd-article-style .rd-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
  }
  #rd-article-style table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  }
  #rd-article-style .rd-table-wrap table { margin: 0; }
  #rd-article-style thead th {
    background: #1a1a2e;
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  #rd-article-style thead th:first-child { border-radius: 8px 0 0 0; }
  #rd-article-style thead th:last-child { border-radius: 0 8px 0 0; }
  #rd-article-style tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  #rd-article-style tbody tr:last-child td { border-bottom: none; }
  #rd-article-style tbody tr:nth-child(even) { background: #fafafa; }
  #rd-article-style tbody td:first-child { color: #888; }
  #rd-article-style tbody td:last-child { color: #1a1a2e; font-weight: 500; }

  /* ===== CODE BLOCKS ===== */
  #rd-article-style pre {
    margin: 24px 0;
    padding: 16px 18px;
    background: #1a1a2e;
    color: #f5f5f5;
    border-radius: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: pre;
    font-size: 13px;
    line-height: 1.6;
  }
  #rd-article-style code {
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    word-break: break-word;
  }
  #rd-article-style pre code { word-break: normal; }

  /* ===== FAQ ACCORDION ===== */
  #rd-article-style .faq-item {
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  #rd-article-style .faq-item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  #rd-article-style .faq-item summary {
    padding: 16px 48px 16px 20px;
    background: #fafafa;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.2s;
    line-height: 1.4;
  }
  #rd-article-style .faq-item summary::-webkit-details-marker { display: none; }
  #rd-article-style .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: #e79004;
    transition: transform 0.3s;
  }
  #rd-article-style .faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  #rd-article-style .faq-item[open] summary {
    background: #f5f0e5;
    border-bottom: 1px solid #eee;
  }
  #rd-article-style .faq-item .faq-answer {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #2c2c3e;
    animation: rdFadeIn 0.3s ease;
  }
  #rd-article-style .faq-item .faq-answer p {
    margin: 0;
    font-size: 15px;
  }
  @keyframes rdFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ===== PRODUCT CARDS ===== */
  #rd-article-style .products-placeholder { margin: 32px 0; }
  #rd-article-style .rd-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 32px 0;
  }
  #rd-article-style .rd-product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  #rd-article-style .rd-product-card:hover {
    border-color: #e79004;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  }
  #rd-article-style .rd-product-card img {
    width: 100%; height: 160px; object-fit: contain;
    border-radius: 4px; margin-bottom: 12px; box-shadow: none; cursor: default;
  }
  #rd-article-style .rd-product-name { font-size: 14px; font-weight: 600; color: #1a1a2e; line-height: 1.4; margin-bottom: 8px; }
  #rd-article-style .rd-product-price { font-size: 16px; font-weight: 700; color: #e79004; margin-top: auto; }
  
  /* ===== AUTHOR OPINION ===== */
  #rd-article-style .rd-author-opinion {
    margin: 36px 0;
    background: #f9f9fb;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    position: relative;
  }
  #rd-article-style .rd-author-opinion::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 64px;
    line-height: 1;
    color: #e6dfd0;
    font-family: Georgia, serif;
  }
  #rd-article-style .rd-author-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  #rd-article-style .rd-author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e79004;
    box-shadow: none;
    cursor: default;
    flex-shrink: 0;
  }
  #rd-article-style .rd-author-details {
    display: flex;
    flex-direction: column;
  }
  #rd-article-style .rd-author-name {
    font-weight: 700;
    font-size: 15px;
    color: #0d0d1a;
    line-height: 1.3;
  }
  #rd-article-style .rd-author-status {
    font-size: 13px;
    color: #e79004;
    font-weight: 600;
    line-height: 1.3;
  }
  #rd-article-style .rd-author-email {
    font-size: 12px;
    color: #888;
    line-height: 1.3;
  }
  #rd-article-style .rd-author-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #2c2c3e;
    font-style: italic;
    position: relative;
  }
  #rd-article-style .rd-author-quote p {
    margin: 0;
    font-size: 15px;
    font-style: italic;
  }
  
  /* ===== SCROLL REVEAL ===== */
  #rd-article-style .rd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  #rd-article-style .rd-reveal.rd-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* ===== BACK TO TOP ===== */
  #rd-article-style .rd-back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px; height: 44px;
    background: #e79004;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(231,144,4,0.4);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
  }
  #rd-article-style .rd-back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
  }
  #rd-article-style .rd-back-to-top:hover {
    background: #d07e00;
  }
  
  /* ===== LIGHTBOX ===== */
  #rd-article-style .rd-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  #rd-article-style .rd-lightbox.active {
    opacity: 1;
    pointer-events: auto;
  }
  #rd-article-style .rd-lightbox img {
    max-width: 92vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    cursor: default;
  }
  
  /* ===== SECTION SPACING ===== */
  #rd-article-style section { margin-bottom: 8px; }
  
  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    #rd-article-style { max-width: 880px; }
    #rd-article-style .rd-layout { flex-direction: column; gap: 0; }
    #rd-article-style .rd-toc { width: 100%; position: static; max-height: none; margin-bottom: 24px; }
    #rd-article-style .rd-toc-toggle { display: block; }
    #rd-article-style .rd-toc-inner { display: none; margin-top: 10px; }
    #rd-article-style .rd-toc.open .rd-toc-inner { display: block; }
  }
  @media (max-width: 768px) {
    #rd-article-style h1 { font-size: 24px; }
    #rd-article-style h2 { font-size: 20px; margin-top: 36px; }
    #rd-article-style h3 { font-size: 18px; }
    #rd-article-style { font-size: 15px; }
    #rd-article-style table { font-size: 13px; }
    #rd-article-style thead th, #rd-article-style tbody td { padding: 10px 12px; }
    #rd-article-style blockquote { padding: 16px 18px; }
    #rd-article-style .rd-stats { grid-template-columns: repeat(2, 1fr); }
    #rd-article-style .rd-stat-number { font-size: 28px; }
    #rd-article-style .rd-steps { grid-template-columns: 1fr; }
    #rd-article-style .rd-products-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
    #rd-article-style .rd-cta { flex-direction: column; }
    #rd-article-style .rd-cta a { text-align: center; justify-content: center; }
    #rd-article-style .rd-back-to-top { bottom: 20px; right: 20px; }
  }

/* End */


/* Start:/local/templates/aspro_mshop/components/bitrix/news.detail/main_template/style.css?17850957521068*/
/* "По теме" — RELATED_ARTICLES backlinks block (task #326) */
.rd-related-articles {
  max-width: 1120px;
  margin: 40px auto 0;
}
.rd-related-articles-title {
  font-size: 22px;
  font-weight: 700;
  color: #0d0d1a;
  margin: 0 0 18px 0;
}
.rd-related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.rd-related-article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.rd-related-article-card:hover {
  border-color: #e79004;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.rd-related-article-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.rd-related-article-name {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .rd-related-articles-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* End */
/* /local/templates/aspro_mshop/css/rd-article.css?178533074218087 */
/* /local/templates/aspro_mshop/components/bitrix/news.detail/main_template/style.css?17850957521068 */
