/* blog-post.css */
.post-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 5%;
}

.post-cover {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #111;
    border-radius: 20px;
    margin-bottom: 40px;
    object-fit: cover;
}

.post-header-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: none;
    letter-spacing: -0.02em;
}

.post-meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.post-meta-group {
    display: flex;
    gap: 40px;
}

.post-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.post-meta-label {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 600;
}

.post-meta-value {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
}

.post-share {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.post-share-icons {
    display: flex;
    gap: 15px;
}

.post-share-icons a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 1.2rem;
}

.post-share-icons a:hover {
    opacity: 1;
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #d1d5db;
}

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

.post-content h2 {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.post-content h3 {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 15px;
}

.post-content ul, .post-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content strong {
    color: #ffffff;
    font-weight: 700;
}

.post-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #ffffff;
}
