.blog-post {
    padding: 2rem 0;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
}

.tech-tag {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.featured-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto 2rem;
    display: block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.post-content section {
    margin-bottom: 3rem;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.post-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-size: 1.1rem;
}

.post-content ul {
    list-style-type: none;
    padding-left: 0;
}

.post-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.post-content ul li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content p {
        font-size: 1rem;
    }

    .featured-image {
        max-height: 300px;
        aspect-ratio: auto;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .tech-tag {
        background: var(--color-primary-dark);
    }

    .post-content ul li::before {
        color: var(--color-primary-dark);
    }
} 