.page-list .post {
    margin: 3em 0;
}

.post .excerpt {
    margin: 1em 0;
    font-size: 0.9em;
    color: var(--color-gray);
}

.post-link {
    color: var(--color-black);
}

.featured-items {
    padding: 1em 0;
    display: flex;
    overflow-x: scroll;
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
}

.featured-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-item:not(:last-child) {
    margin-right: 15px;
}

.featured-items img {
    object-fit: contain;
    height: 145px;
}

.featured-links {
    display: flex;
    flex-wrap: wrap;
    margin: calc(1em - 4px) -4px;
}

.featured-links .featured-link {
    display: block;
    margin: 4px;
    padding: 0.5em;
    border-radius: 6px;
    color: var(--color-theme);
    background-color: var(--color-theme-gray);
    font-size: 0.8em;
    text-decoration: none;
}

.featured-links .featured-link.publisher::before {
    margin-right: 4px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f02d";
}

.featured-links .featured-link.label::before {
    margin-right: 4px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f02b";
}

.featured-links .featured-link.search::before {
    margin-right: 4px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f002";
}

.tags {
    display: flex;
    flex-wrap: wrap;
}

.tags .tag-link {
    display: block;
    margin-right: 0.5em;
    margin-bottom: 0.5em;
    color: var(--color-theme);
    text-decoration: none;
}

.tag-name {
    color: var(--color-gray);
}

.tag-link .tag-name {
    color: inherit;
}

.tag-name:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f292";
}

@media (min-width: 660px) {
    .featured-items {
        width: 100%;
	position: initial;
    }

    .featured-items img {
        object-fit: contain;
        height: 170px;
    }
}
