/* ========================================
   SECTION DÉTAILS INFORMATIONS
======================================== */

.info-detail-section {
    padding: 3rem 0 4rem;
    background: #f8f9fa;
}

/* Fil d'Ariane */
.breadcrumb-nav {
    margin-bottom: 2rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

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

.breadcrumb-item a i {
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-item:not(:last-child)::after {
    margin-left: 0.5rem;
    color: #ced4da;
    font-weight: 400;
}

/* Image en vedette */
.info-featured-image {
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: white;
}

.info-featured-image img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
    display: block;
}

/* Meta informations */
.info-meta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
}

.info-meta-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #495057;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-meta-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Contenu des paragraphes */
.info-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
}

.info-paragraph {
    margin-bottom: 3rem;
}

.info-paragraph:last-child {
    margin-bottom: 0;
}

/* Titres des paragraphes */
.paragraph-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.6rem;
    padding-bottom: 1.2rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.paragraph-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #7ed492;
}

/* Contenu des paragraphes */
.paragraph-content {
    margin-top:-45px;
    font-size: 0.8rem;
    line-height: 1.8;
    color: #495057;
    white-space: pre-line;
    background: #f1f1f1;
    padding:0.6rem;
    border-radius: 10px;
}

.paragraph-content p {
    margin-bottom: 1.25rem;
}

.paragraph-content p:last-child {
    margin-bottom: 0;
}

.paragraph-content strong {
    color: #212529;
    font-weight: 600;
}

.paragraph-content ul,
.paragraph-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.paragraph-content li {
    margin-bottom: 0.75rem;
    color: #495057;
}

.paragraph-content li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

.paragraph-content a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.paragraph-content a:hover {
    color: #7ed492;
}

.paragraph-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.paragraph-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Bouton retour */
.back-to-list-wrapper {
    text-align: center;
    padding-top: 2rem;
}

.btn-back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(101, 193, 120, 0.2);
}

.btn-back-to-list:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(101, 193, 120, 0.3);
}

.btn-back-to-list i {
    transition: transform 0.3s ease;
}

.btn-back-to-list:hover i {
    transform: translateX(-3px);
}

/* ========================================
   MEDIA QUERIES RESPONSIVE
======================================== */

/* Tablettes (768px - 991px) */
@media (max-width: 991px) {
    .info-detail-section {
        padding: 2.5rem 0 3.5rem;
    }

    .breadcrumb-nav {
        margin-bottom: 1.75rem;
    }

    .info-featured-image {
        margin-bottom: 2rem;
    }

    .info-featured-image img {
        max-height: 400px;
    }

    .info-meta-wrapper {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .info-content {
        padding: 2.5rem;
        margin-bottom: 2rem;
    }

    .paragraph-title {
        font-size: 1.6rem;
    }

    .paragraph-content {
        font-size: 1rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .info-detail-section {
        padding: 2rem 0 3rem;
    }

    .breadcrumb-nav {
        margin-bottom: 1.5rem;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }

    .info-featured-image {
        margin-bottom: 1.75rem;
        border-radius: 15px;
    }

    .info-featured-image img {
        max-height: 400px;
    }

    .info-meta-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
        margin-bottom: 1.75rem;
    }

    .info-meta-item {
        font-size: 0.9rem;
    }

    .info-content {
        padding: 2rem;
        border-radius: 15px;
        margin-bottom: 1.75rem;
    }

    .info-paragraph {
        margin-bottom: 2.5rem;
    }

    .paragraph-title {
        font-size: 1.3rem;
        margin-bottom: 1.45rem!important;
    }

    .paragraph-content {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .paragraph-content h3 {
        font-size: 1.2rem;
    }

    .paragraph-content h4 {
        font-size: 1.1rem;
    }

    .btn-back-to-list {
        padding: 0.75rem 1.8rem;
        font-size: 0.85rem;
    }
}

/* Petits mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .info-detail-section {
        padding: 1.5rem 0 2.5rem;
    }

    .breadcrumb-nav {
        margin-bottom: 1.25rem;
    }

    .breadcrumb-item {
        font-size: 0.8rem;
    }

    .info-featured-image {
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }

    .info-featured-image img {
        max-height: 250px;
    }

    .info-meta-wrapper {
        padding: 1rem;
        margin-bottom: 1.5rem;
        gap: 0.85rem;
    }

    .info-meta-item {
        font-size: 0.7rem;
    }

    .info-content {
        padding: 1.5rem;
        border-radius: 12px;
        margin-bottom: 1.5rem;
    }

    .info-paragraph {
        margin-bottom: 2rem;
    }

    .paragraph-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .paragraph-content {
        font-size: 0.75rem;
    }

    .paragraph-content h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .paragraph-content h4 {
        font-size: 1rem;
        margin-top: 1.25rem;
    }

    .paragraph-content ul,
    .paragraph-content ol {
        padding-left: 1.5rem;
    }

    .btn-back-to-list {
        padding: 0.65rem 1.55rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }

    .back-to-list-wrapper {
        padding-top: 1.5rem;
    }
}