.article-kt {
    --kt-navy:   #0e2c47;
    --kt-body:   #333333;
    --kt-muted:  #666666;
    --kt-green:  #28a745;
    --kt-cite:   #1b6b93;
    --kt-border: #d4eff9;

    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--kt-border);
    border-radius: 12px;
    padding: 16px 17px;
    font-family: Inter, sans-serif;
    margin: 0 0 24px;
}

.article-kt__label {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--kt-muted);
}

.article-kt__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.article-kt__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.article-kt__check {
    flex: 0 0 auto;
    display: block;
    width: 11px;
    height: auto;
    margin-top: 4px;
}
.article-kt__text {
    font-family: Inter, sans-serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--kt-body);
}
.article-kt__text p { margin: 0; }
.article-kt__text strong,
.article-kt__text b,
.article-kt__lead {
    font-weight: 700;
    color: var(--kt-navy);
}
.article-kt__text em { font-style: italic; }

.article-kt__note {
    margin: 14px 0 0;
    padding-top: 14px;
    border-top: 1px solid var(--kt-border);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.6;
    color: var(--kt-cite);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

@media (min-width: 768px) {
    .article-kt {
        position: relative;
        border: 1px solid rgba(14, 44, 71, 0.08);
        border-radius: 16px;
        padding: 33px 37px;
        overflow: hidden;
        --kt-body: #2e3d4f;
    }

    .article-kt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #0e2c47 0%, #1b3a5c 100%);
    }
    .article-kt__label {
        margin-bottom: 0;
        padding-bottom: 27px;
        border-bottom: 1px solid rgba(14, 44, 71, 0.06);
        font-size: 1.3rem;
        letter-spacing: 1.5px;
        color: var(--kt-navy);
    }
    .article-kt__list {
        gap: 14px;
        padding: 20px 0;
    }
    .article-kt__check {
        width: 14px;
        margin-top: 5px;
    }
    .article-kt__text {
        font-family: Merriweather, Georgia, 'Times New Roman', serif;
        font-size: 1.5rem;
        line-height: 1.65;
    }
    .article-kt__note {
        margin-top: 0;
        padding-top: 15px;
        border-top: 1px solid rgba(14, 44, 71, 0.06);
    }
}
