<style >
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #22d3ee;
    --accent-glow: rgba(34, 211, 238, 0.4);
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.8;
}

/* Background Effects */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

    header.scrolled {
        padding: 0.75rem 2rem;
        background: rgba(10, 10, 15, 0.95);
    }

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .logo:hover {
        transform: scale(1.02);
    }

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem;
    border-radius: 50px;
    border: 1px solid var(--border);
}

    nav a {
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        padding: 0.6rem 1.25rem;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        nav a:hover,
        nav a.active {
            color: var(--text-primary);
            background: rgba(99, 102, 241, 0.15);
        }

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .search-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* Main Content */
main {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

/* Article Hero */
.article-hero {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

    .article-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, transparent 100%);
        pointer-events: none;
    }

.article-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb */
.breadcrumb {
    display: contents;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 5.5rem;
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--accent);
        }

    .breadcrumb span {
        color: var(--text-muted);
    }

    .breadcrumb .current {
        color: var(--text-secondary);
    }

/* Article Meta */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 20px;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
}

.article-date, .article-read-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-excerpt {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* Author Box */
.author-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Featured Image */
.featured-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.featured-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.featured-image-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-muted);
}

    .featured-image-placeholder svg {
        width: 80px;
        height: 80px;
        opacity: 0.5;
    }

/* Article Layout */
.article-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
}

/* Article Content */
.article-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: justify;
    text-justify: inter-word;
}

    .article-content h2 {
        font-size: 1.75rem;
        font-weight: 800;
        margin: 2.5rem 0 1.25rem;
        color: var(--text-primary);
        position: relative;
        padding-right: 1rem;
    }

        .article-content h2::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-1);
            border-radius: 4px;
        }

        .article-content h2:first-child {
            margin-top: 0;
        }

    .article-content h3 {
        font-size: 1.35rem;
        font-weight: 700;
        margin: 2rem 0 1rem;
        color: var(--text-primary);
    }

    .article-content p {
        margin-bottom: 1.5rem;
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 2;
    }

    .article-content a {
        color: var(--accent);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.3s;
    }

        .article-content a:hover {
            border-bottom-color: var(--accent);
        }

    .article-content ul, .article-content ol {
        margin: 1.5rem 0;
        padding-right: 1.5rem;
    }

    .article-content li {
        margin-bottom: 0.75rem;
        color: var(--text-secondary);
        font-size: 1.05rem;
    }

    .article-content blockquote {
        margin: 2rem 0;
        padding: 1.5rem 2rem;
        background: rgba(99, 102, 241, 0.08);
        border-right: 4px solid var(--primary);
        border-radius: var(--radius-sm);
        font-style: italic;
        color: var(--text-secondary);
    }

    .article-content code {
        background: rgba(255, 255, 255, 0.08);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-family: 'Fira Code', monospace;
        font-size: 0.9em;
        color: var(--accent);
    }

    .article-content pre {
        background: #1e1e2e;
        padding: 1.5rem;
        border-radius: var(--radius-md);
        overflow-x: auto;
        margin: 1.5rem 0;
        border: 1px solid var(--border);
    }

        .article-content pre code {
            background: transparent;
            padding: 0;
            color: var(--text-primary);
        }

/* Info Box */
.info-box {
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
}

    .info-box.tip {
        background: rgba(34, 211, 238, 0.1);
        border: 1px solid rgba(34, 211, 238, 0.3);
    }

    .info-box.warning {
        background: rgba(251, 191, 36, 0.1);
        border: 1px solid rgba(251, 191, 36, 0.3);
    }

