/* ==========================================================================
   SHOWAURORA - MODULE BLOG OFFICIEL (CARROUSEL, CARTES, COEURS & AVIS)
   Design System : Dark Luxury Glassmorphism & Proportions Entête (1440px)
   ========================================================================== */

/* --- 1. CONTENEUR PRINCIPAL ALIGNÉ SUR L'ENTÊTE (1440px) --- */
.blog-index-blog,
#blog-index-blog-section {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 35px auto 50px auto !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    position: relative;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.blog-index-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* --- 2. EN-TÊTE DE SECTION DU BLOG --- */
.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    flex-wrap: wrap;
    gap: 15px;
}

.blog-header-left {
    flex: 1 1 300px;
}

.blog-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.08), rgba(74, 100, 145, 0.12));
    color: #2c3e50;
    border: 1px solid rgba(44, 62, 80, 0.18);
    margin-bottom: 8px;
}

.blog-section-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-section-subtitle {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
}

.blog-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff !important;
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    padding: 9px 20px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25);
}

.blog-view-all-btn:hover {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #f1c40f !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 62, 80, 0.35);
}

/* --- 3. CONTENEUR CARROUSEL DÉFILANT --- */
.blog-index-blog-container {
    display: flex !important;
    gap: 22px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    padding: 12px 6px 24px 6px !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(74, 100, 145, 0.3) rgba(0, 0, 0, 0.04);
}

.blog-index-blog-container::-webkit-scrollbar {
    height: 7px;
}

.blog-index-blog-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 4px;
}

.blog-index-blog-container::-webkit-scrollbar-thumb {
    background: rgba(74, 100, 145, 0.35);
    border-radius: 4px;
}

.blog-index-blog-container::-webkit-scrollbar-thumb:hover {
    background: rgba(74, 100, 145, 0.7);
}

/* --- 4. BOUTONS DE NAVIGATION DU CARROUSEL --- */
.blog-index-scroll-button {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 25;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92), rgba(74, 100, 145, 0.92));
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(8px);
}

.blog-index-scroll-button:hover {
    background: linear-gradient(135deg, #1e293b, #3b5278);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
    color: #f1c40f !important;
}

.blog-index-scroll-button-left {
    left: 20px;
}

.blog-index-scroll-button-right {
    right: 20px;
}

/* --- 5. CARTE DE BLOG (LUXURY GLASSMORPHISM) --- */
.blog-index-blog-card {
    flex: 0 0 290px !important;
    width: 290px !important;
    max-width: 290px !important;
    margin-right: 0 !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06) !important;
    border: 1px solid rgba(226, 232, 240, 0.9) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    box-sizing: border-box !important;
}

.blog-index-blog-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(74, 100, 145, 0.4) !important;
}

/* --- 6. CONTENEUR MEDIA VIGNETTE (1:1 CARRÉ AVEC BADGES FLOTTANTS) --- */
.blog-card-media-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 16px 16px 0 0 !important;
    background-color: #f1f5f9 !important;
}

.blog-media-link {
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
}

.blog-image-square-box {
    position: relative !important;
    width: 100% !important;
    padding-bottom: 100% !important; /* Force le ratio 1:1 Strict */
    overflow: hidden !important;
}

.blog-image-square-box img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.blog-index-blog-card:hover .blog-image-square-box img {
    transform: scale(1.08) !important;
}

/* --- 7. BADGE CATÉGORIE FLOTTANT (HAUT GAUCHE) --- */
.blog-floating-category-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    z-index: 10 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 5px 12px !important;
    border-radius: 20px !important;
    background: rgba(15, 23, 42, 0.82) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    transition: all 0.25s ease !important;
}

.blog-floating-category-badge:hover {
    background: rgba(15, 23, 42, 0.95) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35) !important;
}

.blog-cat-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.blog-cat-text {
    line-height: 1 !important;
}

/* --- 8. BOUTON CŒUR FLOTTANT (HAUT DROITE) --- */
.blog-floating-heart-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 10 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 5px 11px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    color: #64748b !important;
    font-size: 0.80rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

.blog-floating-heart-btn i {
    font-size: 0.92rem !important;
    transition: transform 0.2s ease !important;
}

.blog-floating-heart-btn:hover {
    background: #ffffff !important;
    transform: scale(1.08) !important;
    color: #f43f5e !important;
    box-shadow: 0 6px 16px rgba(244, 63, 94, 0.25) !important;
}

.blog-floating-heart-btn.is-liked {
    background: rgba(254, 242, 242, 0.95) !important;
    border-color: rgba(244, 63, 94, 0.4) !important;
    color: #e11d48 !important;
}

