/* Style général pour le template males */
.male-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 60px auto;
    max-width: 1000px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.male-photo img {
    width: 350px;
    border-radius: 12px;
    object-fit: cover;
}

.male-info h2 {
    font-size: 32px;
    margin-bottom: 5px;
}

.male-info h3 {
    font-size: 20px;
    color: #777;
    margin-bottom: 20px;
}

.male-info p {
    line-height: 1.6;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .male-card {
        flex-direction: column;
        text-align: center;
    }

    .male-photo img {
        width: 100%;
        max-width: 350px;
    }
}