@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --primary-bg: #0a0e1a;
    --secondary-bg: #1a1f2e;
    --accent-bg: #252b3d;
    --primary-text: #ffffff;
    --secondary-text: #b8c5d6;
    --accent-color: #00d4ff;
    --accent-secondary: #7c3aed;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --gradient-dark: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
    --shadow-light: 0 4px 6px rgba(0, 212, 255, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 212, 255, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background: var(--primary-bg);
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

header {
    background: rgba(26, 31, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--primary-text);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav h1 {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover::after {
    width: 80%;
}

main {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

h1,
h2 {
    margin-bottom: 1rem;
}

h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 0 0.5rem;
    }
    
    nav ul li a {
        font-size: 0.9rem;
    }

    main {
        margin-top: 140px;
        padding: 1rem;
    }
    
    .blog-post-main {
        margin-top: 140px;
        padding: 1rem;
    }
}

/*
 Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-top: -80px;
    padding-top: 8rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    border: none;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* CV Download Button */
.btn-cv {
    background: var(--gradient-accent);
    color: var(--primary-text);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn-cv::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-cv:hover::before {
    left: 100%;
}

.btn-cv:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-cv-contact {
    background: var(--secondary-bg);
    color: var(--accent-color);
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid var(--accent-color);
    width: 100%;
    justify-content: center;
    box-shadow: var(--shadow-light);
}

.btn-cv-contact:hover {
    background: var(--accent-color);
    color: var(--primary-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cv-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

.contact-item.cv-download {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Experience Timeline */
.experience-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.experience-item {
    display: flex;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.experience-date {
    min-width: 150px;
    font-weight: bold;
    color: #3498db;
    margin-right: 2rem;
}

.experience-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.experience-content h4 {
    color: #7f8c8d;
    margin-bottom: 1rem;
    font-weight: normal;
}

.experience-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.experience-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.skill-category h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #3498db;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: #ecf0f1;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-form h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.contact-form .btn-primary {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .experience-item {
        flex-direction: column;
    }

    .experience-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-cv {
        width: 200px;
        text-align: center;
        justify-content: center;
    }
    
    .contact-item.cv-download {
        grid-column: 1;
    }
}

/* Certifications Section */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.certification-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cert-badge {
    flex-shrink: 0;
}

.cert-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
}

.cert-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cert-issuer {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cert-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cert-description {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
}

.cert-verify {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid #3498db;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cert-verify:hover {
    background: #3498db;
    color: white;
}

/* Blog Section */
.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-intro p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.blog-posts-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(0, 212, 255, 0.3);
}

.blog-post-card:hover::before {
    opacity: 1;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.blog-date {
    color: var(--secondary-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-category {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.blog-post-card h3 {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.blog-post-card h3 a {
    color: var(--primary-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1.4rem;
}

.blog-post-card h3 a:hover {
    color: var(--accent-color);
}

.blog-post-card p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    position: relative;
    z-index: 1;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.blog-tags span {
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.blog-tags span:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-2px);
}

/* Responsive Updates for New Sections */
@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .certification-card {
        flex-direction: column;
        text-align: center;
    }

    .cert-badge {
        align-self: center;
    }

    .blog-posts-preview {
        grid-template-columns: 1fr;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Blog Page Styles */
.blog-main {
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
}

.blog-content {
    margin-top: 2rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 4rem 0;
    background: var(--gradient-accent);
    color: var(--primary-text);
    border-radius: 16px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1352&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
    border: none;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--secondary-bg);
    border: 2px solid rgba(0, 212, 255, 0.2);
    color: var(--secondary-text);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: none;
    color: var(--primary-text);
    position: relative;
    z-index: 1;
}

.blog-post-card h2 a {
    color: var(--primary-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    background: linear-gradient(to right, var(--accent-color), var(--accent-color));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 2px;
}

.blog-post-card h2 a:hover {
    color: var(--accent-color);
    background-size: 100% 2px;
}

.blog-read-time {
    margin-top: 1rem;
    color: var(--secondary-text);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-time::before {
    content: '⏱️';
    font-size: 0.9rem;
}

/* Navigation active state */
nav a.active {
    color: #3498db !important;
    font-weight: bold;
}

nav h1 a {
    color: white;
    text-decoration: none;
}

nav h1 a:hover {
    color: #3498db;
}

/* Blog responsive design */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-header p {
        font-size: 1rem;
    }

    .blog-posts-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Individual Blog Post Styles - Complete Override */
body:has(.blog-post-main) {
    margin: 0;
    padding: 0;
}

.blog-post-main {
    margin-top: 80px;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.blog-post {
    max-width: 900px;
    margin: 2rem auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-post-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.blog-post-header .blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.blog-post-header .blog-date,
.blog-post-header .blog-category,
.blog-post-header .blog-read-time {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.blog-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    border: none;
}

.blog-post-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.blog-post-content {
    padding: 3rem;
    line-height: 1.8;
    max-width: none;
    width: 100%;
    box-sizing: border-box;
}

.blog-post-content h2 {
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.blog-post-content h2:first-of-type {
    margin-top: 0;
}

.blog-post-content h3 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    border: none;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #444;
}

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

.blog-post-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

.blog-post-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.code-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.code-block code {
    color: #2c3e50;
}

.blog-post-footer {
    padding: 2rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.blog-post-footer .blog-tags {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

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

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share span {
    color: #7f8c8d;
    font-weight: 500;
}

.share-link {
    color: #3498db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #3498db;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #3498db;
    color: white;
}

/* Blog post responsive design */
@media (max-width: 768px) {
    .blog-post-main {
        margin-top: 120px;
        padding: 0;
    }
    
    .blog-post {
        margin: 1rem;
        border-radius: 8px;
    }

    .blog-post-header {
        padding: 2rem 1.5rem;
    }

    .blog-post-header h1 {
        font-size: 1.8rem;
    }

    .blog-post-header .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-post-content {
        padding: 2rem 1.5rem;
    }

    .blog-post-content h2 {
        font-size: 1.4rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.2rem;
    }

    .blog-navigation {
        flex-direction: column;
        text-align: center;
    }

    .blog-share {
        justify-content: center;
    }
}