/* FAQSus Links — Public Styles (injected with wp_head if needed) */

/* [faqsus_link] default style */
a.fql-link {
    color: #2563EB;
    font-weight: 600;
    text-underline-offset: 2px;
    text-decoration: underline;
    transition: color 0.15s;
}

a.fql-link:hover {
    color: #1E40AF;
}

a.fql-link .fql-icon {
    font-size: 0.85em;
}

/* [faqsus_link] with btn classes — inherits from theme */

/* [faqsus_link_list] */
.fql-list-wrap {
    margin: 16px 0;
}

.fql-list-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.fql-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
}

.fql-list.fql-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fql-list.fql-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.fql-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1D4ED8;
    text-decoration: none;
    transition: all 0.15s;
}

.fql-list li a:hover {
    background: #DBEAFE;
    border-color: #93C5FD;
}

.fql-bullet {
    font-size: 0.8rem;
}