.blog-floating-heart-btn.is-liked i {
    color: #e11d48 !important;
}

.blog-floating-heart-btn:active i {
    transform: scale(1.3) !important;
}

.blog-like-counter-val {
    font-family: inherit !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
}

/* --- 9. CONTENU TEXTE DE LA CARTE --- */
.blog-index-blog-content {
    padding: 16px 18px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
}

.blog-index-blog-title {
    font-size: 0.98rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    line-height: 1.42 !important;
    margin: 0 0 8px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 2.84em !important;
}

.blog-index-blog-title a {
    color: #0f172a !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.blog-index-blog-title a:hover {
    color: #4a6491 !important;
}

.blog-index-blog-excerpt {
    font-size: 0.82rem !important;
    color: #64748b !important;
    line-height: 1.45 !important;
    margin: 0 0 12px 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

/* Ligne Méta (Auteur & Date) */
.blog-index-blog-meta {
    font-size: 0.76rem !important;
    color: #94a3b8 !important;
    margin: 0 0 14px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-top: 1px dashed #f1f5f9 !important;
    padding-top: 10px !important;
}

.blog-meta-author {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    color: #475569 !important;
    font-weight: 500 !important;
}

.blog-meta-date {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* --- 10. BARRE D'ACTIONS INFÉRIEURE (BOUTON AVIS & BOUTON LIRE) --- */
.blog-card-footer-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    margin-top: auto !important;
    padding-top: 12px !important;
    border-top: 1px solid #f1f5f9 !important;
}

.blog-action-btn-avis {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #854d0e !important;
    background: #fefce8 !important;
    border: 1px solid #fef08a !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 6px rgba(234, 179, 8, 0.12) !important;
}

.blog-action-btn-avis:hover {
    background: #fef08a !important;
    color: #713f12 !important;
    border-color: #fde047 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(234, 179, 8, 0.22) !important;
}

.blog-action-btn-avis i {
    color: #eab308 !important;
    font-size: 0.82rem !important;
}

.blog-action-btn-read {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #2c3e50, #4a6491) !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.25) !important;
}

.blog-action-btn-read:hover {
    background: linear-gradient(135deg, #1e293b, #334155) !important;
    color: #f1c40f !important;
    transform: translateY(-1px) !important;
    gap: 8px !important;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.35) !important;
}

.blog-action-btn-read i {
    font-size: 0.75rem !important;
    transition: transform 0.2s ease !important;
}

/* --- 10bis. CONTENEUR PRINCIPAL DE LA PAGE DÉTAIL D'ARTICLE (1350px DESKTOP) --- */
.article-page-wrapper {
    width: 100% !important;
    padding: 40px 0 80px 0 !important;
}

.article-page-wrapper .container,
.article-main-container {
    width: 100% !important;
    max-width: 1350px !important;
    margin: 0 auto !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}

@media (min-width: 1350px) {
    .article-page-wrapper .container,
    .article-main-container {
        max-width: 1350px !important;
        width: 1350px !important;
    }
}

/* Extrait Chapeau de Prestige */
.article-chapeau {
    font-size: 1.18rem !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    line-height: 1.8 !important;
    margin-bottom: 35px !important;
    padding: 24px 30px 24px 70px !important;
    background: linear-gradient(135deg, rgba(74, 100, 145, 0.05), rgba(44, 62, 80, 0.09)) !important;
    border-left: 5px solid #2c3e50 !important;
    border-radius: 0 16px 16px 0 !important;
    position: relative !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
}

.article-chapeau::before {
    content: "\f10d" !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 22px !important;
    left: 22px !important;
    font-size: 1.8rem !important;
    color: #4a6491 !important;
    opacity: 0.35 !important;
}

/* Corps du texte de l'article */
.article-content-body {
    font-size: 1.08rem !important;
    color: #334155 !important;
    line-height: 1.9 !important;
}

.article-content-body p {
    margin-bottom: 22px !important;
}

.article-content-body h2 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 40px 0 20px 0 !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    position: relative !important;
}

.article-content-body h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 65px !important;
    height: 2px !important;
    background: linear-gradient(135deg, #2c3e50, #4a6491) !important;
    border-radius: 2px !important;
}

.article-content-body h3 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin: 30px 0 15px 0 !important;
}

