/* /assets/css/post.css - Yenilənmiş və Təmizlənmiş Versiya */

/* Əsas Səhifə Strukturu */
.content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1240px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Əsas Məqalə Hissəsi */
.single-post {
    flex: 1 1 70%;
    min-width: 0; /* Flexbox-da elementin kiçilməsinə icazə verir */
}

/* Məqalə Başlığı */
.post-header .meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
}

.post-header .post-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #1c1e21;
    font-weight: 700;
}

/* Məqalə Şəkli */
.post-thumbnail {
    margin-bottom: 25px;
}

.post-thumbnail img,
.post-thumbnail picture {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Məqalə Məzmunu */
.post-content {
    font-size: 18px;
    line-height: 1.8;
    color: #222;
}

.post-content h2,
.post-content h3 {
    margin-top: 30px;
    color: #111;
    line-height: 1.4;
}

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

.post-content a {
    color: #0056b3;
    text-decoration: underline;
}

.post-content a:hover {
    color: #e60000;
}

/* Məqalə daxilindəki şəkillər (Mobil uyğunluq) */
.post-content img {
     max-width: 100%;
     height: auto;
     display: block;
     margin: 15px auto;
     border-radius: 6px;
}

/* Sidebar */
.sidebar {
    flex: 1 1 30%;
    min-width: 280px; /* Kiçik ekranlarda sıxışmasının qarşısını alır */
}

/* Sosial Paylaşım Düymələri */
.social-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-share span {
    font-weight: 600;
    color: #333;
}

.social-share a {
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    color: #fff;
    transition: opacity 0.2s ease;
}

.social-share a.facebook { background: #3b5998; }
.social-share a.twitter { background: #1da1f2; }
.social-share a.telegram { background: #0088cc; }
.social-share a.whatsapp { background: #25d366; }
.social-share a:hover { opacity: .85; }

/* Etiketlər (Tags) */
.post-tags {
    margin-top: 20px;
    font-size: 14px;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    margin-right: 8px;
    text-decoration: underline;
    color: #555;
}

/* Adaptiv Dizayn (Mobil) */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .post-header .post-title {
        font-size: 1.8rem;
    }
}