.editors_cards_container {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
}

.editor_card {

    padding: 0.8em 1.8em;
    border-radius: 0.8em;
    display: grid;
    grid-auto-rows: min-content;
    text-align: center;
    min-width: 2.5in;
    width: 291px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    overflow-wrap: anywhere;
}

.editor_card>h3 {
    text-align: left;
    padding-top: 0em;
}

.editor_card>.picture_wrapper {
    aspect-ratio: 16/10;
    /* border: silver;
    border-style: ridge; */
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    height: 187px;
}

.editor_card>.picture_wrapper>img {
    height: 100%;
}

.editor_card.water {
    background-color: #65c8f2;
}

.editor_card.poison {
    background-color: #bc81b8;
}

.editor_card.fighting {
    background-color: #e2982c;
}

/* small screens only */
@media only screen and (max-width: 690px) {
    #editors_cards_container {
        justify-content: center;
    }
}