.quick-access-col {
    flex: 1 1 12rem;
    max-width: 15rem;
}

.quick-access-card {
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-access-card:hover {
    cursor: pointer;
    transform: translateY(-3px);
}

@media screen and (max-width: 480px) {
    .quick-access-col {
        flex: 1 1 calc(50% - 0.75rem);
        max-width: 100%;
    }
}