.board-chairman .container{
    display: flex;
    flex-direction: column;
}

.board-chairman img{
    width: 100%;
    margin-bottom: 40px;
}

.board-chairman p.slide-right{
    line-height: 1.6;
}

.directors .wrapper,
.admin .wrapper {
    width: 80%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.card {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 25px 20px;
    border-radius: 5px;
    background-color: #FFFBD6;
}

.card strong {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.admin {
    height: auto;
    padding: 40px 0;
}

.admin strong {
    margin-bottom: 5px;
    /* color: #666664; */
}

.admin .card ul {
    list-style: none;
}

.admin .card li:last-of-type {
    font-weight: lighter;
    font-size: 0.9rem;
}


@media(min-width: 1024px){
    .board-chairman{
        padding: 80px 0;
    }
    .board-chairman .container{
        width: 80%;
        flex-direction: row;
        justify-content: center;
        gap: 5%;
    }

    .board-chairman .image-wrapper{
        width: 35%;
    }

    .board-chairman .slide-right{
        width: 70ch;
        font-size: 1.1em;
        align-self: center;
    }

    .directors h2,
    .admin h2{
        text-align: center;
        margin-bottom: 40px;
    }

    .card{
        transition: transform 0.24s ease-in-out; 
    }

    .card:hover{
        transform: scale(1.05);
    }
}