/* Listes Ordonnées Numérotées (Étapes du Blog) */
.article-content-body ol {
    list-style: none !important;
    counter-reset: blog-step-counter !important;
    padding: 0 !important;
    margin: 28px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

.article-content-body ol li {
    counter-increment: blog-step-counter !important;
    position: relative !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 20px 24px 20px 80px !important;
    font-size: 1.02rem !important;
    color: #334155 !important;
    line-height: 1.7 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

.article-content-body ol li::before {
    content: counter(blog-step-counter) !important;
    position: absolute !important;
    top: 20px !important;
    left: 22px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #2c3e50, #4a6491) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25) !important;
}

.article-content-body ol li:hover {
    transform: translateX(4px) !important;
    background: #ffffff !important;
    border-color: rgba(74, 100, 145, 0.4) !important;
    box-shadow: 0 8px 24px rgba(74, 100, 145, 0.09) !important;
}

.article-content-body ol li strong {
    color: #0f172a !important;
    font-weight: 700 !important;
    display: inline !important;
}

/* Listes non ordonnées */
.article-content-body ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 24px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.article-content-body ul li {
    position: relative !important;
    padding-left: 32px !important;
    font-size: 1.02rem !important;
    color: #334155 !important;
    line-height: 1.7 !important;
}

.article-content-body ul li::before {
    content: "\f058" !important;
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 0 !important;
    top: 2px !important;
    color: #10b981 !important;
    font-size: 1.1rem !important;
}

/* Box Auteur Rehaussée */
.article-author-card {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
    padding: 30px 34px !important;
    border-radius: 18px !important;
    margin-top: 45px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    position: relative !important;
}

.article-author-avatar-box {
    position: relative !important;
    flex-shrink: 0 !important;
}

.article-author-avatar {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #2c3e50, #4a6491) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 16px rgba(44, 62, 80, 0.28) !important;
    border: 3px solid #ffffff !important;
}

.article-author-badge {
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    background: #10b981 !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 2px solid #ffffff !important;
}

.article-author-details {
    flex: 1 !important;
}

.article-author-top {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 6px !important;
}

.article-author-top h4 {
    margin: 0 !important;
    font-size: 1.18rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
}

.article-author-role {
    font-size: 0.76rem !important;
    font-weight: 600 !important;
    color: #4a6491 !important;
    background: rgba(74, 100, 145, 0.1) !important;
    padding: 3px 10px !important;
    border-radius: 12px !important;
}

.article-author-details p {
    margin: 0 !important;
    font-size: 0.92rem !important;
    color: #64748b !important;
    line-height: 1.6 !important;
}

/* --- 11. SECTION AVIS DANS BLOG-DETAIL-FR.PHP (#section-avis) --- */
.blog-reviews-section {
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #e2e8f0;
}

.blog-reviews-header-card {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-reviews-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-reviews-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.blog-reviews-rating-box {
    text-align: right;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.blog-rating-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f1c40f;
    line-height: 1;
}

.blog-rating-stars {
    color: #f1c40f;
    font-size: 0.95rem;
    margin-top: 4px;
}

.blog-rating-count {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

/* Carte Formulaire de Dépôt d'Avis (Membre Connecté) */
.blog-review-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.blog-form-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-star-picker {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.blog-star-picker .star-icon {
    font-size: 1.5rem;
    color: #cbd5e1;
    cursor: pointer;
    transition: color 0.15s ease, transform 0.15s ease;
}

.blog-star-picker .star-icon.active,
.blog-star-picker .star-icon:hover,
.blog-star-picker .star-icon.hover {
    color: #f59e0b;
    transform: scale(1.15);
}

.blog-textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #1e293b;
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
    background: #f8fafc;
}

.blog-textarea:focus {
    outline: none;
    border-color: #2c3e50;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.12);
}

.blog-submit-review-btn {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: #ffffff;
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.25);
}

.blog-submit-review-btn:hover {
    background: linear-gradient(135deg, #1e293b, #334155);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(44, 62, 80, 0.35);
    color: #f1c40f;
}

/* Carte d'Invitation Connexion (Visiteur Non Connecté) */
.blog-reviews-login-prompt {
    background: linear-gradient(135deg, #f8fafc, #edf2f7);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    margin-bottom: 35px;
}

.blog-login-prompt-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.1);
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 16px auto;
}

.blog-login-prompt-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.blog-login-prompt-desc {
    font-size: 0.92rem;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto 20px auto;
    line-height: 1.5;
}

.blog-login-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.25);
}

.blog-login-cta-btn:hover {
    background: linear-gradient(135deg, #1e293b, #334155);
    transform: translateY(-2px);
    color: #f1c40f !important;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.35);
}

/* Liste des Avis (Affichage des avis postés) */
.blog-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-review-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-review-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.blog-review-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-review-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.blog-review-user-name {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.95rem;
    margin: 0 0 2px 0;
}

.blog-review-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: #059669;
    font-weight: 600;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 12px;
}

.blog-review-date {
    font-size: 0.78rem;
    color: #94a3b8;
}

.blog-review-comment-body {
    font-size: 0.92rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

/* Toast de Notification Flottant */
.blog-toast-notification {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100000;
    padding: 14px 22px;
    border-radius: 12px;
    background: #1e293b;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* --- 12. RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .blog-section-title {
        font-size: 1.4rem;
    }
    .blog-index-blog-card {
        flex: 0 0 260px !important;
        width: 260px !important;
        max-width: 260px !important;
    }
}

@media (max-width: 768px) {
    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-index-blog-card {
        flex: 0 0 240px !important;
        width: 240px !important;
        max-width: 240px !important;
    }
    .blog-reviews-header-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-reviews-rating-box {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-index-blog-card {
        flex: 0 0 215px !important;
        width: 215px !important;
        max-width: 215px !important;
    }
    .blog-index-scroll-button {
        display: none !important;
    }
}

/* ==========================================================================
   13. SHOWAURORA LUXURY PODCAST & AUDIO PLAYER CONTAINERS
   ========================================================================== */

/* Carte de lecteur Podcast Haute Fidélité */
.blog-podcast-player-card {
    background: linear-gradient(135deg, #0b1329 0%, #1e293b 100%) !important;
    border-radius: 22px !important;
    padding: 32px 36px !important;
    margin-bottom: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    box-shadow: 0 15px 45px rgba(11, 19, 41, 0.45) !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
}

.blog-podcast-player-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.blog-podcast-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
}

.podcast-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 85, 0, 0.18);
    border: 1px solid rgba(255, 85, 0, 0.4);
    color: #ff7733;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.podcast-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5500;
    box-shadow: 0 0 10px #ff5500;
    animation: podcastPulse 1.8s infinite;
}

