/**
 * Aradel Investor Quick Links — aradel-quick-links.css
 * Scoped entirely to .ar-qlinks
 * No background — parent .ar-investor-card handles frosted glass
 */

/* ── Container ──────────────────────────────────────────────── */
.ar-qlinks {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.ar-qlinks__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

/* ── Row ────────────────────────────────────────────────────── */
.ar-qlinks__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    text-decoration: none !important;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s ease;
    outline-offset: 4px;
}

.ar-qlinks__row:hover,
.ar-qlinks__row:focus,
.ar-qlinks__row:visited {
    text-decoration: none !important;
    color: #ffffff;
}

.ar-qlinks__row:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
}

/* ── Label ──────────────────────────────────────────────────── */
.ar-qlinks__label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    flex: 1;
    min-width: 0;
}

/* ── Icon (circle arrow) ────────────────────────────────────── */
.ar-qlinks__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    transition: transform 0.25s ease;
}

.ar-qlinks__row:hover .ar-qlinks__icon,
.ar-qlinks__row:focus-visible .ar-qlinks__icon {
    transform: translate3d(3px, 0, 0);
}

.ar-qlinks__icon svg {
    display: block;
    width: 40px;
    height: 40px;
}

/* ── Divider ────────────────────────────────────────────────── */
.ar-qlinks__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    pointer-events: none;
}

/* ── Empty state ────────────────────────────────────────────── */
.ar-qlinks--empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-qlinks__empty {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin: 0;
    padding: 24px 0;
}
```

---

## ACF Setup instructions

In ACF → Options Pages, open **Global Options** (slug `global-options`) and add:

| Setting | Value |
|---|---|
| Field type | Repeater |
| Label | Investor Quick Links |
| Field name | `ar_investor_quick_links` |
| Layout | Row |
| Button label | Add Link |

**Subfields:**

| Label | Field name | Type | Notes |
|---|---|---|---|
| Label | `label` | Text | Required |
| Link | `link` | Link | Stores URL + Title + Target |
| Open in new tab | `new_tab` | True/False | Optional override; UI toggle |

---


