/* =========================================================
   CRACKERS & CUCUMBERS
   Reusable Components
   ========================================================= */


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;

    width: min(88%, var(--site-width));
    margin: 0 auto;
    padding: 24px 0;

    background-color: var(--color-background);
}

.site-logo {
    display: block;
    flex-shrink: 0;
    line-height: 0;
}

.site-logo img {
    display: block;
    width: 330px;
    max-width: 100%;
    height: auto;
}

.primary-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.75rem;
}

.primary-navigation a {
    color: var(--color-heading);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible {
    opacity: 0.6;
    text-decoration: none;
}

.menu-toggle {
    display: none;
}


/* =========================================================
   ARTWORK ACTIONS
   ========================================================= */

.artwork-actions {
    position: relative;
    top: -110px;
    align-self: start;

    padding-left: 0;
    border-left: 0;
}

.artwork-actions .text-link {
    margin-top: 0;
    border-bottom: 0;
}