article .card_presentation {
    border: 1px solid #b13270;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    padding: 24px;
    margin-bottom: 30px;
}

article .card_presentation:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(182, 55, 116, 0.35);
    border: 1px solid #b63774;
}

article .card_full{
    width: 100%;
}

article .card_medium {
    flex: 1 1 calc(50% - 12px);
    min-width: 300px;
    text-align: left;
}

article .card_display {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

article .titre {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    color: #b63774;
}

article h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #444;
}

article p, article li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    article .card_medium {
        flex: 1 1 100%;
    }

    article .btn {
        width: 100% !important;
    }
}

article .justified-text {
    padding-bottom: 50px;
}