/* Blog makale detay */

.blog-article {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 48px;
}

.blog-article__breadcrumb {
    font-size: 0.8125rem;
    color: var(--text-muted, #9ca3af);
    margin-bottom: 24px;
}

.blog-article__breadcrumb a {
    color: var(--text-muted, #9ca3af);
    text-decoration: none;
}

.blog-article__breadcrumb a:hover { color: #10b981; }

.blog-article__header {
    margin-bottom: 32px;
}

.blog-article__cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #10b981;
    margin-bottom: 12px;
}

.blog-article h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0 0 16px;
}

.blog-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-muted, #6b7280);
}

.blog-article__cover {
    margin: 0 0 40px;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--surface-2, #f0f0f0);
}

.blog-article__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.dark-theme .blog-article__cover {
    background: #1e1e1e;
}

.blog-article__content {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-primary, #1f2937);
}

body.dark-theme .blog-article__content {
    color: #e5e5e5;
}

.blog-article__content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2em 0 0.75em;
    letter-spacing: -0.01em;
}

.blog-article__content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.5em 0 0.5em;
}

.blog-article__content p { margin: 0 0 1.25em; }

.blog-article__content ul,
.blog-article__content ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}

.blog-article__content li { margin-bottom: 0.5em; }

.blog-article__content a {
    color: #10b981;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-article__content a:hover { color: #059669; }

.blog-article__content strong {
    font-weight: 600;
    color: inherit;
}

.blog-article__content blockquote {
    margin: 1.5em 0;
    padding: 16px 20px;
    border-left: 4px solid #10b981;
    background: var(--surface-2, #f9fafb);
    border-radius: 0 8px 8px 0;
    font-style: normal;
}

body.dark-theme .blog-article__content blockquote {
    background: #2a2a2a;
}

.blog-related {
    max-width: 1120px;
    margin: 48px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border-color, #e8e8e8);
}

body.dark-theme .blog-related {
    border-color: #333;
}

.blog-related h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 24px;
}

.blog-related-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.blog-related-product {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color, #ebebeb);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.blog-related-product:hover { border-color: #10b981; }

body.dark-theme .blog-related-product {
    background: #2a2a2a;
    border-color: #333;
}

.blog-related-product img {
    aspect-ratio: 1;
    object-fit: cover;
    background: #f3f4f6;
}

body.dark-theme .blog-related-product img {
    background: #1e1e1e;
}

.blog-related-product span {
    padding: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.35;
}

.blog-link-tree {
    margin: 40px 0;
    padding: 24px;
    background: var(--surface-2, #f9fafb);
    border-radius: 12px;
    border: 1px solid var(--border-color, #e8e8e8);
}

body.dark-theme .blog-link-tree {
    background: #2a2a2a;
    border-color: #333;
}

.blog-link-tree h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 16px;
}

.blog-link-tree ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-link-tree li {
    margin-bottom: 8px;
}

.blog-link-tree a {
    color: #10b981;
    text-decoration: none;
    font-size: 0.9375rem;
}

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

.blog-link-tree .sub {
    padding-left: 16px;
    margin-top: 4px;
}
