/* === Quick links row (below hero) === */
.quick-links {
    width: 100%;
    position: relative;
    z-index: 2;
    margin-top: -48px;
    background: rgba(29,66,136,0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.quick-links__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.quick-links__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: Inter;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
    white-space: nowrap;
}

/* chevron arrow after each link */
.quick-links__item::after {
    content: "\203A";
    font-size: 1.4em;
    line-height: 1;
    opacity: 0.85;
    margin-left: 4px;
    display: inline-flex;
    align-items: center;
    transition: opacity .15s ease, transform .15s ease;
}

.quick-links__item:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

.quick-links__item:hover {
    background: rgba(62,176,73,0.2);
    color: #3eb049;
    text-decoration: none;
}

.quick-links__item:hover svg:first-child {
    color: #3eb049;
}

.quick-links__item:focus-visible {
    outline: 2px solid #1d4288;
    outline-offset: -2px;
}

.quick-links__item svg:first-child {
    color: #fff;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

@media (max-width: 767px) {
    .quick-links {
        margin-top: 0;
        background: #1d4288;
    }

    .quick-links__inner {
        justify-content: space-evenly;
        gap: 0;
    }

    .quick-links__item {
        flex-direction: column;
        gap: 6px;
        padding: 12px 10px;
        font-size: 0.65rem;
        font-weight: 500;
        text-align: center;
    }

    .quick-links__item::after {
        display: none;
    }

    .quick-links__item svg:first-child {
        width: 22px;
        height: 22px;
        padding: 10px;
        box-sizing: content-box;
        background: rgba(255,255,255,0.12);
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.2);
    }
}
