/* ================================
   Review part 9 — internal linking, brand archive, about box
   ================================ */

/* ---------- Related tests (internal linking) ---------- */
.related-tests { margin-top: 48px; }
.related-tests h2 { font-size: 24px !important; margin-bottom: 20px !important; }
.related-tests .rt-sub { margin-top: 40px !important; }
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 16px;
}
.related-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none !important;
    transition: all .25s;
    color: inherit;
}
.related-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}
.rc-media {
    aspect-ratio: 4 / 3;
    background: var(--bg-hover);
    overflow: hidden;
}
.rc-media img { width: 100%; height: 100%; object-fit: cover; }
.rc-body { padding: 16px 18px; }
.rc-brand {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--accent-2);
    font-weight: 700;
    margin-bottom: 6px;
}
.related-card h3 {
    font-size: 15px !important;
    line-height: 1.35;
    margin: 0 0 10px !important;
    color: var(--text);
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.rc-note {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--accent-2);
    font-size: 16px;
}
.rc-prix {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text);
    font-size: 15px;
}
.rt-more { margin: 12px 0 0; text-align: right; }
.rt-more a {
    color: var(--accent-2);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.rt-more a:hover { text-decoration: underline; }

/* ---------- About LaptopTester box (EEAT) ---------- */
.about-lt {
    display: flex;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(6, 182, 212, 0.06));
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    margin: 40px 0;
    align-items: flex-start;
}
.al-icon {
    font-size: 36px;
    flex-shrink: 0;
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 16px;
}
.about-lt h3 {
    font-size: 18px !important;
    margin: 0 0 8px !important;
    color: var(--text);
}
.about-lt p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 8px;
}
.about-lt a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.about-lt a:hover { text-decoration: underline; }

/* ---------- Brand archive ---------- */
.brand-hero {
    padding: 32px 0 60px;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(124, 58, 237, 0.15), transparent 55%),
        radial-gradient(ellipse at 70% 100%, rgba(6, 182, 212, 0.12), transparent 55%);
    pointer-events: none;
}
.brand-hero > .container { position: relative; }
.bh-inner { max-width: 820px; margin-top: 20px; }
.bh-kicker {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 16px;
}
.bh-title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bh-intro {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}
.bh-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}
.bh-stats > div { display: flex; flex-direction: column; }
.bh-stats strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    background: var(--accent-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.bh-stats span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

/* Brand categories (maillage) */
.brand-categories {
    background: var(--bg-elev);
    border-top: 1px solid var(--border);
    padding-top: 40px;
    padding-bottom: 60px;
}
.bc-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}
.bc-pill {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}
.bc-pill:hover {
    border-color: var(--accent-1);
    background: var(--bg-hover);
    color: var(--accent-2);
}

/* Customer review microdata styling (already styled, no changes needed) */

@media (max-width: 900px) {
    .related-grid { grid-template-columns: 1fr; }
    .about-lt { flex-direction: column; }
}
