/* ==========================================================================
   ARTICLES NEXUS & BOUTONS ACHETER
   ========================================================================== */
.article-glow {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    transition: all 0.3s ease, background-color 0.4s ease;
}

.article-glow:hover {
    border-color: #8f64de !important;
    box-shadow: 0 0 20px rgba(74, 110, 224, 0.3) !important;
    transform: translateY(-5px);
}

.article-title {
    color: var(--text-primary) !important;
    transition: color 0.4s ease;
}

.article-desc {
    color: var(--text-card-desc) !important;
    transition: color 0.4s ease;
}

.btn-glow {
    background-color: #8f64de;
    transition: all 0.3s ease;
    border: none;
    color: white;
}

.btn-glow:hover {
    background-color: #7440d6;
    box-shadow: 0 0 15px rgba(74, 110, 224, 0.6);
    transform: translateY(-3px);
    color: white;
}

/* ==========================================================================
   CLASSES UTILITAIRES (Remplacement des styles inline)
   ========================================================================== */

.article-page-title {
    letter-spacing: 2px;
}

.articles-card-wrapper {
    max-width: 380px;
}

.articles-img {
    height: 200px;
}

.articles-modal-img {
    height: 350px;
}

.bg-bronze-nexus {
    background-color: #d68f4e !important;
}

.articles-badge-price {
    font-size: 0.9rem;
}

.articles-text-sm {
    font-size: 0.95rem;
}

.articles-legal-text {
    font-size: 0.6rem;
}

.article-card-limit {
    max-width: 300px;
}

/* ==========================================================================
   BARRE DE RECHERCHE
   ========================================================================== */
.articles-search-input:focus {
    border-color: var(--gacha) !important;
    box-shadow: 0 0 0 0.25rem rgba(139, 92, 246, 0.25) !important;
}

/* ==========================================================================
   SECTION COMMENTAIRES (Modales)
   ========================================================================== */
.articles-comments-wrapper {
    max-height: 250px; /* Aligné sur ton ancien style inline */
    overflow-y: auto;
    padding-right: 5px;
}

.articles-comments-wrapper::-webkit-scrollbar {
    width: 6px;
}
.articles-comments-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.article-comment-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    transition: background-color 0.2s ease;
}

.article-comment-box:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.comment-avatar {
    width: 25px; /* Taille exacte demandée */
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-badge-count {
    font-size: 0.7rem;
}

.comment-text-small {
    font-size: 0.75rem;
}

.comment-rating i {
    color: #ffc107;
    font-size: 0.7rem;
}

.comment-text {
    font-size: 0.85rem;
    color: var(--text-card-desc);
    line-height: 1.4;
}