/* SA Key Takeaways — Sabbir Ahmed */
.sa-kt {
    background: #EAF1FF;
    border-radius: 16px;
    padding: 24px 28px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Header ── */
.sa-kt__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    line-height: 1.3;
}

.sa-kt__title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: #1c57ff;
}

.sa-kt__title-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.sa-kt__title-icon i {
    font-size: 18px;
    line-height: 1;
}

.sa-kt__title {
    margin: 0;
    color: #1c57ff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* ── List ── */
.sa-kt__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sa-kt__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.sa-kt__item::before { display: none !important; }
.sa-kt__item::marker { display: none; content: ''; }

/* ── Bullets ── */
.sa-kt__bullet {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    line-height: 1.4;
    min-width: 16px;
    font-size: 16px;
    margin-top: 2px;
}

.sa-kt__bullet--dot {
    line-height: 1;
    font-size: 20px;
}

.sa-kt__bullet--num {
    font-weight: 500;
    min-width: 22px;
    margin-top: 0;
}

.sa-kt__bullet svg,
.sa-kt__bullet i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    color: inherit;
    fill: currentColor;
}

.sa-kt__bullet--check svg path { fill: currentColor; }

.sa-kt__bullet--arrow svg path {
    stroke: currentColor;
    fill: none;
}

/* ── Item text ── */
.sa-kt__item-text {
    color: #000000;
    font-size: 15px;
    line-height: 1.5;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
}

/* Mobile */
@media (max-width: 767px) {
    .sa-kt {
        padding: 18px;
    }
    .sa-kt__title {
        font-size: 15px;
    }
    .sa-kt__item-text {
        font-size: 14px;
    }
}

/* Clickable items */
.sa-kt__item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    line-height: 1.5;
}

.sa-kt__item a:hover {
    color: #1c57ff;
}

.sa-kt__empty {
    color: rgba(17,17,17,0.5);
    font-size: 13px;
    padding: 8px 0;
}
