.article-page__lead {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
}

.article-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0 10px;
}

.article-content {
    line-height: 1.7;
}

.article-content img {
    height: auto;
    max-width: 100%;
}

.article-flash {
    background: #e9fbe9;
    border: 1px solid #bfe5bf;
    border-radius: 8px;
    color: #146d14;
    font-weight: 700;
    margin: 0 auto 14px;
    padding: 12px 14px;
}

.diet-program {
    display: grid;
    gap: 24px;
}

.diet-program__hero {
    align-items: stretch;
    background: linear-gradient(135deg, #fff8e8 0%, #fffdf8 100%);
    border: 1px solid #f0d9b5;
    border-radius: 22px;
    display: grid;
    gap: 24px;
    padding: clamp(22px, 4vw, 36px);
}

.diet-program__label {
    background: #f8fff6;
    border: 1px solid #1a881a;
    border-radius: 999px;
    color: #1a881a;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    padding: 6px 12px;
}

.diet-program p {
    color: #3f493f;
    line-height: 1.75;
    margin: 0 0 16px;
}

.diet-program p:last-child {
    margin-bottom: 0;
}

.diet-program h3 {
    margin: 0 0 10px;
}

.diet-program__toc {
    border-top: 1px dashed #f0d9b5;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    margin-top: 24px;
    padding-top: 22px;
}

.diet-program__toc,
.diet-program__toc * {
    box-sizing: border-box;
    min-width: 0;
}

.diet-program__toc a {
    align-items: center;
    background: #fff;
    border: 1px solid #e4eadf;
    border-radius: 14px;
    color: #1a881a;
    display: flex;
    font-weight: 800;
    justify-content: center;
    line-height: 1.35;
    min-height: 50px;
    padding: 10px 14px;
    text-align: center;
    text-decoration: none;
    transition: .22s ease;
}

.diet-program__toc a:hover {
    background: #20ab20;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .diet-program__hero {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .diet-program__toc {
        grid-template-columns: 1fr;
        margin-top: 20px;
        padding-top: 18px;
    }

    .diet-program__toc a {
        justify-content: flex-start;
        min-height: 48px;
        text-align: left;
    }

    .diet-program__hero {
        grid-template-columns: 1fr;
    }
}