/* projects-extra.css
   Deltas for the projects coverflow: link buttons on cards + dot wrapping.
   The base coverflow styles live in style.css. */

.cf-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.85rem;
}

.cf-btn {
    display: inline-block;
    padding: 0.32rem 0.7rem;
    border: 1px solid var(--text-color);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-color);
    background: transparent;
    transition: background 0.2s, color 0.2s;
}

.cf-btn:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.dark .cf-btn {
    border-color: #5a4a3e;
}

/* 22 dots need to wrap on narrow screens */
.cf-dots {
    flex-wrap: wrap;
}
