.links-main {
    display: flex;
    justify-content: center;
    padding: 4rem 1rem;
    min-height: 70vh;
}

.links-card {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 1.75rem;
    text-align: center;
}

.links-eyebrow {
    font-family: "Space Mono", monospace;
    font-size: .75rem;
    opacity: .6;
    margin-bottom: .5rem;
}

.links-sub {
    margin: .75rem 0 2rem;
    opacity: .75;
    font-size: .95rem;
}

.link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.link-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .9rem 1.1rem;
    border: 1px solid var(--border, #333);
    background: var(--bg-panel, #111);
    text-align: left;
    transition: transform .15s ease, border-color .15s ease;
}

.link-item:hover {
    transform: translateX(4px);
    border-color: currentColor;
}

.link-item span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.link-item strong {
    font-family: "Big Shoulders Display", sans-serif;
    font-size: 1.05rem;
    letter-spacing: .02em;
}

.link-item small {
    font-family: "Space Mono", monospace;
    font-size: .75rem;
    opacity: .6;
}