.buttonCard {
    padding: 16px 24px;
    border-radius: 8px;
    border: solid 1px #d2d2d2;
    background-color: #fff;
    cursor: pointer;
    width: 232px;
    height: 136px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #222329;
}
.buttonCard img {
    margin-bottom: 16px;
}
.buttonCard:hover {
    background-color: #eee;
}
.clicked {
    background-color: #f6f6f6;
    border: solid 1px #222329;
}
.buttonCard.fullWidth {
    display: grid;
    justify-content: center;
    align-items: center;
    text-align: left;
    grid-template-columns: 170px 1fr;
    width: 100%;
    max-width: 464px;
    grid-column-gap: 16px;
    line-height: 1.5;
}
.buttonCard.fullWidth img {
    margin: auto;
}
.buttonCard.noIcon {
    height: 96px;
}
@media (max-width: 600px) {
    .buttonCard.fullWidth {
        height: auto;
        min-height: 136px;
    }
    .buttonCard.noIcon {
        height: auto;
        min-height: 96px;
    }
}
@media (max-width: 480px) {
    .buttonCard.fullWidth {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}
@media (max-width: 300px) {
    .buttonCard {
        width: 100%;
    }
}
