/* Post Page Specific Styles */

.post-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-meta {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-meta time {
    color: var(--primary-pink);
}

.post-featured-image {
    max-width: 300px;
    margin: 0 auto 50px;
    border-radius: 8px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.post-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.post-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-body p {
    margin-bottom: 25px;
}

.post-body ul,
.post-body ol {
    margin-bottom: 30px;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.post-body li strong {
    color: var(--primary-pink);
    font-weight: 600;
}

.post-body blockquote {
    background-color: var(--soft-pink);
    border-left: 4px solid var(--primary-pink);
    padding: 30px 40px;
    margin: 40px 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-dark);
}

.post-body blockquote p {
    margin-bottom: 0;
}

.post-signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-pink);
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-pink);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--dark-pink);
}

/* Responsive adjustments for post pages */
@media (max-width: 768px) {
    .post-page {
        padding: 40px 20px;
    }

    .post-page-title {
        font-size: 2rem;
    }

    .post-intro {
        font-size: 1.1rem;
    }

    .post-body {
        font-size: 1rem;
    }

    .post-body h2 {
        font-size: 1.6rem;
        margin-top: 35px;
    }

    .post-body blockquote {
        padding: 20px 25px;
        font-size: 1.1rem;
        margin: 30px 0;
    }
}
