body {
    background: url('../img/core-img/body-blog.png') repeat;
    background-color: #321313;
}

#wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: #fcdabf;
    border-left: 3px solid #f4991a;
    border-right: 3px solid #f4991a;
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
}

#content {
    padding: 40px 60px;
}

.exit-blog {
    display: inline-block;
    margin: 20px auto 20px 0px;
    padding: 10px 20px;
    background: #b86b31;
    color: #fff;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.2s ease;
}

.exit-blog:hover {
    background: #d48a45;
    transform: translateY(-2px);
}


    .mumtaz-title {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    font-weight: 600;
    color: #b86b31;
    text-shadow: 0 4px 14px rgba(0,0,0,0.5);
    text-align: center;
    border-bottom: 3px solid #f49910;
    padding-bottom: 30px;
    margin:0 auto 15px;
}

.mumtaz-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #f49910;
    font-style: italic;
    opacity: 0.85;
}

        /* LISTE DES ARTICLES */
        .blog-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .post-card {
            background:#fff;
            border: 2px solid #f4991a;
            border-radius:12px;
            overflow:hidden;
            margin-bottom:30px;
            box-shadow:0 10px 30px rgba(0,0,0,0.06);
            transition:0.2s;
        }
        .post-card:hover {
            transform:translateY(-3px);
            box-shadow:0 14px 40px rgba(0,0,0,0.08);
        }
        .post-cover img {
            width:100%;
            height:260px;
            object-fit:cover;
        }
        .post-content {
            padding:24px 28px;
        }
        .post-title {
            font-size:26px;
            margin:0 0 10px;
            color:#222;
        }
        .post-date {
            font-size:14px;
            color:#999;
            margin-bottom:14px;
        }
        .post-excerpt {
            font-size:16px;
            color:#444;
            line-height:1.6;
        }
        a.post-link {
            text-decoration:none;
            color:inherit;
        }

        @media (max-width: 600px) {
            .mumtaz-title { font-size: 36px; }
            .mumtaz-subtitle { font-size: 16px; }
        }
        
/* Ligne Retour + Partage */
.top-bar-blog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0 35px;
}

/* Bloc partage */
.share-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Boutons RS */
.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(6px);
    color: #b86b31;
    font-size: 18px;
    text-decoration: none;
    transition: 0.25s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

.share-btn:hover {
    background: rgba(255,255,255,0.7);
}

/* Couleurs spécifiques */
.share-btn.fb { color: #1877f2; }
.share-btn.x  { color: #000; }
.share-btn.wa { color: #25D366; }
.share-btn.ms { color: #0084ff; }
.share-btn.tg { color: #0088cc; }
