/* Wiki Quotes — стили как в newswire-redesign (белый блок, тень, синяя полоска, кавычка "66") */

/* Обёртка цитаты на странице статьи — без своего оформления */
.article-text .quote-wrapper-content {
    margin: 1.25rem 0;
}

/* ── Блок цитаты (простая и диалог) ── */
.article-text blockquote,
.article-text .quote-wrapper-content blockquote {
    position: relative;
    margin: 0;
    padding: 1rem 1.1rem 0.75rem calc(1.1rem + 0.345vw);
    border: 0.069vw solid #e6e6e6;
    border-radius: 0.552vw;
    background: #ffffff;
    box-shadow: 0 0.276vw 0.829vw rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Левая акцентная полоска — такой же цвет, как у полоски подзаголовков (h2) */
.article-text blockquote::before,
.article-text .quote-wrapper-content blockquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.345vw;
    border-radius: 0.552vw 0 0 0.552vw;
    background: linear-gradient(to bottom, var(--wiki-accent, #4f6ef7), var(--wiki-accent-light, #6c8cff));
}

/* Декоративная кавычка "66" справа сверху */
.article-text blockquote::after,
.article-text .quote-wrapper-content blockquote::after {
    content: "\201C";
    position: absolute;
    right: 1.25rem;
    top: 0.625rem;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.08);
    user-select: none;
    pointer-events: none;
}

/* Текст цитаты (простая цитата) — отступ справа, чтобы не залезать на кавычку */
.article-text blockquote p,
.article-text .quote-wrapper-content blockquote p {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-right: 2.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
    font-style: italic;
    color: #343a40;
}

/* Источник цитаты (footer) — прижат к правому краю, компактные отступы */
.article-text blockquote .quote-source,
.article-text .quote-wrapper-content blockquote .quote-source {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0.5rem;
    padding-top: 0.35rem;
    border-top: 0.069vw solid #e6e6e6;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    color: #6c757d;
    text-align: right;
}

.article-text blockquote .quote-source::before,
.article-text .quote-wrapper-content blockquote .quote-source::before {
    content: "— ";
}

/* ── Диалог (сетка: спикер | реплика) ── */
.article-text blockquote .editor-dialogue-grid,
.article-text .quote-wrapper-content blockquote .editor-dialogue-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.25rem 1rem;
    align-items: baseline;
}

.article-text blockquote .editor-dialogue-grid .dialogue-speaker,
.article-text .quote-wrapper-content blockquote .editor-dialogue-grid .dialogue-speaker {
    font-size: 1rem;
    font-weight: 700;
    color: #343a40;
}

.article-text blockquote .editor-dialogue-grid .dialogue-replica,
.article-text .quote-wrapper-content blockquote .editor-dialogue-grid .dialogue-replica {
    font-size: 1.125rem;
    font-style: italic;
    color: #343a40;
    line-height: 1.5;
}

