/* Blog Specific Styles */
.blog-content {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.8;
}

.blog-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.blog-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.blog-content ul, 
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.blog-content ol li {
    list-style-type: decimal;
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid #ffd12e;
    padding-left: 1rem;
    font-style: italic;
    color: #555;
    margin: 1.5rem 0;
}

.blog-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.blog-content code {
    font-family: monospace;
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.blog-content a {
    color: #0066cc;
    text-decoration: underline;
    text-decoration-color: #ffd12e;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    transition: all 0.2s;
}

.blog-content a:hover {
    color: #004080;
    text-decoration-color: #ffd12e;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.blog-content table th,
.blog-content table td {
    border: 1px solid #ddd;
    padding: 0.75rem;
}

.blog-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.blog-content table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blog-content hr {
    border: 0;
    border-top: 2px solid #f0f0f0;
    margin: 2rem 0;
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.category-tag {
    background-color: #f5f5f5;
    color: #555;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.category-tag:hover {
    background-color: #ffd12e;
    color: #000;
}

.blog-pagination .active {
    background-color: #ffd12e;
    color: #000;
    border-color: #000;
}

/* Blog Responsive Styles */
@media (max-width: 768px) {
    .blog-content h1 {
        font-size: 2rem;
    }
    
    .blog-content h2 {
        font-size: 1.75rem;
    }
    
    .blog-content h3 {
        font-size: 1.35rem;
    }
    
    .blog-content p {
        font-size: 1rem;
    }
}
