/*
Theme Name: VPS.TC Blog
Theme URI: https://www.vps.tc/blog
Author: VPS.TC
Author URI: https://www.vps.tc
Description: VPS.TC ana sitesiyle tam uyumlu premium WordPress blog teması. Glassmorphism tasarım, dark mode, responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vpstc-blog
Tags: blog, dark-mode, responsive-layout, custom-menu, featured-images, translation-ready

VPS.TC Premium Blog Theme - 2026 Standartlarında Bulut Sunucu Blog Platformu
*/

/* ==========================================================================
   CRITICAL GLOBAL RESETS - Mobile First
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
video,
iframe,
embed,
object {
    max-width: 100%;
    height: auto;
    display: block;
}

table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

pre {
    max-width: 100%;
    overflow-x: auto;
}

/* ==========================================================================
   Ana Site CSS'i dahil ediliyor - Tutarlılık için
   ========================================================================== */

/* Blog-Specific Overrides */
.blog-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Blog Post Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark .blog-card {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.dark .blog-card:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}

/* Blog Card Image */
.blog-card-image {
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

/* Blog Card Content */
.blog-card-content {
    padding: 1.5rem;
}

/* Category Badge */
.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Blog Post Title */
.blog-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0.75rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .blog-card-title {
    color: #f9fafb;
}

.blog-card-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: #3b82f6;
}

/* Blog Card Meta */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

.dark .blog-card-meta {
    color: #9ca3af;
}

/* Blog Excerpt */
.blog-card-excerpt {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .blog-card-excerpt {
    color: #9ca3af;
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #581c87 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
}

/* Featured Post */
.featured-post {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 21/9;
}

.featured-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.featured-post-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .sidebar-widget {
    background: rgba(31, 41, 55, 0.9);
    border-color: rgba(255, 255, 255, 0.05);
}

.sidebar-widget-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #3b82f6, #8b5cf6) 1;
}

.dark .sidebar-widget-title {
    color: #f9fafb;
}

/* Search Form */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    padding-right: 3rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    transition: all 0.2s;
}

.dark .search-form input {
    background: #374151;
    border-color: #4b5563;
    color: white;
}

.search-form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-form button {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
}

/* Categories List */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .categories-list li {
    border-color: rgba(255, 255, 255, 0.05);
}

.categories-list li:last-child {
    border-bottom: none;
}

.categories-list a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.2s;
}

.dark .categories-list a {
    color: #9ca3af;
}

.categories-list a:hover {
    color: #3b82f6;
}

.category-count {
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
}

.dark .category-count {
    background: #4b5563;
    color: #d1d5db;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dark .recent-post-item {
    border-color: rgba(255, 255, 255, 0.05);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-thumb {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dark .recent-post-title {
    color: #f9fafb;
}

.recent-post-title a {
    text-decoration: none;
    color: inherit;
}

.recent-post-title a:hover {
    color: #3b82f6;
}

.recent-post-date {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Single Post Content */
.single-post-content {
    width: 100%;
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .single-post-content {
        font-size: 1.125rem;
        line-height: 1.8;
    }
}

.dark .single-post-content {
    color: #d1d5db;
}

.single-post-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin: 1.5rem 0 0.75rem;
}

@media (min-width: 768px) {
    .single-post-content h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem;
    }
}

.dark .single-post-content h2 {
    color: #f9fafb;
}

.single-post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 1.25rem 0 0.5rem;
}

@media (min-width: 768px) {
    .single-post-content h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.75rem;
    }
}

.dark .single-post-content h3 {
    color: #f3f4f6;
}

.single-post-content p {
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .single-post-content p {
        margin-bottom: 1.5rem;
    }
}

.single-post-content a {
    color: #3b82f6;
    text-decoration: underline;
}

.single-post-content a:hover {
    color: #1e40af;
}

.single-post-content img {
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    max-width: 100%;
    height: auto;
}

.single-post-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6b7280;
}

.dark .single-post-content blockquote {
    color: #9ca3af;
}

.single-post-content code {
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.875em;
}

.dark .single-post-content code {
    background: #374151;
}

