/* Blog Detay Sayfasına Özel CSS'ler */
.post-meta-top {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.post-meta-top .pm-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.post-meta-top svg {
    width: 16px;
    height: 16px;
    color: var(--copper);
}

.post-main {
    background: white;
    border: 1px solid var(--cream-dark);
    padding: 40px;
}

.post-featured-image {
    margin-bottom: 30px;
    overflow: hidden;
}
.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark-muted);
}
.post-content h2, .post-content h3, .post-content h4 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-family: var(--font-display);
}
.post-content p {
    margin-bottom: 20px;
}
.post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}

.post-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--cream-dark);
}
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}
.post-share span {
    font-weight: 700;
    color: var(--text-dark);
}
.post-share a {
    color: var(--copper);
    text-decoration: none;
    transition: color 0.3s;
}
.post-share a:hover {
    color: var(--copper-light);
}

@media (max-width: 768px) {
    .post-main {
        padding: 20px;
    }
    .post-share {
        flex-wrap: wrap;
    }
}
