.quick-action-grid {
    align-items: stretch;
    gap: 12px;
}

.quick-action-grid a {
    display: flex;
    min-height: 86px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    padding: 16px 18px;
    text-align: left;
    line-height: 1.35;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.quick-action-grid a span {
    display: block;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.3;
}

.quick-action-grid a small {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.quick-action-grid a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.quick-action-grid a:hover small {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 980px) {
    .quick-action-grid a {
        min-height: 76px;
    }
}
