.single-content {
    min-height: 100vh;
    background: var(--white);
}

.article-wrapper {
    max-width: 100%;
    background: var(--white);
}

.article-header {
    background: linear-gradient(135deg, #0a1628 0%, #1a2f4a 50%, #0f2039 100%);
    padding: 80px 24px 70px;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 40% 30% at 70% 80%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.article-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.article-header-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 32px;
    min-height: 22px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #00D4FF;
}

.breadcrumb i {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.article-header .category-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: #fff;
    border-radius: 6px;
    margin-bottom: 24px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    color: #fff;
    max-width: 100%;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.article-meta-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    min-height: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.meta-author {
    color: rgba(255, 255, 255, 0.7);
}

.meta-author a {
    color: #fff;
    font-weight: 600;
    transition: color 0.2s ease;
}

.meta-author a:hover {
    color: #00D4FF;
}

.meta-separator {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.meta-date,
.meta-reading {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 14px;
    color: #00D4FF;
}


.article-featured-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px 0;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.article-container {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
    background: var(--white);
    min-height: 600px;
    contain: layout style paint;
}

.wp-image-featured,
.article-featured-image img,
.wp-post-image {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-sidebar-left {
    position: relative;
}

.share-buttons {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 8px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.whatsapp { background: #25D366; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.copy { background: var(--text-secondary); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.article-body {
    max-width: 760px;
}

.article-intro {
    margin-bottom: 32px;
}

.article-intro:empty {
    display: none;
    margin: 0;
    padding: 0;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary-blue);
    padding-left: 24px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-content h1 {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 48px 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.article-content h1:first-child {
    margin-top: 0;
}

.article-content h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--primary-gradient);
}

.article-content h2 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 40px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 32px 0 16px 0;
}

.article-content h3:first-child {
    margin-top: 0;
}

.article-content h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 24px 0 12px 0;
}

.article-content h5,
.article-content h6 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 20px 0 10px 0;
}

.article-content p {
    margin-bottom: 24px;
    line-height: 1.9;
}

.article-content p:first-child {
    margin-top: 0;
}

.article-content strong,
.article-content b {
    color: var(--text-primary);
    font-weight: 600;
}

.article-content em,
.article-content i:not(.fa):not(.fas):not(.fab):not(.far) {
    font-style: italic;
}

.article-content a {
    color: var(--primary-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.article-content a:hover {
    color: var(--primary-cyan);
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 24px;
}

.article-content ul {
    list-style: none;
    padding-left: 0;
}

.article-content ul li {
    position: relative;
    padding: 10px 0 10px 28px;
    line-height: 1.7;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.article-content ol {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
}

.article-content ol li {
    position: relative;
    padding: 10px 0 10px 36px;
    line-height: 1.7;
    counter-increment: item;
}

.article-content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 32px 0;
    box-shadow: var(--shadow-lg);
}

.article-content figure {
    margin: 32px 0;
}

.article-content figure img {
    margin: 0 0 12px 0;
}

.article-content figcaption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
    padding: 8px 16px;
}

.article-content blockquote {
    background: var(--light-bg);
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 24px 28px;
    margin: 32px 0;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-secondary);
}

.article-content blockquote p {
    margin-bottom: 0;
}

.article-content blockquote cite {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-style: normal;
    color: var(--text-light);
}

.article-content pre,
.article-content code {
    font-family: 'Fira Code', 'Consolas', monospace;
    background: var(--dark-bg);
    color: #e0e0e0;
    border-radius: var(--radius-sm);
}

.article-content code {
    padding: 2px 8px;
    font-size: 0.9em;
}

.article-content pre {
    padding: 20px 24px;
    margin: 24px 0;
    overflow-x: auto;
}

.article-content pre code {
    padding: 0;
    background: none;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 0.95rem;
}

.article-content table th,
.article-content table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.article-content table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--text-primary);
}

.article-content table tr:hover td {
    background: rgba(0, 102, 255, 0.03);
}

.article-content hr {
    border: none;
    height: 2px;
    background: var(--border-color);
    margin: 40px 0;
}

.wp-block-image {
    margin: 32px 0;
}

.wp-block-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.wp-block-image figcaption {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin: 0 24px 16px 0;
}

.alignright {
    float: right;
    margin: 0 0 16px 24px;
}

.table-of-contents {
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 40px;
}

.table-of-contents h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
}

.table-of-contents h3 i {
    color: var(--primary-blue);
}

.table-of-contents ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.table-of-contents a {
    color: var(--text-secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.table-of-contents a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-gradient);
}

.table-of-contents a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}


.article-image {
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    background: var(--light-bg);
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.article-image.wide {
    margin-left: -40px;
    margin-right: -40px;
}

.feature-box {
    display: flex;
    gap: 24px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 102, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 32px 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-content ul {
    list-style: none;
}

.feature-content li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 15px;
}

.feature-content li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 12px;
}

blockquote {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin: 32px 0;
    position: relative;
}

blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 24px;
    color: var(--primary-blue);
    opacity: 0.3;
}

blockquote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.7;
}

blockquote cite {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.device-card {
    background: var(--light-bg);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.device-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.device-card i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.device-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.device-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.cta-box {
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}

.tags-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag {
    padding: 6px 16px;
    background: var(--light-bg);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.tag:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.author-box {
    display: flex;
    gap: 24px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 40px 0;
    align-items: flex-start;
}

.author-box-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.15);
}

.author-box-content h4,
.author-box-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.author-box-role {
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 12px;
}

.author-box-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.author-social a:hover {
    background: var(--primary-gradient);
    color: var(--white);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.nav-prev,
.nav-next {
    padding: 24px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 13px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.nav-label i {
    color: #6b7280;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.4;
    display: block;
}

.nav-prev:hover .nav-title,
.nav-next:hover .nav-title {
    color: var(--primary-blue);
}

.article-sidebar-right {
    position: relative;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-post {
    display: flex;
    gap: 14px;
    transition: transform var(--transition-fast);
}

.related-post:hover {
    transform: translateX(4px);
}

.related-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.related-content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}

.related-post:hover .related-content h4 {
    color: var(--primary-blue);
}

.related-content span {
    font-size: 12px;
    color: #4b5563;
}

.newsletter-widget {
    background: var(--primary-gradient);
    color: var(--white);
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget .widget-title::after {
    background: var(--white);
}

.newsletter-widget p {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.sidebar-newsletter {
    display: flex;
    gap: 8px;
}

.sidebar-newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.sidebar-newsletter button {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar-newsletter button:hover {
    transform: scale(1.05);
}

.category-list {
    list-style: none;
}

.category-list li {
    border-bottom: 1px solid var(--border-color);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.category-list a:hover {
    color: var(--primary-blue);
}

.category-list i {
    width: 20px;
    color: var(--primary-blue);
}

.category-list span {
    margin-left: auto;
    background: var(--light-bg);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .article-container {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar-left {
        display: none;
    }
    
    .article-sidebar-right {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .sidebar-widget {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 28px 16px 24px;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .article-header::before,
    .article-header::after {
        display: none;
    }
    
    .article-header-container {
        text-align: center;
    }
    
    .breadcrumb {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .breadcrumb a {
        color: #6b7280;
    }
    
    .breadcrumb a:hover {
        color: #0066FF;
    }
    
    .breadcrumb i {
        color: #9ca3af;
    }
    
    .breadcrumb span {
        color: #374151;
    }
    
    .breadcrumb .breadcrumb-current {
        display: none;
    }
    
    .breadcrumb i:last-of-type {
        display: none;
    }
    
    .article-header .category-badge {
        padding: 6px 14px;
        font-size: 0.7rem;
        margin-bottom: 12px;
    }
    
    .article-title {
        font-size: 1.7rem;
        color: #1f2937;
        text-shadow: none;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .article-meta-inline {
        justify-content: center;
        gap: 10px;
        padding-top: 0;
        border-top: none;
        font-size: 14px;
    }
    
    .meta-author {
        color: #6b7280;
    }
    
    .meta-author a {
        color: #374151;
    }
    
    .meta-separator {
        width: 3px;
        height: 3px;
        background: #9ca3af;
    }
    
    .meta-date,
    .meta-reading {
        color: #6b7280;
    }
    
    .meta-date::before {
        display: none;
    }
    
    .article-featured-image {
        padding: 20px 16px 0;
    }
    
    .article-container {
        padding: 24px 16px;
    }
    
    .article-intro {
        margin-bottom: 20px;
    }
    
    .article-intro:empty {
        display: none;
        margin: 0;
        padding: 0;
        height: 0;
    }
    
    .lead {
        font-size: 1.1rem;
        padding-left: 16px;
    }
    
    .article-content h1 {
        font-size: 1.5rem;
        margin: 32px 0 16px 0;
    }
    
    .article-content h2 {
        font-size: 1.35rem;
        margin: 28px 0 14px 0;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
        margin: 24px 0 12px 0;
    }
    
    .article-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .article-content ul li,
    .article-content ol li {
        padding: 8px 0 8px 24px;
    }
    
    .article-content ol li::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .article-content img {
        margin: 24px 0;
    }
    
    .article-content blockquote {
        padding: 16px 20px;
        margin: 24px 0;
        font-size: 1rem;
    }
    
    .table-of-contents ul {
        grid-template-columns: 1fr;
    }
    
    .devices-grid {
        grid-template-columns: 1fr;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .author-box-avatar {
        margin-bottom: 8px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .post-navigation {
        grid-template-columns: 1fr;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .nav-next .nav-label {
        justify-content: flex-start;
    }
    
    .article-sidebar-right {
        grid-template-columns: 1fr;
    }
    
    .article-image.wide {
        margin-left: -16px;
        margin-right: -16px;
    }
}
