/* =============================== */
/*   COMPOSANTS – CARTES CULTURE   */
/* =============================== */

.culture-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.culture-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.culture-card-content {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.culture-card-content h3 {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #005a87;
    text-align: center;
}

.culture-card-content p {
    font-size: 0.9em;
    color: #555;
    text-align: center;
    line-height: 1.4;
}