/* ===== BOTÓN DOSSIER RESPONSIVE ===== */
.btn-dossier {
    margin-top: 40px;
    margin-bottom: 30px;
    background-color: #fff;
    color: #007bff;
    border: solid 2px #007bff;
    width: 100%;
    padding: 20px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dossier:hover {
    background-color: #1898d4;
    border-color: #1898d4;
}

.btn-dossier:hover a {
    color: #fff !important;
}

.btn-dossier a {
    color: #007bff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 500;
    width: 100%;
}

.btn-dossier a:hover {
    text-decoration: none;
    color: #fff !important;
}

.btn-dossier a i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.btn-dossier a span {
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .btn-dossier {
        padding: 16px 12px;
    }
    .btn-dossier a {
        font-size: 0.85rem;
        gap: 8px;
    }
    .btn-dossier a i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-dossier {
        padding: 14px 10px;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    .btn-dossier a {
        font-size: 1rem;
        gap: 6px;
        flex-wrap: wrap;
    }
    .btn-dossier a i {
        font-size: 0.9rem;
    }
}