/* Blog Post Styles */
.post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 1rem 0;
}

.reading-time {
    color: #666;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.featured-image {
    margin: 2rem 0;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-caption {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.image-gallery figure {
    margin: 0;
}

.image-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.image-gallery figcaption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

blockquote {
    border-left: 4px solid var(--secondary-color);
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: var(--light-gray);
    font-style: italic;
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.pro-tip {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.pro-tip h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

.share-section {
    margin: 3rem 0;
    text-align: center;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.share-button:hover {
    opacity: 0.9;
}

.facebook {
    background: #3b5998;
}

.twitter {
    background: #1da1f2;
}

.pinterest {
    background: #bd081c;
}

.related-posts {
    margin: 4rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.related-card {
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-card h4 {
    margin: 0;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-header h1 {
        font-size: 2rem;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 1.8rem;
    }

    .social-share {
        flex-direction: column;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }
} 