/* POST.CSS - Individual blog post styles */

.post-wrapper {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.post-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.post-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    margin-bottom: 24px;
}

.post-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.post-lead-image {
    margin-bottom: 40px;
    max-width: 100%;
    overflow: hidden;
}

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

.post-lead-caption {
    font-size: 0.8rem;
    color: #999;
    margin-top: 8px;
}

.post-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 28px;
}

.post-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 48px 0 16px;
}

.post-body h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin: 36px 0 12px;
}

.post-body a {
    color: #0066cc;
    text-decoration: none;
}

.post-body a:hover {
    text-decoration: underline;
}

.post-body blockquote {
    border-left: 3px solid #000;
    margin: 40px 0;
    padding: 4px 0 4px 24px;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
}

.post-body img {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px 0;
}

.post-body .image-caption {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: -30px;
    margin-bottom: 40px;
}

.back-link {
    margin-bottom: 40px;
}

.back-link a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
}

.back-link a:hover {
    color: #000;
}

.post-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.tag {
    font-size: 0.8rem;
    color: #555;
    background: #f0f0f0;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
}

.tag:hover {
    background: #e0e0e0;
}
