.angie-action-cards-grid {
    display: grid;
    width: 100%;
}

.angie-action-card-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Icon Position Flex Directions */
.angie-action-card-item.pos-top {
    flex-direction: column;
}
.angie-action-card-item.pos-bottom {
    flex-direction: column-reverse;
}
.angie-action-card-item.pos-left {
    flex-direction: row;
}
.angie-action-card-item.pos-right {
    flex-direction: row-reverse;
}

.angie-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.angie-card-icon svg {
    display: block;
}
