/* =========================================================
   UNSCROLLED
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   1. GLOBAL VARIABLES
========================================================= */

:root {
    /* Colors */
    --background: #F8F4EF;
    --sand: #DCCBB6;
    --accent: #BF512C;
    --black: #000000;
    --white: #FFFFFF;
    --placeholder: #D9D9D9;

    /* Fonts */
    --font-title: "Cormorant Garamond", serif;
    --font-mono: "DM Mono", monospace;

    /* Desktop layout */
    --page-padding: 40px;
    --content-width: 1360px;

    /* Section labels */
    --section-label-width: 200px;
    --section-label-height: 32px;
}


/* =========================================================
   2. RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;

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

    font-family: var(--font-mono);

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    margin: 0;
    padding: 0;

    font: inherit;

    color: inherit;

    appearance: none;
    -webkit-appearance: none;
}


/* =========================================================
   3. GLOBAL CONTAINER
========================================================= */

.container {
    width: calc(100% - (var(--page-padding) * 2));
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   4. HEADER
========================================================= */

.site-header {
    width: 100%;
    height: 40px;

    display: flex;
    align-items: center;

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


/* =========================================================
   5. MAIN NAVIGATION
========================================================= */

.main-navigation {
    width: calc(100% - (var(--page-padding) * 2));
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;
}

.nav-links {
    grid-column: 2;

    display: flex;
    align-items: center;

    gap: 56px;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;

    line-height: 1;
    letter-spacing: 0.03em;

    text-transform: uppercase;
}

.nav-links a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


/* =========================================================
   6. SEARCH BUTTON
========================================================= */

.search-button {
    grid-column: 3;

    justify-self: end;

    width: 16px;
    height: 16px;

    background: transparent;
    border: none;

    cursor: pointer;
}

.search-button img {
    width: 16px;
    height: 16px;

    object-fit: contain;
}


/* =========================================================
   7. BRAND SECTION
========================================================= */

.brand-section {
    width: 100%;

    padding-top: 44px;
    padding-bottom: 46px;

    background-color: var(--background);

    text-align: center;
}

.brand-title {
    font-family: var(--font-title);

    font-size: 64px;
    font-weight: 700;

    line-height: 0.9;

    letter-spacing: 0.02em;
}

.brand-tagline {
    margin-top: 10px;

    font-family: var(--font-title);

    font-size: 40px;
    font-weight: 400;
    font-style: italic;

    line-height: 1;
}


/* =========================================================
   8. FEATURED SLIDER
========================================================= */

.featured-slider {
    position: relative;

    width: 100%;
    height: 300px;

    background-color: var(--placeholder);

    overflow: hidden;
}

.slider-viewport {
    width: 100%;
    height: 100%;

    overflow: hidden;
}

.slider-track {
    display: flex;

    width: 100%;
    height: 100%;

    transform: translateX(0);

    transition: transform 0.6s ease;
}

.featured-slide {
    min-width: 100%;
    height: 100%;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

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

.featured-title {
    margin: 0 0 12px 0;

    font-family: var(--font-mono);

    font-size: 28px;
    font-weight: 400;

    line-height: 1;

    letter-spacing: 0.08em;

    color: var(--white);
}

.featured-button {
    width: 150px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: var(--white);

    border: none;

    font-family: var(--font-mono);

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    color: var(--black);

    text-transform: lowercase;
}

.slider-arrow {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 40px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    background-color: var(--white);

    border: none;

    color: var(--black);

    cursor: pointer;
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}


/* =========================================================
   9. CATEGORY MARQUEE
========================================================= */

.category-bar {
    width: 100%;
    height: 40px;

    background-color: var(--accent);

    overflow: hidden;

    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: max-content;

    flex-shrink: 0;

    animation: marqueeMove 22s linear infinite;

    will-change: transform;
}

.marquee-content {
    display: flex;
    flex-direction: row;
    align-items: center;

    flex-shrink: 0;

    gap: 56px;

    padding-right: 56px;
}

.marquee-content a {
    display: block;

    flex-shrink: 0;

    font-family: var(--font-mono);

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    color: var(--white);

    text-decoration: none;

    white-space: nowrap;
}

@keyframes marqueeMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   10. LATEST POSTS
========================================================= */

.latest-posts-section {
    width: 100%;

    padding-top: 40px;
    padding-bottom: 70px;

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


/* LATEST POSTS LABEL
   Same dimensions as Most Popular.
   Text sits on the RIGHT side.
*/

.section-label {
    width: var(--section-label-width);
    height: var(--section-label-height);

    margin: 0;
    padding: 0 40px 0 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    background-color: var(--sand);

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1;

    text-transform: lowercase;

    white-space: nowrap;
}


/* latest posts grid */

.latest-posts-grid {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    column-gap: 80px;
}

.latest-post {
    min-width: 0;
}

.latest-post-image {
    display: block;

    width: 100%;
    height: 300px;

    margin-bottom: 18px;

    background-color: var(--placeholder);

    overflow: hidden;
}

.latest-post-image img {
    display: none;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.latest-post-title {
    margin: 0 0 16px 0;

    font-family: var(--font-title);

    font-size: 32px;
    font-weight: 700;

    line-height: 1.05;
}

.latest-post-excerpt {
    width: calc(100% - 170px);

    margin-top: 18px;
    margin-left: 170px;

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   11. READ MORE BUTTON
========================================================= */

.read-more-button {
    width: 152px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent);

    color: var(--white);

    font-family: var(--font-mono);

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    text-transform: lowercase;
}


/* =========================================================
   12. LOAD MORE
========================================================= */

.load-more-container {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 28px;
}

.load-more-button {
    width: 152px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: transparent;

    border: 1px solid var(--accent);

    font-family: var(--font-mono);

    font-size: 11px;
    font-weight: 400;

    cursor: pointer;
}


/* =========================================================
   13. MOST POPULAR
========================================================= */

.popular-posts-section {
    width: 100%;

    padding-bottom: 70px;

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


/* MOST POPULAR LABEL
   Same dimensions as Latest Posts.
   Text sits on the LEFT side.
*/

.popular-section-label {
    width: var(--section-label-width);
    height: var(--section-label-height);

    margin-left: auto;
    margin-right: 0;

    padding: 0 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    background-color: var(--sand);

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1;

    text-transform: lowercase;

    white-space: nowrap;
}


/* popular posts grid */

.popular-posts-grid {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(4, 280px);

    column-gap: 80px;
}

.popular-post-image {
    display: block;

    width: 280px;
    height: 360px;

    margin-bottom: 24px;

    background-color: var(--placeholder);

    overflow: hidden;
}

.popular-post-image img {
    display: none;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.popular-post-title {
    width: 280px;

    margin: 0 0 24px 0;

    font-family: var(--font-title);

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    text-align: left;
}


/* =========================================================
   14. FOOTER
========================================================= */

.site-footer {
    width: 100%;
    height: 311px;

    display: flex;
    align-items: center;
    justify-content: center;

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

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 10px;
}

.footer-navigation a {
    font-family: var(--font-mono);

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    color: var(--white);

    text-transform: uppercase;
}


/* SOCIAL ICONS */

.footer-socials {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 16px;

    margin-top: 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;

    flex: 0 0 16px;
}

.footer-socials img {
    display: block;

    width: 16px;
    height: 16px;

    max-width: 16px;
    max-height: 16px;

    object-fit: contain;
}


/* =========================================================
   15. TABLET
========================================================= */

@media (max-width: 1100px) {

    :root {
        --page-padding: 24px;
    }

    .nav-links {
        gap: 24px;
    }

    .brand-title {
        font-size: 52px;
    }

    .brand-tagline {
        font-size: 34px;
    }

    .popular-posts-grid {
        grid-template-columns: repeat(2, 280px);

        justify-content: center;

        row-gap: 50px;
    }
}


/* =========================================================
   16. MOBILE
========================================================= */

@media (max-width: 700px) {

    :root {
        --page-padding: 16px;
    }

    .site-header {
        height: auto;
        min-height: 40px;

        padding-top: 10px;
        padding-bottom: 10px;
    }

    .main-navigation {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        grid-column: 1;

        gap: 14px;

        overflow-x: auto;
    }

    .nav-links a {
        font-size: 10px;
    }

    .search-button {
        grid-column: 2;
    }

    .brand-section {
        padding-top: 32px;
        padding-bottom: 34px;
    }

    .brand-title {
        font-size: 42px;
    }

    .brand-tagline {
        margin-top: 8px;

        font-size: 28px;
    }

    .featured-slider {
        height: 230px;
    }

    .latest-posts-section {
        padding-top: 40px;
    }

    .section-label {
        width: var(--section-label-width);

        padding-left: 0;
        padding-right: 16px;
    }

    .latest-posts-grid {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        row-gap: 50px;
    }

    .latest-post-excerpt {
        width: 100%;

        margin-left: 0;
    }

    .popular-posts-grid {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        justify-items: center;

        row-gap: 50px;
    }

    .popular-section-label {
        width: var(--section-label-width);

        padding-left: 16px;
        padding-right: 0;
    }
}
/* =========================================================
   17. BLOG POST PAGE
========================================================= */

.post-page {
    background-color: var(--white);
}


/* =========================
   BACK TO HOME
========================= */

.post-back {
    width: 100%;
    height: 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

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

.post-back a {
    grid-column: 2;

    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;

    line-height: 1;
    letter-spacing: 0.03em;

    text-transform: uppercase;
}


/* =========================
   POST HERO
========================= */

.post-hero {
    width: 100%;
    height: 300px;

    display: grid;
    grid-template-columns: 35% 65%;
}


/* title block */

.post-hero-title {
    background-color: var(--sand);

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-right: 40px;
}

.post-hero-title h1 {
    max-width: 320px;

    margin: 0;

    font-family: var(--font-title);

    font-size: 46px;
    font-weight: 600;
    font-style: italic;

    line-height: 0.95;

    text-align: right;

    color: var(--accent);
}


/* hero image placeholder */

.post-hero-image {
    width: 100%;
    height: 100%;

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


/* =========================
   POST CONTENT LAYOUT
========================= */

.post-content-layout {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    padding-top: 48px;
    padding-bottom: 120px;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;

    column-gap: 120px;

    align-items: start;
}


/* =========================
   ARTICLE
========================= */

.post-article {
    min-width: 0;

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}

.post-article p {
    margin: 0 0 24px 0;
}


/* =========================
   SHARE
========================= */

.post-share {
    display: flex;
    align-items: center;

    gap: 16px;

    margin-top: 28px;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 16px;
    height: 16px;
}

.post-share img {
    display: block;

    width: 16px;
    height: 16px;

    max-width: 16px;
    max-height: 16px;

    object-fit: contain;
}


/* =========================
   SIDEBAR
========================= */

.post-sidebar {
    display: flex;
    flex-direction: column;

    gap: 42px;
}


/* sidebar card */

/* =========================
   BLOG POST SIDEBAR
   Same card style as index
========================= */

.post-sidebar {
    display: flex;
    flex-direction: column;

    gap: 48px;
}

.sidebar-post {
    width: 280px;
}

.sidebar-post-image {
    display: block;

    width: 280px;
    height: 360px;

    margin-bottom: 24px;

    background-color: var(--placeholder);

    overflow: hidden;
}

.sidebar-post-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sidebar-post h2 {
    width: 280px;

    margin: 0 0 24px 0;

    font-family: var(--font-title);

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    text-align: left;
}

.sidebar-post .read-more-button {
    width: 152px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--accent);

    color: var(--white);

    font-family: var(--font-mono);

    font-size: 11px;
    font-weight: 400;

    line-height: 1;

    text-transform: lowercase;
}


/* =========================================================
   BLOG POST TABLET
========================================================= */

@media (max-width: 1100px) {

    .post-content-layout {
        grid-template-columns: minmax(0, 1fr) 240px;

        column-gap: 60px;
    }

    .sidebar-post,
    .sidebar-post-image,
    .sidebar-post h2 {
        width: 240px;
    }

    .post-hero-title h1 {
        font-size: 40px;
    }
}


/* =========================================================
   BLOG POST MOBILE
========================================================= */

@media (max-width: 700px) {

    .post-hero {
        height: auto;

        grid-template-columns: 1fr;
    }

    .post-hero-title {
        min-height: 180px;

        justify-content: flex-start;

        padding: 30px 16px;
    }

    .post-hero-title h1 {
        max-width: 100%;

        font-size: 38px;

        text-align: left;
    }

    .post-hero-image {
        height: 220px;
    }

    .post-content-layout {
        width: calc(100% - 32px);

        padding-top: 32px;

        grid-template-columns: 1fr;

        row-gap: 60px;
    }

    .post-sidebar {
        width: 100%;
    }

    .sidebar-post,
    .sidebar-post-image,
    .sidebar-post h2 {
        width: 100%;
    }

    .sidebar-post-image {
        height: 300px;
    }
}
/* =========================================================
   18. CATEGORY PAGE
   Offline / Wellbeing / Creative
========================================================= */

.category-page {
    background-color: var(--white);
}


/* =========================================================
   CATEGORY INTRO
========================================================= */

.category-intro {
    width: 100%;

    padding-top: 40px;
    padding-bottom: 40px;

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


.category-intro-inner {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    display: grid;

    grid-template-columns: 360px 1fr 360px;

    column-gap: 40px;

    align-items: start;
}


/* left image */

.category-image-left {
    width: 360px;
    height: 440px;

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


/* center */

.category-copy {
    min-height: 440px;

    display: flex;
    flex-direction: column;
}


.category-copy h1 {
    margin: 0;

    font-family: var(--font-title);

    font-size: 52px;
    font-weight: 600;
    font-style: italic;

    line-height: 1;

    color: var(--accent);
}


.category-copy p {
    width: 300px;

    margin-top: auto;
    margin-bottom: 20px;

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* right image */

.category-image-right {
    width: 360px;
    height: 220px;

    margin-top: auto;

    align-self: end;

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


/* =========================================================
   CATEGORY POSTS AREA
========================================================= */

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

    padding-top: 56px;
    padding-bottom: 70px;

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


.category-posts-grid {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(4, 280px);

    column-gap: 80px;
    row-gap: 72px;
}


/* =========================================================
   CATEGORY POST CARD
========================================================= */

.category-post {
    width: 280px;
}


.category-post-image {
    display: block;

    width: 280px;
    height: 360px;

    margin-bottom: 24px;

    background-color: var(--placeholder);

    overflow: hidden;
}


.category-post h2 {
    width: 280px;

    margin: 0 0 24px 0;

    font-family: var(--font-title);

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    text-align: left;
}


.category-post .read-more-button {
    width: 152px;
    height: 32px;
}


/* =========================================================
   CATEGORY LOAD MORE
========================================================= */

.category-load-more {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 72px;
}


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

@media (max-width: 1100px) {

    .category-intro-inner {
        grid-template-columns: 1fr 1fr;

        row-gap: 40px;
    }

    .category-image-left {
        width: 100%;
    }

    .category-image-right {
        width: 100%;

        grid-column: 2;
    }

    .category-posts-grid {
        grid-template-columns: repeat(2, 280px);

        justify-content: center;
    }
}


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

@media (max-width: 700px) {

    .category-intro {
        padding-top: 24px;
    }

    .category-intro-inner {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        row-gap: 28px;
    }

    .category-image-left,
    .category-image-right {
        width: 100%;
    }

    .category-image-left {
        height: 420px;
    }

    .category-image-right {
        height: 220px;

        grid-column: auto;

        margin-top: 0;
    }

    .category-copy {
        min-height: auto;
    }

    .category-copy h1 {
        font-size: 44px;
    }

    .category-copy p {
        width: 100%;

        margin-top: 30px;
        margin-bottom: 0;
    }

    .category-posts-grid {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        justify-items: center;
    }

    .category-load-more {
        margin-top: 50px;
    }
}
/* =========================================================
   19. ABOUT PAGE
========================================================= */

.about-page {
    background-color: var(--white);
}


/* =========================================================
   ABOUT MAIN
========================================================= */

.about-main {
    width: 100%;

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


/* =========================================================
   ABOUT LAYOUT
========================================================= */

.about-layout {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    min-height: 760px;

    margin-left: auto;
    margin-right: auto;

    padding-top: 40px;
    padding-bottom: 70px;

    display: grid;

    grid-template-columns: 400px 360px 400px;

    column-gap: 80px;

    align-items: start;
}


/* =========================================================
   LEFT IMAGES
========================================================= */

.about-images {
    position: relative;

    width: 400px;
    height: 620px;
}


/* first / upper image */

.about-image-one {
    position: absolute;

    top: 0;
    left: 0;

    width: 360px;
    height: 480px;

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


/* second / lower overlapping image */

.about-image-two {
    position: absolute;

    top: 380px;
    right: 0;

    width: 360px;
    height: 280px;

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


/* =========================================================
   CENTER CONTENT
========================================================= */

.about-center {
    min-height: 480px;

    display: flex;
    flex-direction: column;
}


.about-center h1 {
    margin: 0;

    font-family: var(--font-title);

    font-size: 52px;
    font-weight: 600;
    font-style: italic;

    line-height: 1;

    color: var(--accent);
}


.about-center p {
    width: 300px;

    margin-top: 90px;

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.about-right {
    width: 400px;
}


.about-image-three {
    width: 400px;
    height: 280px;

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


.about-right p {
    width: 300px;

    margin-top: 40px;
    margin-left: auto;

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


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

@media (max-width: 1100px) {

    .about-layout {
        grid-template-columns: 1fr 1fr;

        column-gap: 50px;
        row-gap: 60px;
    }


    .about-images {
        width: 100%;
    }


    .about-center {
        width: 100%;
    }


    .about-right {
        width: 100%;

        grid-column: 2;
    }


    .about-image-three {
        width: 100%;
    }
}


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

@media (max-width: 700px) {

    .about-layout {
        width: calc(100% - 32px);

        min-height: auto;

        padding-top: 24px;
        padding-bottom: 50px;

        grid-template-columns: 1fr;

        row-gap: 40px;
    }


    .about-images {
        width: 100%;
        height: 540px;
    }


    .about-image-one {
        width: 85%;
        height: 400px;
    }


    .about-image-two {
        width: 75%;
        height: 240px;

        top: 300px;
    }


    .about-center {
        min-height: auto;
    }


    .about-center h1 {
        font-size: 44px;
    }


    .about-center p {
        width: 100%;

        margin-top: 30px;
    }


    .about-right {
        width: 100%;

        grid-column: auto;
    }


    .about-image-three {
        width: 100%;
        height: 240px;
    }


    .about-right p {
        width: 100%;

        margin-top: 30px;
        margin-left: 0;
    }
}
/* =========================================================
   20. LABEL PAGE
========================================================= */

.label-page {
    background-color: var(--white);
}


/* BACK TO HOME */

.label-back {
    width: 100%;
    height: 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

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

.label-back a {
    grid-column: 2;

    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;

    line-height: 1;
    letter-spacing: 0.03em;

    text-transform: uppercase;
}


/* LABEL HEADING */

.label-heading {
    width: 100%;

    padding-top: 40px;
}

.label-title {
    width: 200px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding-right: 40px;

    background-color: var(--sand);

    font-family: var(--font-mono);

    font-size: 12px;
    font-weight: 400;

    line-height: 1;

    text-transform: lowercase;
}


/* POSTS */

.label-posts-section {
    width: 100%;

    padding-top: 48px;
    padding-bottom: 70px;

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

.label-posts-grid {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    display: grid;
    grid-template-columns: repeat(4, 280px);

    column-gap: 80px;
    row-gap: 72px;
}


/* CARD */

.label-post {
    width: 280px;
}

.label-post-image {
    display: block;

    width: 280px;
    height: 360px;

    margin-bottom: 24px;

    background-color: var(--placeholder);

    overflow: hidden;
}

.label-post h2 {
    width: 280px;

    margin: 0 0 24px 0;

    font-family: var(--font-title);

    font-size: 32px;
    font-weight: 700;

    line-height: 1;

    text-align: left;
}


/* LOAD MORE */

.label-load-more {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 72px;
}


/* TABLET */

@media (max-width: 1100px) {

    .label-posts-grid {
        grid-template-columns: repeat(2, 280px);

        justify-content: center;
    }
}


/* MOBILE */

@media (max-width: 700px) {

    .label-heading {
        padding-top: 24px;
    }

    .label-title {
        width: 200px;

        padding-right: 16px;
    }

    .label-posts-grid {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        justify-items: center;
    }

    .label-load-more {
        margin-top: 50px;
    }
}

/* =========================================================
   BLOG POST — DATE + CATEGORY
========================================================= */

.post-meta-row {
    width: calc(100% - 80px);
    max-width: var(--content-width);

    margin-left: auto;
    margin-right: auto;

    padding-top: 28px;

    box-sizing: border-box;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin: 0;
    padding: 0;

    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
}

.post-date,
.post-meta-separator,
.post-category {
    color: var(--black);
}

.post-category {
    text-decoration: none;
}

.post-category:hover {
    opacity: 0.55;
}

@media (max-width: 700px) {

    .post-meta-row {
        width: calc(100% - 32px);
        padding-top: 20px;
    }

}