```css

/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Source Sans 3", sans-serif;
    min-height: 100vh;
    max-width: 1280px;
    margin: auto;
    background-color: #FAFAFA;

    display: flex;
    flex-direction: column;
}

/* =========================
   GLOBAL ELEMENTS
========================= */
ul {
    list-style: none;
    display: flex;
}

a {
    text-decoration: none;
}

/* =========================
   LAYOUT
========================= */
main,
about {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    flex: 1;
}

content {
    margin: 2rem 0;
}

/* =========================
   HEADER
========================= */
.navbar {
    height: 83px;
    padding: 0 4rem;
    background-color: #fff;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;

    color: #0E0E0E;
    font-size: 1.1rem;
}

.logo img {
    width: 35px;
    height: 35px;
}

li {
    margin: 0 1rem;
}

li a {
    color: #0E0E0E;
    text-transform: uppercase;
    font-weight: 500;
}

li a:hover,
li a.active {
    border-bottom: 1.5px solid #000;
}

/* =========================
   ABOUT PAGE
========================= */
.about-me,
.about-content,
.recent,
.featured-blog,
.blog-container {
    grid-column: 1 / -1;
}

.about-me {
    padding: 2rem 4rem;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    justify-items: center;

    grid-template-areas:
        "image title title"
        "image descr descr";
}

.about-content {
    padding: 1rem 10rem;
    margin: 0;
}

.avatar {
    grid-area: image;
    width: 180px;
    margin: 0;
    border-radius: 50%;
}

.about-title {
    grid-area: title;
    margin: 0;
    justify-self: start;
    align-self: flex-end;
}

.about-description {
    grid-area: descr;
    margin: 10px 0;
    align-self: flex-start;
}

.recent {
    text-align: center;
}

/* =========================
   FEATURED BLOG
========================= */
.featured-blog {
    min-height: 55vh;
    padding: 4rem;
    margin-bottom: 3rem;

    color: #fff;
    background: url(images/blog-image-hero.png) center / cover no-repeat;

    display: flex;
    flex-direction: column;
    justify-content: end;
}

.featured-blog h2 {
    margin: 0;
    font-size: 2.5rem;
}

.featured-blog p {
    margin: 0;
    max-width: 70%;
    font-size: 1rem;
    word-spacing: 1.1px;
}

.featured-blog a {
    color: #fff;
}

.featured-blog a:hover {
    text-decoration: underline;
}

.featured-blog .blog-description {
    color: #fff;
}

/* =========================
   SINGLE BLOG PAGE
========================= */
.blog-content {
    padding: 0 4rem;
}

#blog-img {
    display: block;
    width: 90vw;
    max-width: 1200px;
    margin: auto;
}

.single-blog .blog-date,
.single-blog .blog-title {
    padding: 0 4rem;
}

/* =========================
   BLOG GRID
========================= */
.blog-container {
    padding: 1.5rem;
    gap: 1.5rem;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    justify-items: center;
    align-items: center;
}

.blog {
    text-align: center;
}

.blog-image {
    max-width: 100%;
    border-radius: 5px;
}

.blog-date,
.blog-title,
.blog-description {
    margin: 5px 0;
}

.blog-container .blog-image,
.blog-container .blog-date,
.blog-container .blog-title,
.blog-container .blog-description {
    width: 100%;
    max-width: 320px;
}

.blog-container .blog-date,
.blog-container .blog-title,
.blog-container .blog-description {
    margin-inline: auto;
    text-align: left;
}

.blog-description {
    max-width: 80%;
    color: #505050;
}

/* =========================
   FOOTER
========================= */
footer {
    width: 100%;
    min-height: 15vh;
    margin-top: 3rem;

    background-color: #202020;
    color: #ECECEC;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

footer h3,
footer p {
    margin: 0;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 560px) {

    /* header */
    .navbar {
        padding: 0 1rem;
    }

    .navbar h3 {
        font-size: 1.1rem;
    }

    ul {
        width: 55%;
        padding: 0;
        justify-content: end;
    }

    ul li {
        padding: 0;
        font-size: 1rem;
        text-align: center;
    }

    /* featured */
    .featured-blog {
        max-height: 70vh;
        padding: 2rem;
        margin-bottom: 5px;
        background: url(images/article-image-hero.png) center / cover no-repeat;
    }

    .featured-blog h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .featured-blog p {
        max-width: 100%;
    }

    /* blog */
    .blog-container {
        grid-template-columns: 1fr;
        margin: 0;
    }

    .blog-image {
        display: block;
        min-width: 100%;
        margin: auto;
    }

    /* about */
    .about-me {
        margin-top: 2rem;
        padding: 1.5rem;
        gap: 1rem;

        grid-template-columns: 1fr;
        grid-template-areas:
            "image"
            "title"
            "descr";

        justify-items: start;
        align-items: start;
    }

    .about-description {
        margin: 0;
    }

    .about-content {
        padding: 1.5rem;
    }

    /* single blog */
    .blog-content,
    .single-blog .blog-date,
    .single-blog .blog-title {
        padding: 0 1.5rem;
    }

    /* misc */
    .recent {
        margin-top: 50px;
        line-height: 0;
    }

    footer {
        min-height: 15vh;
    }
}