@keyframes podcastPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.7); }
    70% { transform: scale(1.15); box-shadow: 0 0 0 10px rgba(255, 85, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
}

.podcast-soundwave-anim {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.soundwave-bar {
    width: 3px;
    background: #ff7733;
    border-radius: 3px;
    animation: soundwaveBounce 1.2s ease-in-out infinite alternate;
}

.soundwave-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.soundwave-bar:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.soundwave-bar:nth-child(3) { height: 10px; animation-delay: 0.2s; }
.soundwave-bar:nth-child(4) { height: 18px; animation-delay: 0.4s; }
.soundwave-bar:nth-child(5) { height: 8px; animation-delay: 0.15s; }

@keyframes soundwaveBounce {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

.blog-podcast-main-info {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.podcast-cover-art {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ff5500, #d946ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 85, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.podcast-cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-meta-texts {
    flex: 1;
}

.podcast-episode-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}

.podcast-episode-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.podcast-host-info {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Lecteur Audio Intégré */
.blog-podcast-audio-wrapper {
    background: rgba(15, 23, 42, 0.65);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.blog-podcast-audio-wrapper audio {
    width: 100%;
    outline: none;
    filter: invert(0.9) hue-rotate(180deg);
}

.blog-podcast-audio-wrapper iframe {
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    border: none;
    display: block;
}

/* Badges podcast sur les cartes de listing */
.podcast-card-badge {
    background: linear-gradient(135deg, #ff5500, #e11d48) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.podcast-card-play-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, background 0.25s ease;
}

.article-card:hover .podcast-card-play-overlay {
    background: #ff5500;
    transform: scale(1.05);
}

/* =========================================================================
   BLOG INDEX RESPONSIVE (1024px à 1279.98px)
   ========================================================================= */
@media (min-width: 1024px) and (max-width: 1279.98px) {
    .blog-index-blog,
    #blog-index-blog-section {
        max-width: 100% !important;
        padding: 0 12px !important;
        margin: 25px auto 35px auto !important;
    }

    .blog-section-title {
        font-size: 1.35rem !important;
    }

    .blog-section-subtitle {
        font-size: 0.82rem !important;
    }

    .blog-view-all-btn {
        padding: 7px 14px !important;
        font-size: 0.8rem !important;
    }

    .blog-index-blog-container {
        gap: 14px !important;
        padding: 8px 4px 18px 4px !important;
    }

    .article-card {
        flex: 0 0 255px !important;
        max-width: 255px !important;
    }

    .article-title {
        font-size: 0.88rem !important;
    }

    .article-excerpt {
        font-size: 0.74rem !important;
    }
}