.single-post-content pre {
    position: relative;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #f9fafb;
    padding: 1.5rem;
    padding-top: 2.5rem;
    border-radius: 0.75rem;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-post-content pre code {
    background: transparent;
    padding: 0;
    color: #e2e8f0;
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Copy Button */
.code-copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s;
    opacity: 0;
    z-index: 10;
}

.single-post-content pre:hover .code-copy-btn {
    opacity: 1;
}

.code-copy-btn:hover {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
    color: #60a5fa;
}

.code-copy-btn.copied {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
    color: #4ade80;
}

.code-copy-btn i {
    font-size: 0.875rem;
}

/* Tables in Post Content */
.single-post-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    font-size: 0.9375rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

/* Header - works with or without thead */
.single-post-content table thead,
.single-post-content table tbody tr:first-child:has(th) {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* Also target tr with th in case thead doesn't exist */
.single-post-content table tr:has(th:first-child):first-child {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.single-post-content table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border-bottom: none;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.single-post-content table th:first-child {
    border-top-left-radius: 0.75rem;
}

.single-post-content table th:last-child {
    border-top-right-radius: 0.75rem;
}

.single-post-content table tbody {
    background: white;
}

.dark .single-post-content table tbody {
    background: #1f2937;
}

.single-post-content table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    vertical-align: top;
}

.dark .single-post-content table td {
    border-color: #374151;
    color: #d1d5db;
}

/* Zebra stripes */
.single-post-content table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.dark .single-post-content table tbody tr:nth-child(even) {
    background: #111827;
}

/* Hover effect */
.single-post-content table tbody tr {
    transition: background-color 0.2s;
}

.single-post-content table tbody tr:hover {
    background: #eff6ff;
}

.dark .single-post-content table tbody tr:hover {
    background: #1e3a8a;
}

/* Last row rounded corners */
.single-post-content table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 0.75rem;
}

.single-post-content table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 0.75rem;
}

.single-post-content table tbody tr:last-child td {
    border-bottom: none;
}

/* Code in table cells */
.single-post-content table td code {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8125rem;
    font-family: 'Fira Code', 'Consolas', monospace;
}

.dark .single-post-content table td code {
    background: #312e81;
    color: #a5b4fc;
}

/* Responsive table */
@media (max-width: 768px) {
    .single-post-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .single-post-content table th,
    .single-post-content table td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
}

/* Author Box */
.author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 1rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .author-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.5rem;
        padding: 2rem;
        margin: 3rem 0;
    }
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.dark .author-name {
    color: #f9fafb;
}

.author-bio {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.2s;
}

.blog-pagination a {
    background: #f3f4f6;
    color: #374151;
}

.dark .blog-pagination a {
    background: #374151;
    color: #d1d5db;
}

.blog-pagination a:hover {
    background: #3b82f6;
    color: white;
}

.blog-pagination .current {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 0.8125rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s;
}

.dark .tag-cloud a {
    background: #374151;
    color: #9ca3af;
}

.tag-cloud a:hover {
    background: #3b82f6;
    color: white;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-box p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.newsletter-box input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    margin-bottom: 0.75rem;
}

