.dtz ul{
    list-style-type: none;
    padding: 0;
    display:grid;
    gap:20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.dtz .person{
     margin: 15px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    font-style: italic;
    text-decoration: none;
}
.dtz .description{
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    display:block;
   
}
.dtz .member-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.25s 
ease, box-shadow 0.25s 
ease;
    padding: 4px;
}
.dtz .member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.dtz .member-avatar{
    width: 100%;
    border-radius: 3px;
    margin: 0 auto;
    display: block;
    margin-bottom:12px;
}
.dtz .member-card img {
    width: calc(100% - 5px);
    height: initial;
    object-fit: cover;
    border: 3px solid #eee;
    outline: 2px solid #fdfdfd;
    outline-offset: -6px;
    border-radius: 6px;
    margin: 2px auto 0;
    display: block;
    box-shadow: inset 0 0 0 1px #e5e5e5;
}
@media(max-width:512px){
    .dtz ul{
        grid-template-columns: 1fr 1fr;
    }
}