/**
 * Blog Article Styles - Premium Dark Theme
 * Design moderno, escuro e deslumbrante para artigos
 */

/* ==========================================
   CSS Variables (inherits from pages-premium.css)
   ========================================== */
:root {
    --article-bg: #0f0f23;
    --article-card-bg: rgba(255, 255, 255, 0.03);
    --article-border: rgba(255, 255, 255, 0.08);
    --article-text: rgba(255, 255, 255, 0.85);
    --article-heading: #ffffff;
    --article-muted: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   ARTICLE HERO - Premium Dark
   ========================================== */
.article-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.3) 0%, 
        rgba(139, 92, 246, 0.2) 50%, 
        rgba(34, 211, 238, 0.1) 100%);
    z-index: 0;
    filter: blur(80px);
}

.article-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 14px;
    color: var(--article-muted);
}

.article-breadcrumb a {
    color: var(--article-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.article-breadcrumb a:hover {
    color: #6366f1;
}

.article-breadcrumb svg {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-category {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--article-muted);
    font-size: 14px;
}

.article-date svg,
.article-read-time svg {
    width: 16px;
    height: 16px;
}

.article-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    max-width: 900px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-excerpt {
    font-size: 1.25rem;
    color: var(--article-text);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.article-author {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.author-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.author-avatar svg {
    width: 26px;
    height: 26px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: #fff;
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: var(--article-muted);
}

/* ==========================================
   FEATURED IMAGE - Premium Dark
   ========================================== */
.article-featured-image {
    margin-top: -40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.article-featured-image .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-featured-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

/* ==========================================
   ARTICLE CONTENT - Premium Dark
   ========================================== */
.article-content {
    padding: 0 0 80px;
}

.article-content .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-body {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--article-text);
}

/* Headings */
.article-body h2 {
    font-size: 1.875rem;
    font-weight: 800;
    color: #fff;
    margin: 64px 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    position: relative;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
}

.article-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-body h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.article-body p {
    margin-bottom: 24px;
}

/* Premium Lists - Dark Theme */
.article-body ul,
.article-body ol {
    margin: 32px 0;
    padding: 0;
    list-style: none;
}

.article-body ul li,
.article-body ol li {
    position: relative;
    padding: 16px 20px 16px 56px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
}

.article-body ul li:hover,
.article-body ol li:hover {
    transform: translateX(8px);
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
    border-left-color: #8b5cf6;
}

.article-body ul li::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
}

.article-body ol {
    counter-reset: item;
}

.article-body ol li::before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: bold;
    line-height: 28px;
    text-align: center;
}

.article-body li strong {
    color: #fff;
}

/* Blockquote Premium Dark */
.article-body blockquote {
    position: relative;
    margin: 48px 0;
    padding: 36px 44px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    color: #fff;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
}

.article-body blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 100px;
    color: rgba(99, 102, 241, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Links */
.article-body a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.article-body a:hover {
    color: #a5b4fc;
    border-bottom-color: #a5b4fc;
}

/* Code */
.article-body code {
    background: rgba(99, 102, 241, 0.2);
    color: #a5f3fc;
    padding: 4px 10px;
    border-radius: 6px;
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.article-body pre {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    overflow-x: auto;
    margin: 32px 0;
}

.article-body pre code {
    background: transparent;
    border: none;
    padding: 0;
}

/* ==========================================
   INFO BOXES - Premium Dark Cards
   ========================================== */
.info-box {
    position: relative;
    margin: 40px 0;
    padding: 28px 32px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
}

/* Tip Box - Dark */
.info-box.tip {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.info-box.tip::before {
    background: linear-gradient(180deg, #10b981, #059669);
}

.info-box.tip h4 {
    color: #34d399;
}

/* Warning Box - Dark */
.info-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.info-box.warning::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

.info-box.warning h4 {
    color: #fbbf24;
}

/* Alert Box - Dark */
.info-box.alert {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.info-box.alert::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.info-box.alert h4 {
    color: #f87171;
}

/* Default Info Box - Dark */
.info-box:not(.tip):not(.warning):not(.alert) {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.info-box:not(.tip):not(.warning):not(.alert)::before {
    background: linear-gradient(180deg, #3b82f6, #2563eb);
}

.info-box:not(.tip):not(.warning):not(.alert) h4 {
    color: #60a5fa;
}

.info-box h4 {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.info-box h4::before {
    content: none;
}

.info-box p {
    margin: 0;
    color: var(--article-text);
    line-height: 1.7;
}

.info-box ul {
    margin: 12px 0 0 0 !important;
    padding: 0 !important;
}

.info-box li {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 12px 16px !important;
    margin-bottom: 8px !important;
    font-size: 0.95rem;
    border-left: 3px solid currentColor !important;
    border-radius: 8px !important;
}

.info-box li::before {
    display: none !important;
}

.info-box.tip li {
    border-left-color: #10b981 !important;
}

.info-box.warning li {
    border-left-color: #f59e0b !important;
}

.info-box.alert li {
    border-left-color: #ef4444 !important;
}

/* ==========================================
   STEPS - Premium Dark Tutorial Style
   ========================================== */
.article-body .steps,
.article-content .steps {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    margin: 48px 0;
    position: relative;
    counter-reset: step;
    gap: 0 !important;
}

.article-body .steps::before,
.article-content .steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(99, 102, 241, 0.5) 0%, 
        rgba(139, 92, 246, 0.5) 50%,
        rgba(34, 211, 238, 0.5) 100%);
    border-radius: 3px;
}

.article-body .step,
.article-content .step {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    max-width: 100% !important;
    width: 100% !important;
    position: relative;
    padding: 24px 24px 24px 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 16px;
    counter-increment: step;
    transition: all 0.3s ease;
}

.article-body .step:hover,
.article-content .step:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(8px);
}

.article-body .step-number,
.article-content .step-number {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    margin-bottom: 0 !important;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    z-index: 2;
}

.article-body .step-connector,
.article-content .step-connector {
    display: none !important;
}

.article-body .step h4,
.article-content .step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.article-body .step h4::before,
.article-content .step h4::before {
    display: none;
}

.article-body .step p,
.article-content .step p {
    margin: 0;
    color: var(--article-text);
    font-size: 0.95rem;
}

/* ==========================================
   FEATURE GRID - Premium Dark
   ========================================== */
.feature-grid,
.article-body .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card,
.article-body .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover,
.article-body .feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .feature-icon,
.article-body .feature-card .feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 14px;
    margin-bottom: 16px;
}

.feature-card .feature-icon svg,
.article-body .feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
    color: #818cf8;
}

.feature-card h4,
.article-body .feature-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card h4::before,
.article-body .feature-card h4::before {
    display: none;
}

.feature-card p,
.article-body .feature-card p {
    font-size: 0.95rem;
    color: var(--article-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================
   COMPARISON TABLE - Premium Dark
   ========================================== */
.comparison-table,
.article-body table {
    width: 100%;
    margin: 40px 0;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th,
.article-body table th {
    background: rgba(99, 102, 241, 0.15);
    color: #fff;
    font-weight: 700;
    padding: 16px 20px;
    text-align: left;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-table td,
.article-body table td {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--article-text);
}

.comparison-table tr:last-child td,
.article-body table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td,
.article-body table tr:hover td {
    background: rgba(99, 102, 241, 0.1);
}

/* ==========================================
   TAGS - Premium Dark
   ========================================== */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tags-label {
    font-weight: 600;
    color: var(--article-muted);
    font-size: 14px;
}

.tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    color: var(--article-text);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

/* ==========================================
   SHARE BUTTONS - Premium Dark
   ========================================== */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.share-label {
    font-weight: 600;
    color: var(--article-muted);
    font-size: 14px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--article-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.share-btn svg {
    width: 20px;
    height: 20px;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.share-btn.copy:hover {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    color: white;
}

/* ==========================================
   ARTICLE CTA - Premium Dark
   ========================================== */
.article-cta {
    margin-top: 60px;
    padding: 48px;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.15) 0%, 
        rgba(139, 92, 246, 0.15) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.article-cta h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
}

.article-cta p {
    color: var(--article-text);
    margin-bottom: 24px;
    font-size: 1.1rem;
    position: relative;
}

.article-cta .btn {
    position: relative;
}

/* ==========================================
   RELATED POSTS - Premium Dark
   ========================================== */
.related-posts {
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.related-posts .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.related-posts h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}

.related-posts .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.related-posts .blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.related-posts .blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.related-posts .blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.related-posts .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-posts .blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.related-posts .blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-posts .blog-content {
    padding: 24px;
}

.related-posts .blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.related-posts .blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--article-muted);
}

.related-posts .blog-meta svg {
    width: 14px;
    height: 14px;
}

.related-posts .blog-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-posts .blog-content h3::before {
    display: none;
}

.related-posts .blog-content h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.related-posts .blog-content h3 a:hover {
    color: #818cf8;
}

.related-posts .blog-content p {
    font-size: 0.9rem;
    color: var(--article-muted);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   BUTTONS - Premium Dark
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary,
.btn.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover,
.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ==========================================
   RESPONSIVE - Article Specific
   ========================================== */
@media (max-width: 768px) {
    .article-hero {
        padding: 120px 0 60px;
    }
    
    .article-hero h1 {
        font-size: 1.75rem;
    }
    
    .article-excerpt {
        font-size: 1rem;
    }
    
    .article-meta-top {
        gap: 12px;
    }
    
    .article-featured-image img {
        height: 300px;
        border-radius: 16px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        margin-top: 48px;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
    
    .article-cta {
        padding: 32px 24px;
    }
    
    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .article-body .step,
    .article-content .step {
        padding-left: 60px;
    }
    
    .article-body .step-number,
    .article-content .step-number {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 16px;
        left: 5px;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.5rem;
    }
    
    .article-author {
        padding: 12px 16px;
    }
    
    .author-avatar {
        width: 44px;
        height: 44px;
    }
    
    .related-posts .blog-grid {
        grid-template-columns: 1fr;
    }
}
