/**
 * Blog Article Styles
 * Custom styling for blog post content
 */

/* Table of Contents / Summary */
.article-toc {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 24, 39, 0.10);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}
.article-toc strong {
    display: block;
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 16px;
}
.article-toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.article-toc li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.article-toc li:last-child {
    border-bottom: none;
}
.article-toc a {
    color: #744b2f;
    text-decoration: none;
    transition: all 0.2s;
}
.article-toc a:hover {
    color: #5b3b27;
    padding-left: 8px;
}

/* Headings */
.prose h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(17, 24, 39, 0.10);
}
.prose h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #374151;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Tables */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.10);
}
.prose thead {
    background: rgba(243, 232, 215, 0.9);
}
.prose th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: #111827;
    border-bottom: 2px solid rgba(17, 24, 39, 0.10);
}
.prose td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
    color: #374151;
}
.prose tbody tr:hover {
    background: rgba(17, 24, 39, 0.02);
}
.prose tbody tr:last-child td {
    border-bottom: none;
}

/* Lists */
.prose ul, .prose ol {
    margin: 16px 0;
    padding-left: 24px;
}
.prose li {
    margin: 8px 0;
    color: #374151;
}
.prose li::marker {
    color: #744b2f;
}

/* Images and figures */
.prose figure {
    margin: 32px 0;
}
.prose figcaption {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 8px;
}

/* Paragraphs */
.prose p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Links */
.prose a {
    color: #744b2f;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.prose a:hover {
    color: #5b3b27;
}

/* YouTube embeds */
.prose iframe {
    border-radius: 12px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.language-switcher a {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid rgba(17, 24, 39, 0.10);
    color: #6b7280;
}
.language-switcher a:hover {
    background: rgba(17, 24, 39, 0.02);
    border-color: rgba(17, 24, 39, 0.14);
    color: #111827;
}
.language-switcher a.active {
    background: rgba(243, 232, 215, 0.8);
    border-color: rgba(17, 24, 39, 0.14);
    color: #111827;
}
