.fiche-fiche {
    font-family: 'Quicksand', sans-serif;
    color: #222;
}

/* Ouvrage lié */
.fiche-ouvrage-lie {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f7f7f5;
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 22px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s;
}
.fiche-ouvrage-lie:hover {
    background: #f0ede5;
}
.fiche-ouvrage-thumb {
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.fiche-ouvrage-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.fiche-ouvrage-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
}
.fiche-ouvrage-titre {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Badge thématique */
.fiche-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--badge-color, #FDC71C);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.fiche-badge-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

/* Titre */
.fiche-titre {
    font-size: clamp(24px, 5vw, 34px);
    font-weight: 800;
    margin: 0 0 28px;
    line-height: 1.2;
    color: #111;
}

/* Sections */
.fiche-section {
    margin-bottom: 26px;
}
.fiche-section-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #111;
}
.fiche-section-icon {
    font-size: 18px;
    line-height: 1;
}
.fiche-description {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

/* Liste */
.fiche-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fiche-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    line-height: 1.5;
}
.fiche-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #FDC71C;
}

/* Barre méta */
.fiche-meta-bar {
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 20px;
    margin-top: 10px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.fiche-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 160px;
    background: #f7f7f5;
    border-radius: 12px;
    padding: 14px 18px;
}
.fiche-meta-author {
    background: #edf7ee;
}
.fiche-meta-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fiche-meta-icon--age {
    color: #FDC71C;
}
.fiche-meta-icon--user {
    color: #2f9140;
}
.fiche-meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.fiche-meta-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #999;
}
.fiche-meta-value {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

/* Boutons */
.fiche-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.fiche-btn {
    flex: 1;
    min-width: 180px;
    padding: 14px 20px;
    border: none;
    border-radius: 15px;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.fiche-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.fiche-btn-print {
    background: #FDC71C;
    color: #fff;
}
.fiche-btn-print:hover {
    background: #ffd036;
    color: #fff;
}
.fiche-btn-share {
    background: #2f9140;
    color: #fff;
}
.fiche-btn-share:hover {
    background: #3aa84d;
    color: #fff;
}

/* Responsive */
@media (max-width: 520px) {
    .fiche-meta-bar,
    .fiche-actions {
        flex-direction: column;
    }
    .fiche-btn {
        width: 100%;
    }
}

/* Impression */
@media print {
    .fiche-actions { display: none !important; }
}
