/* Accesos rápidos de la portada. Separado para no alterar app.css. */
.quick {
    position: relative;
    min-height: 84px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.quick strong {
    flex: 1;
}

.quick .quick-icon {
    flex: 0 0 48px;
    width: 48px;
    min-width: 48px;
    height: 48px;
}

.quick-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-arrow {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .58;
    transition: transform .2s ease, opacity .2s ease;
}

.quick:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 24px rgba(16, 42, 67, .1);
    transform: translateY(-2px);
}

.quick:hover .quick-arrow {
    opacity: 1;
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .quick,
    .quick-arrow {
        transition: none;
    }
}
