        .blog-post {
            background: rgb(45, 45, 45);
            margin-bottom: 30px;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .article-title {
            color: #C8B568;
            margin-bottom: 15px;
            font-size: 1.8em;
        }
        
        .article-meta {
            color: #C8B568;
            margin-bottom: 20px;
            font-size: 0.9em;
        }
        
        .article-date {
            margin-right: 20px;
        }
        
        .article-image {
            margin: 20px 0;
        }
        
        .article-image img {
            width: 20%;
            height: auto;
            border-radius: 4px;
        }
        
        .article-summary {
            font-style: italic;
            color: #C8B568;
            margin-bottom: 20px;
            padding: 15px;
            background-color: #222222;
            border-left: 4px solid #007bff;
        }
        
        .article-content {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .article-tags {
            margin-top: 20px;
        }
        
        .tag {
            display: inline-block;
            background-color: #C8B568;
            color: rgb(0, 0, 0);
            padding: 4px 8px;
            margin-right: 8px;
            border-radius: 12px;
            font-size: 0.8em;
        }
        
        .back-link {
            display: inline-block;
            margin-bottom: 20px;
            color: gold;
            text-decoration: none;
        }
        
        .back-link:hover {
            text-decoration: underline;
        }
        
        .article-list {
            background: rgb(45, 45, 45);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .article-titles {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .article-title-item {
            border-bottom: 1px solid #eee;
            padding: 15px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .article-title-item:last-child {
            border-bottom: none;
        }
        
        .article-title-link {
            color: #C8B568;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .article-title-link:hover {
            color: goldenrod;
            text-decoration: underline;
        }
        
        .article-date-small {
            color: #C8B568;
            font-size: 0.9em;
            margin-left: 10px;
        }
        
        .no-articles {
            text-align: center;
            color: #C8B568;
            font-style: italic;
            padding: 40px;
        }
        
        @media (max-width: 600px) {
            body {
                padding: 10px;
            }
            
            .blog-post {
                padding: 20px;
            }
        }