.info-box-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-box-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-box-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* Image in Content */
.content-image {
    margin: 2rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

    .content-image img {
        width: 100%;
        display: block;
    }

    .content-image figcaption {
        padding: 1rem;
        background: var(--bg-card);
        text-align: center;
        color: var(--text-muted);
        font-size: 0.9rem;
    }

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

    .sidebar-widget h3 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

/* Table of Contents */
.toc-list {
    list-style: none;
}

    .toc-list li {
        margin-bottom: 0.5rem;
    }

    .toc-list a {
        display: block;
        padding: 0.6rem 1rem;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
        transition: all 0.3s;
        border-right: 2px solid transparent;
    }

        .toc-list a:hover,
        .toc-list a.active {
            background: rgba(99, 102, 241, 0.1);
            color: var(--text-primary);
            border-right-color: var(--primary);
        }

/* Table of Contents */
.category-list {
    list-style: none;
}

    .category-list li {
        margin-bottom: 0.5rem;
    }

    .category-list a {
        display: block;
        padding: 0.6rem 1rem;
        color: var(--text-secondary);
        text-decoration: none;
        font-size: 0.99rem;
        border-radius: var(--radius-sm);
        transition: all 0.3s;
        border-right: 2px solid transparent;
    }

        .category-list a:hover,
        .category-list a.active {
            background: rgba(99, 102, 241, 0.1);
            color: var(--text-primary);
            border-right-color: var(--primary);
        }

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .share-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
    }

/* Related Articles */
.related-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

    .related-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .related-item:first-child {
        padding-top: 0;
    }

.related-thumb {
    width: 70px;
    height: 70px;
    background: var(--gradient-hero);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.related-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

    .related-info h4 a {
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s;
    }

        .related-info h4 a:hover {
            color: var(--accent);
        }

.related-info h5 {
    color: var(--text-muted);
}

.related-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Tags Section */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s;
}

    .article-tag:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

/* Comments Section */
.comments-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.comments-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

    .comments-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

.comment-count {
    background: var(--gradient-1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Comment Form */
.comment-form {
    margin-bottom: 2.5rem;
}

    .comment-form textarea {
        width: 100%;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        color: var(--text-primary);
        font-family: inherit;
        font-size: 1rem;
        resize: vertical;
        min-height: 120px;
        transition: border-color 0.3s;
    }

        .comment-form textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .comment-form textarea::placeholder {
            color: var(--text-muted);
        }

.comment-form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn {
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
    }

/* Comment Item */
.comment-list {
    list-style: none;
}

.comment-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

    .comment-item:last-child {
        border-bottom: none;
    }

.comment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10a37f, #1a7f64);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.comment-meta h4 {
    font-size: 1rem;
    font-weight: 600;
}

.comment-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.comment-body {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-right: 60px;
}

.comment-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-right: 60px;
}

.comment-action {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
}

    .comment-action:hover {
        color: var(--accent);
    }

/* CTA Section */
.cta-section {
    padding: 5rem 2rem;
    position: relative;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-hero);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

    .cta-container::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent 0deg, var(--accent-glow) 45deg, transparent 90deg);
        animation: rotate 15s linear infinite;
        opacity: 0.15;
    }

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

    .btn-secondary:hover {
        border-color: var(--primary-light);
        background: rgba(99, 102, 241, 0.1);
    }

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

    .footer-column a:hover {
        color: var(--accent);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: all 0.3s;
    }

        .footer-social a:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
    }

/* Responsive */
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 992px) {
    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-hero {
        padding: 2.5rem 1.5rem;
    }

    .article-title {
        font-size: 1.75rem;
    }

    .article-meta {
        gap: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .article-layout {
        padding: 0 1.5rem 3rem;
    }

    .article-content {
        padding: 2rem 1.5rem;
    }

    .comment-body, .comment-actions {
        padding-right: 0;
    }

    .cta-container {
        padding: 3rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.75rem 1rem;
    }

    .article-excerpt {
        font-size: 1.05rem;
    }

    .comments-container {
        padding: 1.5rem;
    }
}

/* Center share buttons inside the sidebar widget */
.sidebar-widget .share-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem; /* spacing between buttons */
    flex-wrap: wrap; /* wrap on small screens */
}

/* Optional: make buttons visually consistent when centered */
.sidebar-widget .share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}
