.lectoriy-pill{font-size:12px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(17,19,26,.55);}
/* --- Lectoriy.kz Accordion Clone --- */

.lkz-acc {
    margin: 24px 0;
    font-family: "Inter", "Segoe UI", sans-serif;
}

.lkz-acc-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow .25s ease;
}

.lkz-acc-item.active {
    box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

.lkz-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
}

.lkz-acc-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lkz-acc-icon {
    width: 42px;
    height: 42px;
    background: #F5F7FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #E53935; /* красное сердечко */
}

.lkz-acc-title {
    font-size: 20px;
    font-weight: 600;
    color: #0D47A1;
}

.lkz-acc-arrow {
    font-size: 20px;
    color: #666;
    transition: transform .25s ease;
}

.lkz-acc-item.active .lkz-acc-arrow {
    transform: rotate(90deg);
}

.lkz-acc-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    background: #fafafa;
    transition: max-height .25s ease, padding .25s ease;
    font-size: 17px;
    color: #333;
    line-height: 1.55;
}

.lkz-acc-item.active .lkz-acc-content {
    padding: 18px 28px 26px;
    max-height: 500px;
}

.lkz-acc-content p {
    margin: 0 0 12px;
}

