body {
    font-family: Arial, sans-serif;
    background-color: #f1f5f9;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.tarjeta {
    width: 320px;
    min-height: 450px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;
}

.foto {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.info {
    width: 100%;
    text-align: center;
}

.info h2 {
    font-size: 22px;
    margin: 10px 0;
    color: #222;

    overflow-wrap: break-word;
    word-wrap: break-word;
}

.matricula {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.info p {
    margin: 8px 0;
    line-height: 1.5;
    color: #444;

    overflow-wrap: break-word;
    word-wrap: break-word;
}