/* Minimal "prose-like" styles for blog content (no Tailwind build needed) */

.blog-content {
    color: rgba(17, 24, 39, 0.9); /* близко к text-foreground/90 */
    line-height: 1.75;
    font-size: 18px;
}

.blog-content h2 {
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
}

.blog-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.blog-content p {
    margin: 1rem 0;
}

.blog-content ul,
.blog-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }

.blog-content li {
    margin: 0.25rem 0;
}

.blog-content a {
    color: #5B80AE;
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover {
    text-decoration: underline;
}

.blog-content strong {
    color: #111827;
    font-weight: 700;
}

.blog-content blockquote {
    border-left: 4px solid #5B80AE;
    padding-left: 1rem;
    color: rgba(17, 24, 39, 0.75);
    margin: 1.5rem 0;
}

.article-cta {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(91, 128, 174, 0.08) 0%,
        #ffffff 60%,
        rgba(91, 128, 174, 0.04) 100%
    );
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
}

.article-cta__bg {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 9999px;
    background: rgba(91, 128, 174, 0.18);
    filter: blur(40px);
    pointer-events: none;
}

.article-cta__content {
    position: relative;
    z-index: 1;
    padding: 1.6rem 1.4rem;
    text-align: center;
}

.article-cta .article-cta__title {
    margin: 0 0 0.4rem 0;
    font-size: 1.45rem;
    line-height: 1.25;
    font-weight: 800;
    color: #111827;
}

.article-cta .article-cta__text {
    margin: 0 auto 1rem auto;
    max-width: 460px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(17, 24, 39, 0.72);
}

.article-cta .article-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;

    padding: 0.7rem 1.2rem;

    border-radius: 12px;

    background: #5B80AE;
    color: #ffffff;
    text-decoration: none;

    font-size: 0.9rem;
    font-weight: 700;

    box-shadow: 0 6px 14px rgba(91, 128, 174, 0.28);

    transition: all 0.2s ease;
}

.article-cta .article-cta__button:hover {
    background: #4d719d;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(91, 128, 174, 0.32);
}

.article-cta .article-cta__icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {

    .article-cta__content {
        padding: 1.4rem 1rem;
    }

    .article-cta .article-cta__title {
        font-size: 1.2rem;
    }

    .article-cta .article-cta__text {
        font-size: 0.9rem;
    }

    .article-cta .article-cta__button {
        width: 100%;
    }

}

.article-table-wrapper {
    margin: 2rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.article-table-scroll {
    overflow-x: auto;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    font-size: 16px;
    line-height: 1.5;
    color: #111827;
}

.article-table thead {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4fb 100%);
}

.article-table th,
.article-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e5e7eb;
}

.article-table th {
    font-size: 0.95rem;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}

.article-table td {
    font-size: 0.95rem;
    color: rgba(17, 24, 39, 0.82);
}

.article-table tbody tr:nth-child(even) {
    background: #fcfdff;
}

.article-table tbody tr:hover {
    background: #f8fbff;
}

.article-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .article-table {
        font-size: 14px;
        min-width: 560px;
    }

    .article-table th,
    .article-table td {
        padding: 0.75rem 0.85rem;
    }
}
