/* Prochaines Formations Styles */
.prochaines-formations-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.formation-card {
    width: 365.3px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    min-height: 280px;
}

.formation-header {
    margin-bottom: 15px;
}

.formation-date {
    font-family: inherit;
    font-weight: 500;
    font-style: normal;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #5e8a70;
    margin-bottom: 8px;
}

.formation-title {
    font-family: inherit;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #333333;
}

.formation-description {
    font-family: inherit;
    font-weight: normal;
    font-style: normal;
    font-size: 1.1em;
    line-height: 1.5;
    color: #333;
    flex-grow: 1;
}

.formation-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #5e8a70;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
    text-align: center;
    text-transform: none;
	align-self: flex-start;
	margin-top: 20px;
}

.formation-button:hover {
    background-color: #146c43;
    border-color: #146c43
    text-decoration: none;
}

/* Force no movement on formation buttons */
.formation-button,
.formation-button:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .prochaines-formations-container {
        flex-direction: column;
        align-items: center;
    }
    
    .formation-card {
        width: 100%;
        max-width: 365.3px;
    }
} 