.exec-image {
    flex-basis: 45%;
    min-width: 300px;
    border-radius: 16px;
    
}

/* cheese fix for last item taking up whole space if theres odd number of execs */
@media (max-width: 679.5px) {
    .exec-image {
        flex: 1; 
    }
}

#exec-flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.subcom-img {
    width: 90%;
    border-radius: 16px;
    margin: 1rem;
}
.subcom-img-wrapper {
    display: flex;
    justify-content: center;
}

.subcom-listbox {
    display: flex;
    justify-content: space-evenly;
    font-family: 'UniSansHeavy';
}
.subcom-list {
    list-style-type: none;
}
.subcom-name {
    display: flex;
    flex-direction: row;
}

@media (max-width: 700px) {
    .subcom-name {
      flex-direction: column;
    }
}