.newsletter-box button {
    width: 100%;
    padding: 0.75rem 1rem;
    background: white;
    color: #3b82f6;
    font-weight: 700;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   HIDE EMPTY WORDPRESS WIDGETS
   ========================================================================== */

/* Hide empty widget blocks */
.widget_block .wp-block-group:empty,
.widget_block .wp-block-group__inner-container:empty,
.widget_block:has(.wp-block-group__inner-container:empty) {
    display: none !important;
}

/* Alternative: Hide widgets with only empty inner containers */
.sidebar-widget.widget_block:has(> .wp-block-group > .wp-block-group__inner-container:empty) {
    display: none !important;
}

/* Generic empty widget hiding */
.widget:empty,
.sidebar-widget:empty {
    display: none !important;
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

/* Line clamp utilities */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   RESPONSIVE DESIGN - Full Mobile-First Approach
   ========================================================================== */

/* Extra Small Devices (phones, 576px and down) */
@media (max-width: 576px) {
    .blog-hero {
        padding: 1.5rem 0;
    }

    .blog-hero h1 {
        font-size: 1.5rem !important;
    }

    .blog-hero p {
        font-size: 0.875rem;
    }

    .featured-post {
        aspect-ratio: 4/3;
        border-radius: 0.75rem;
    }

    .featured-post-title {
        font-size: 1rem;
    }

    .featured-post-overlay {
        padding: 1rem;
    }

    .blog-card-content {
        padding: 1rem;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }

    .blog-card-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .sidebar-widget {
        padding: 1rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .author-avatar {
        width: 4rem;
        height: 4rem;
    }

    .single-post-content {
        font-size: 1rem;
    }

    .single-post-content h2 {
        font-size: 1.25rem;
    }

    .single-post-content h3 {
        font-size: 1.125rem;
    }

    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* Footer responsive */
    .footer-content .grid {
        gap: 1.5rem !important;
    }

    .footer-heading {
        font-size: 0.875rem;
    }

    /* Pagination */
    .blog-pagination {
        gap: 0.25rem;
    }

    .blog-pagination a,
    .blog-pagination span {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }

    /* Newsletter box */
    .newsletter-box {
        padding: 1.5rem;
    }
}

/* Small Devices (phones landscape, tablets portrait, 768px and down) */
@media (max-width: 768px) {
    .blog-hero {
        padding: 2rem 0;
    }

    .blog-hero h1 {
        font-size: 1.75rem !important;
    }

    .featured-post {
        aspect-ratio: 16/9;
    }

    .featured-post-title {
        font-size: 1.25rem;
    }

    .featured-post-overlay {
        padding: 1.25rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .single-post-content {
        font-size: 1rem;
    }

    /* Hide desktop navigation, show mobile */
    .premium-header nav {
        display: none;
    }

    /* Mobile menu button visible */
    #mobile-menu-toggle {
        display: block !important;
    }

    /* Topbar adjustments */
    .premium-topbar .container-fluid>div {
        flex-wrap: wrap;
    }

    /* Footer grid */
    .premium-footer .grid {
        grid-template-columns: 1fr !important;
    }

    /* Comment form responsive */
    .comment-form .grid {
        grid-template-columns: 1fr !important;
    }

    /* Recent post items */
    .recent-post-thumb {
        width: 3rem;
        height: 3rem;
    }

    .recent-post-title {
        font-size: 0.8125rem;
    }
}

/* Medium Devices (tablets, 992px and down) */
@media (max-width: 992px) {
    .featured-post-title {
        font-size: 1.5rem;
    }

    .blog-card-title {
        font-size: 1.125rem;
    }

    /* Two column grid on tablets */
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Large Devices (small laptops, 1200px and down) */
@media (max-width: 1200px) {
    .container-fluid {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {

    /* Remove hover effects on touch devices */
    .blog-card:hover {
        transform: none;
    }

    .mega-menu-item:hover {
        transform: none;
    }

    /* Larger touch targets */
    .topbar-dropdown-trigger {
        padding: 0.5rem 0.75rem;
    }

    .topbar-dropdown-item {
        padding: 0.75rem 1rem;
    }

    .blog-pagination a,
    .blog-pagination span {
        min-width: 2.75rem;
        min-height: 2.75rem;
    }
}

/* Print Styles */
@media print {

    .premium-topbar,
    .premium-header,
    .premium-footer,
    .sidebar-widget,
    .newsletter-box,
    .blog-pagination,
    #mobile-menu {
        display: none !important;
    }

    .single-post-content {
        max-width: 100%;
    }

    body {
        background: white !important;
        color: black !important;
    }
}

/* Dark Mode - ensure all responsive elements work */
@media (prefers-color-scheme: dark) {

    .dark .blog-card,
    .dark .sidebar-widget {
        background: rgba(31, 41, 55, 0.95);
    }
}
.single-post-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.single-post-content ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.single-post-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #3b82f6;
    font-size: 1.5rem;
    line-height: 1;
}
.single-post-content ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 1.25rem 0;
}

.single-post-content ol li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.single-post-content ol li::marker {
    color: #8b5cf6;
    font-weight: 600;
}
.dark .single-post-content ul li::before {
    color: #60a5fa;
}

.dark .single-post-content ol li::marker {
    color: #a78bfa;
}
/* FORCE LIST STYLES – WordPress + Tailwind FIX */
.single-post-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.25rem 0 !important;
}

.single-post-content ul > li {
    position: relative !important;
    padding-left: 1.75rem !important;
    margin-bottom: 0.5rem !important;
}

.single-post-content ul > li::before {
    content: "•" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.15rem !important;
    color: #3b82f6 !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
}
