css

/*
 Theme Name:   Divi Child
 Theme URI:    https://www.pianoteknikko.fi/
 Description:  Divin lapsiteema
 Author:       Tuomas
 Template:     Divi
 Version:      1.0.1
*/

/* Sivun/osion tausta vaalean harmaa */
.henkilokortit-kontti {
    background-color: #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding: 24px;
}

/* Yksittäinen kortti */
.henkilokortti {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    padding: 30px;
    box-sizing: border-box;
    width: 330px; /* 270px sisältö + 30px padding molemmin puolin */
    text-align: center;
}

.henkilokortti-kuva {
    width: 100%; /* täyttää 270px:n sisältöalueen automaattisesti */
    height: auto;
    border-radius: 6px;
    margin-bottom: 12px;
    display: block;
}

.henkilokortti-teksti {
    width: 100%;
    font-size: 0.9rem;
    color: #555;
}

.henkilokortti h3 {
    margin: 8px 0 4px;
    font-size: 1.1rem;
}

/* Kännykkänäkymä */
@media (max-width: 600px) {
    .henkilokortit-kontti {
        padding-left: 40px;
        padding-right: 40px;
        gap: 24px;
    }

    .henkilokortti {
        width: 100%;
    }
}