/* =========================================
   Base Layout
========================================= */

body {
    margin: 0;
    padding: 0;

    background: white;
    color: black;

    font-family: sans-serif;
}

/* =========================================
   Page Layout
========================================= */

.page-layout {
    display: flex;
    justify-content: center;

    width: 100%;
}

/* =========================================
   Main Content Column
========================================= */

.content {
    width: 100%;
    max-width: 760px;

    padding:
        40px
        20px
        40px
        20px;

    box-sizing: border-box;
}

/* =========================================
   Project List
========================================= */

.project-list {
    /*width: 100%;*/
    overflow: hidden;
}

/* =========================================
   Project Row
========================================= */

.project-row {
    display: flex;

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

    gap: 24px;

    /*width: 100%;*/

    padding:
        22px
        0
        22px
        0;

    border-top: 1px solid #d9d9d9;

    text-decoration: none;
    color: inherit;

    box-sizing: border-box;

    overflow: hidden;
}

.project-row:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.project-row:first-child {
    border-top: 0px;
}
/* =========================================
   Left Side
========================================= */

.project-meta {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

/* =========================================
   Title
========================================= */

.project-title {
    margin:
        0
        0
        8px
        0;

    font-size: 2.4rem;
    line-height: 1.2;
    text-decoration: none;
    overflow-wrap: break-word;
}

/* =========================================
   Date
========================================= */

.project-date {
    color: grey;

    font-size: 1.6rem;
    line-height: 1.4;
    text-decoration: none;
}

/* =========================================
   Thumbnail Container
========================================= */

.project-image {
    flex-shrink: 0;
}

/* =========================================
   Thumbnail Image
========================================= */

.project-image img {
    display: block;

    width: 140px;
    height: 90px;

    object-fit: cover;

    border-radius: 4px;
}

/* =========================================
   Hover
========================================= */

.project-row:hover .project-title {
    text-decoration: underline;
}

/* =========================================
   Mobile
========================================= */

@media (max-width: 576px) {

    .content {
        padding:
            10px
            16px
            40px
            16px;
    }

    .project-row {
        gap: 14px;

        padding:
            18px
            0
            18px
            0;
    }

    .project-image img {
        width: 84px;
        height: 64px;
    }

    .project-title {
        font-size: 2rem;
    }

    .project-date {
        font-size: 1rem;
    }

}

/* =========================================
   Tablet
========================================= */

@media (min-width: 577px) and (max-width: 1023px) {

    .project-image img {
        width: 120px;
        height: 80px;
    }

}

/* =========================================
   Large Desktop
========================================= */

@media (min-width: 1200px) {

    .content {
        max-width: 820px;
    }

}