/* Clever Core — minimal front-end overrides for portfolio grid */

/* Make the <a> wrapper behave as a block so it fills the card */
a.project-block {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Nav menu: match index.html .nav-links list style */
.clever-nav-links {
    display: flex;
    gap: 44px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.clever-nav-links a {
    font-family: "Hanken Grotesk", "Neue Haas Unica", Helvetica, sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: .1em;
    color: var(--chrome, #8EA5A9);
    text-decoration: none;
    transition: color .2s;
}
.clever-nav-links a:hover,
.clever-nav-links li.current-menu-item a {
    color: var(--warm-white, #EDE8DC);
    font-weight: 500;
}
