.header {
    position: relative;
    width: 100%;
    padding: 16px 5%;
    background-color: var(--whitesmoke);
    display: grid;
    place-items: center;

    .header--inner {
        width: 100%;
        max-width: 800px;
        display: flex;
        place-items: center;
        justify-content: space-between;
        row-gap: 16px;

        .date {
            font-size: 18px;
            color: var(--gray);
        }
    }

    .header--logoBox {
        display: grid;
        justify-content: left;
        align-items: center;
        margin-left: 4px;
        padding-left: 0;
        padding-bottom: 0;

        .header--logo {
            width: 100%;
            /* max-width: 400px; */
        }
    }

    .header--menu-blogList {
        height: 40px;
    }
}

@media screen and (max-width: 1024px) {

    .header--logoBox {
        flex-basis: 224px;
    }
}

@media screen and (max-width: 599px) {

    .header--logoBox {
        flex-basis: 48px;
    }
}

.articleSection{
    display: grid;
    place-items: center;
    padding: 0 5% 64px;
    background-color: var(--whitesmoke);

    .content--inner-small {
        width: 100%;
        max-width: 800px;
    }
    
    .articleBox {
        width: 100%;
        background-color: var(--white);
        display: grid;
        /* place-items: center; */
        row-gap: 32px;
        padding: 32px;
    }

    .img {
        width: 100%;
        max-width: 800px;
    }

    .title {
        font-size: 32px;
        font-weight: bold;
        text-align: left;
    }

    .text {
        font-size: 18px;
        line-height: 1.8;
        text-align: left;
    }
}

@media screen and (max-width: 599px) {
    .articleSection {

        .title {
            font-size: 24px;
        }

        .text {
            font-size: 16px;
        }
    }
}