.team{
    overflow-x:hidden; 
}

p {
     text-align:justify;
     margin-top:0px;
}   

.team section article header h4{
    margin-top:0px;
    margin-bottom:0px;
}
.team section article header h3{
   
    margin-top:0px;
    margin-bottom:0px;
}

.team section article:nth-of-type(2n-1){
    --columns:9;
    grid-column-start: 3;
}

.team section article:nth-of-type(2n){
    --columns:9;
    grid-column-start: 3;
}

.team section article{
    margin-bottom: 2rem;
    grid-template-rows: min-content 1fr;
}

.team section article:nth-of-type(2n-1) header{
    grid-column:1/5;
    text-align: right;
}

.team section article:nth-of-type(2n) header{
    grid-column:5/10;
}

.team section article div{
    vertical-align: top;
}
.team section article:nth-of-type(2n-1) div{
    grid-column:1/5;
}

.team section article:nth-of-type(2n) div{
    grid-column:5/9;
}

.team section article img{
    grid-row:1/3;
}
.team section article:nth-of-type(2n-1) img{
    
    grid-column:5/9;
}

.team section article:nth-of-type(2n) img{
    grid-column:1/5;
    margin-left: auto;
    margin-right:0px;
}

.Headshot{
    width:320px;
    height:320px;
}

@media only screen and (max-width: 600px) {
    .team section{
        width:calc(100% - 2rem);
    }

    .team section article:nth-of-type(2n-1),
    .team section article:nth-of-type(2n)
    {
        --columns: 12;
        grid-column-start: 1;
    }

    .team section article:nth-of-type(2n-1) header,
    .team section article:nth-of-type(2n-1) div,
    .team section article:nth-of-type(2n-1) img,
    .team section article:nth-of-type(2n) header,
    .team section article:nth-of-type(2n) img,
    .team section article:nth-of-type(2n) div {
        grid-column:1/13;
    }

    .team section article:nth-of-type(2n-1) img{
        grid-row-start: 1;
    }

    .team section article:nth-of-type(2n) img{
        margin-left: auto;
        margin-right:auto;
    }
}

@media only screen and (max-width: 280px) {
    .Headshot{
        width:100px;
    }

    .team section article:nth-of-type(2n-1){
        --columns:12;
        grid-column-start: 1;
    }
    
    .team section article:nth-of-type(2n){
        --columns:12;
        grid-column-start: 1;
    }
    
}
