.article-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #ddd;
        }

        .article-content h2,
        .article-content h3 {
            color: var(--primary-gold);
            font-family: 'Playfair Display', serif;
            margin-top: 30px;
            margin-bottom: 20px;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .article-content blockquote {
            border-left: 4px solid var(--primary-gold);
            padding-left: 20px;
            margin: 30px 0;
            font-style: italic;
            color: #fff;
            background: rgba(255, 255, 255, 0.02);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }

        .sidebar-widget {
            background-color: #161210;
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
        }

        .sidebar-widget-title {
            color: var(--primary-gold);
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .recent-post-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }

        .recent-post-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .recent-post-img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }

        .recent-post-title {
            font-size: 0.95rem;
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s;
        }

        .recent-post-title:hover {
            color: var(--primary-gold);
        }

        .recent-post-date {
            font-size: 0.8rem;
            color: #888;
            margin-top: 5px;
        }

        .category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .category-list li {
            margin-bottom: 12px;
        }

        .category-list li:last-child {
            margin-bottom: 0;
        }

        .category-list a {
            color: #ccc;
            text-decoration: none;
            display: flex;
            justify-content: space-between;
            transition: color 0.2s;
        }

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

        .category-list span {
            background: rgba(255, 255, 255, 0.05);
            padding: 2px 8px;
            border-radius: 12px;
            font-size: 0.8rem;
        }