.support_cards {
    gap: 32px;
}

.support_cards .text {
    gap: 16px;
}

.support_cards .text.inline_element {
    gap: 24px;
    align-self: center;
}

.support_cards .card_container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    gap: 30px;
    width: 100%;
}

.flex_col {
    display: flex;
    flex-direction: column;
}

.support_card {
    gap: 16px;
    padding: 32px;
    justify-content: space-between;
}

.support_card_text {
    gap: 16px;
}

.support_card .support_card_title {
    font-size: 20px;
}

.support_card_go .support_card_title {
    color: var(--minuba-secondary-regular);
}

.support_card_plus .support_card_title {
    color: var(--minuba-primary-regular);
}

.support_card_channels {
    gap: 20px;
}

.support_card_channels .support_channel {
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: var(--semibold);
    text-decoration: none;
}

.support_card_channels .support_channel:hover {
    color: black;
}

.support_card_channels .support_channel_icon {
    display: flex;
    justify-content: center;
    min-height: 24px;
    min-width: 24px;
    max-height: 24px;
    max-width: 24px;
    align-self: flex-start;
}

.support_card_channels .support_channel_icon svg {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.support_card_go .support_channel_icon svg path {
    fill: var(--minuba-secondary-regular);
}

.support_card_go .support_channel:hover .support_channel_icon svg path {
    fill: var(--minuba-secondary-hover);
}

.support_card_plus .support_channel_icon svg path {
    fill: var(--minuba-primary-regular);
}

.support_card_plus .support_channel:hover .support_channel_icon svg path {
    fill: var(--minuba-primary-hover);
}

.support_desc p {
    margin: 0;
}

@media screen and (min-width: 574px) {
    .support_cards .text.inline_element {
        grid-column: span 2;
    }
}

@media screen and (min-width: 768px) {
    .support_cards {
        gap: 48px;
    }
    
    .support_cards .text {
        gap: 24px;
    }
}

@media screen and (min-width: 868px) {
    .support_cards .text.inline_element {
        grid-column: span 1;
    }
}