

/* Start:/local/templates/pokolenie/components/bitrix/news.detail/eko/style.css?17857494652216*/
:root {
    --bg: #1c1c1a;
    --card-bg: #f7f4ec;
    --card-bg-hover: #f2efe4;
    --title-color: #8fa5f0;
    --text-dark: #1f1f1d;
    --text-muted: #5a5a54;
    --accent: #bfe3d1;
    --accent-dark: #1f6b52;
    --border-soft: #e6e1d2;
}

.faq-panel {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.faq-item:hover {
    background: var(--card-bg-hover);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question span {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-toggle {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-olive);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.25s ease;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: #f7f4ec;
    border-radius: 2px;
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.open .faq-toggle::after {
    transform: scaleY(0);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--text-muted);
    border-top: 1px solid var(--border-soft);
    padding-top: 14px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
}

.btn.btn-sm {
    font-size: 10rem;
}

/* End */
/* /local/templates/pokolenie/components/bitrix/news.detail/eko/style.css?17857494652216 */
