/* ==========================================================================
   STYLE POUR LES ARTICLES - VERSION ÉPURÉE & CLAIRE (GamerLab)
   ========================================================================== */

.article-container {
    max-width: 850px;
    margin: 3rem auto;
    padding: 0 var(--space-4);
}

/* Fil d'ariane */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* En-tête */
.article-header {
    margin-bottom: var(--space-4);
}

.badge-categorie {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 210, 0, 0.08);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: var(--space-3);
}

.article-header h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: var(--space-2);
    font-weight: 800;
    color: var(--text);
}

.article-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: var(--space-3);
}

.article-meta {
    font-size: 0.9rem;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-4);
}

/* Image principale */
.article-hero-image {
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem auto;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Corps de texte */
.article-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 1.45rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 210, 0, 0.2);
    padding-bottom: 6px;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.article-content li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--accent);
}

/* Structure du Tableau */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.specs-table th {
    background-color: var(--surface);
    color: var(--text);
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-table td {
    padding: 14px 18px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

/* Structure du Verdict */
.verdict-box {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--surface);
    border-left: 4px solid var(--accent);
    border-radius: 0 8px 8px 0;
}

.verdict-box h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.verdict-columns {
    display: table;
    width: 100%;
}

.verdict-side {
    display: table-cell;
    width: 50%;
    padding-right: 1.5rem;
    vertical-align: top;
}

.verdict-side:last-child {
    padding-right: 0;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.verdict-side h4 {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.verdict-side p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* ==========================================================================
   BLOCS PRODUITS / AFFILIATION AMAZON
   ========================================================================== */

.affiliate-showcase {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
}

.product-affiliate-card {
    flex: 1;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-affiliate-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 210, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--surface);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-image-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.product-affiliate-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.brand-logo-mini {
    margin-top: 1rem;
    object-fit: contain;
}

.product-affiliate-card {
    text-decoration: none;
    text-align: center;
}

.product-affiliate-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: lighter;
    text-align: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0.25rem 0;
}

.amazon-footer-logo {
    margin-top: 1rem;
}

/* Version responsive pour mobile */
@media (max-width: 768px) {
    .affiliate-showcase {
        flex-direction: column;
        gap: 1.5rem;
    }

    .product-image-wrapper {
        height: 150px;
    }
}

/* Adaptation Mobile */
@media (max-width: 768px) {
    .verdict-side {
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .verdict-side:last-child {
        padding: 0;
        border-left: none;
        margin-bottom: 0;
    }
}