/* Styles pour les résultats de recherche groupés par post_type */

.post-type-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e9ecef;
}

.post-type-section:last-child {
    border-bottom: none;
}

.post-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-count {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
    margin-left: 0.5rem;
}

.gutter-custom-40 {
    margin-left: -20px;
    margin-right: -20px;
}

.gutter-custom-40 > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .post-type-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .post-type-section {
        padding: 1.5rem 0;
    }
    
    .gutter-custom-40 {
        margin-left: -15px;
        margin-right: -15px;
    }
    
    .gutter-custom-40 > [class*="col"] {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Animation pour l'apparition des sections */
.post-type-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style pour le bouton de réinitialisation */
.btn-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #fff;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-reset:hover {
    background-color: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

/* Style pour le bouton de soumission */
.btn-submit {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
}

.btn-submit:hover {
    background-color: #333;
}
