/**
 * @author    Veo by Kebes <hola@kebes.es>
 * @copyright 2025 Veo by Kebes
 * @license   https://opensource.org/licenses/AFL-3.0  Academic Free License 3.0 (AFL-3.0)
 */
.veoteam-section {
    padding: 40px 0;
}

.veoteam-header {
    text-align: center;
    margin-bottom: 30px;
}

.veoteam-pretitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.veoteam-title {
    font-size: 2.5em;
    margin-bottom: 12px;
}

.veoteam-description {
    max-width: 600px;
    margin: 0 auto;
    white-space: pre-line;
}

.veoteam-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.veoteam-card {
    flex: 0 1 400px;
    text-align: center;
}

.veoteam-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.veoteam-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.veoteam-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    color: #aaa;
}

.veoteam-member-name {
    font-size: 1.4em;
    margin-bottom: 8px;
}

.veoteam-member-desc {
    font-size: 0.9em;
    white-space: pre-line;
}