/* Blog Post Styles */

:root {
    --primary-color: #0d6efd; --secondary-color: #6c757d; --text-color: #333; --text-light: #666; --border-color: #dee2e6; --light-bg: #f8f9fa; --shadow: 0 2px 10px rgba(0, 0, 0, 0.1); --border-radius: 8px; --transition: all 0.3s ease; }

* {
    margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'PT Sans', 'Montserrat', sans-serif; color: var(--text-color); background: var(--light-bg); line-height: 1.8; }

.container {
    max-width: 800px; }

/* Header */
.blog-header {
    box-shadow: var(--shadow); }

.header-content {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

.back-link {
    text-decoration: none; transition: var(--transition); font-weight: 500; }

.back-link:hover {
    opacity: 0.8; transform: translateX(-3px); }

.blog-title {
    font-size: 1.5rem; }

/* Blog Post */
.blog-post {
    border-radius: var(--border-radius); overflow: hidden; }

/* Post Header */
.post-header {
    border-bottom: 2px solid var(--border-color); }

.post-hero-image {
    margin-bottom: 2rem; }

.hero-image-placeholder {
    width: 100%; }

.image-caption {
    text-align: center; font-style: italic; margin-top: 0.5rem; }

.post-intro {
    border-left: 4px solid var(--primary-color); }

.post-content h2 {
    padding-bottom: 0.5rem; }

.post-content ul,
.post-content ol {
    padding-left: 2rem; }

.post-content pre {
    overflow-x: auto; }

.post-content a:hover {
    border-bottom-color: var(--primary-color); }

/* Post Tags */
.post-tags {
    padding-top: 2rem; border-top: 2px solid var(--border-color); }

.share-btn {
    height: 45px; }

.related-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* Responsive */
@media (max-width: 768px) {

    .post-meta {
        flex-direction: column; }
}

@media (max-width: 480px) {
}


/* Focus styles for accessibility - Auto-added */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #0066cc; outline-offset: 2px; }
