/* =========================================
   PORTFOLIO LANDING PAGE
========================================= */

.portfolio-landing {
    width: 100%;
}


/* =========================================
   CATEGORY NAVIGATION
========================================= */

.portfolio-category-nav {
    width: calc(100% - 40px);
    max-width: 1200px;

    margin: 0 auto 55px;
}

.portfolio-category-nav-list {
    display: flex;
    flex-wrap: wrap;

    gap: 20px 42px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.portfolio-category-nav-item {
    margin: 0;
    padding: 0;
}

.portfolio-category-nav-link {
    color: #aaaaaa;

    font-size: 1rem;
    font-style: italic;
    line-height: 1.4;

    text-decoration: none;

    transition: color 0.2s ease;
}

.portfolio-category-nav-link:hover,
.portfolio-category-nav-link:focus-visible {
    color: #555555;

    text-decoration: none;
}


/* =========================================
   CATEGORY SECTIONS
========================================= */

.portfolio-category-sections {
    width: 100%;
}

.portfolio-category-section {
    width: 100%;

    /*
     * Prevent anchored category titles from
     * hiding behind a sticky header.
     */
    scroll-margin-top: 110px;
}


/*
 * The reusable carousel already handles its
 * own internal width and spacing.
 *
 * Add a little separation between categories.
 */
.portfolio-category-section + .portfolio-category-section {
    margin-top: 10px;
}


/* =========================================
   SMOOTH ANCHOR SCROLLING
========================================= */

html {
    scroll-behavior: smooth;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .portfolio-category-nav {
        margin-bottom: 45px;
    }

    .portfolio-category-nav-list {
        gap: 18px 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .portfolio-category-nav {
        width: calc(100% - 40px);

        margin-bottom: 40px;
    }

    .portfolio-category-nav-list {
        gap: 16px 24px;
    }

    .portfolio-category-nav-link {
        font-size: 0.95rem;
    }

    .portfolio-category-section {
        scroll-margin-top: 85px;
    }

}