@charset "utf-8";
/* ***********************************************************************
 *
 *  File:   links.css
 *
 *  Brief:
 *
 *  Author: Jomar Hønsi, 2012-2026
 *
 * ************************************************************************/

span.links {
    color: var(--fg-link, #1a5fa8);
}

a.links {
    color: var(--fg-link, #1a5fa8);
    font-size: inherit;
    font-weight: 600;
    text-decoration: none;
    text-underline-offset: 3px;
    margin: 0;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a.links:visited {
    color: #4e5f91;
}

a.links:hover,
a.links:focus-visible {
    color: #123f72;
    text-decoration: underline;
    text-decoration-color: rgba(26, 95, 168, 0.45);
}

a.links:focus-visible {
    border-radius: 3px;
    outline: 2px solid rgba(74, 111, 165, 0.35);
    outline-offset: 2px;
}

table.links {
    width: 100%;
    border: 1px solid #ded5c2;
    border-spacing: 0;
    border-collapse: separate;
    border-radius: 8px;
    margin: 18px 0 24px 0;
    overflow: hidden;
    background-color: #fffdf8;
    box-shadow: 0 10px 24px rgba(40, 38, 30, 0.08);
    color: var(--std-text, #1a1a2e);
    font-size: 0.95rem;
    line-height: 1.45;
}

table.links th,
table.links tr:first-child td {
    text-align: left;
    vertical-align: bottom;
    padding: 9px 12px;
    border-bottom: 1px solid #d4c9b5;
    background-color: #ece7d6;
    color: #403a2d;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

tr.links {
    background-color: #fffdf8;
    transition: background-color 0.15s ease;
}

table.links tbody tr.links:nth-child(odd) {
    background-color: #f8f4e9;
}

table.links tbody tr.links:hover {
    background-color: #eef4fb;
}

td.links,
td.linksc {
    text-align: left;
    vertical-align: top;
    font-size: inherit;
    border: 0;
    border-top: 1px solid #ebe3d3;
    margin: 0;
    padding: 10px 12px;
}

table.links tbody tr:first-child + tr.links td {
    border-top: 0;
}

table.links tbody tr.links td:first-child {
    width: 2.75rem;
    text-align: center;
    color: #6f675a;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

table.links tbody tr.links td:nth-child(3) {
    color: #5c554b;
}

table.links tbody tr.links td:last-child {
    color: #3e3931;
}

caption.links {
    caption-side: top;
    text-align: left;
    color: #1a1a3e;
    width: auto;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin: 0 0 8px 0;
    padding: 0;
}

span.source {
    display: block;
    padding-left: 0;
    color: #675f52;
    font-size: 0.88rem;
    line-height: 1.35;
}

table.links p {
    margin: 0;
    padding: 0;
    text-align: left;
    line-height: inherit;
}

@media (max-width: 720px) {
    table.links {
        display: block;
        overflow-x: auto;
        font-size: 0.9rem;
    }

    table.links tbody {
        display: table;
        min-width: 640px;
        width: 100%;
    }

    td.links,
    td.linksc,
    table.links th,
    table.links tr:first-child td {
        padding: 9px 10px;
    }
}