body.archive #primary, body.archive .content-area {
    max-width: 760px;
    margin: 0 auto;
    padding-top: calc(var(--site-header-h) + 2rem);
}

body.archive .page-header {
    margin: 0 auto 3rem;
    text-align: center;
    font-family: 'Zen Kurenaido';
}

body.archive .entry-title {
    font-family: 'Zen Kurenaido', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: .2rem 0 .4rem;
}

.entry-title a {
    color: #338998;
    text-decoration: none;
}

body.archive .hentry, body.archive .post {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    transition: transform .15s 
ease, box-shadow .2s 
ease;
    width: fit-content;
}


body.archive .archive-list {
    --col-gap: 1.2rem;
    --row-gap: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--row-gap) var(--col-gap);
}

body.archive .hentry .entry-wrap, body.archive .post .entry-wrap {
    padding: 1rem .4rem;
    display: grid;
}

body.archive .hentry .entry-summary, body.archive .post .entry-summary {
    color: #1A474C;
    font-size: .9rem;
    line-height: 1.6;
    margin-top: .2rem;
    margin-bottom: .4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-tags a {
    display: inline-block;
    text-decoration: none;
    font-size: .8rem;
    border: 1px solid #338998;
    color: #338998;
    padding: .2rem;
    font-weight: 500;
    line-height: 1;
}

.post-tags a:hover {
    color: #fff;
	background-color: #338998;
}

@media (max-width: 768px) {
body.archive #primary, body.archive .content-area {
    width: 94%;
    margin: auto;
}
	body.archive .archive-list {
    grid-template-columns: 1fr;
}
}