body:not(.single) .entry.post,
body:not(.single) .entry.travel {
    display: grid;
    grid: auto-flow / 1fr 3fr;
    row-gap: var(--vm-grid-gap-half);
    column-gap: var(--vm-grid-gap);
    margin-bottom: var(--vm-space-xl);
}

body:not(.single) .entry.post noscript,
body:not(.single) .entry.travel noscript {
    display: none;
}

body:not(.single) .entry.post.has-post-thumbnail .wp-post-image,
body:not(.single) .entry.travel.has-post-thumbnail .wp-post-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

body:not(.single) .entry.post:not(.has-post-thumbnail) .entry-content-wrap,
body:not(.single) .entry.travel:not(.has-post-thumbnail) .entry-content-wrap {
    grid-column: span 2;
}

body:not(.single) article.post .entry-meta,
body:not(.single) article.travel .entry-meta {
    display: none;
}

body:not(.single) .entry.post .entry-title,
body:not(.single) .entry.travel .entry-title {
    font-size: 1.125rem;
    margin-bottom: 0;
    padding-bottom: 0.5rem;
    font-weight: 700;
    border-bottom: 1px solid var(--vm-color-border);
}

body:not(.single) .entry.post .entry-title .vmsubtitle,
body:not(.single) .entry.travel .entry-title .vmsubtitle {
    font-size: 0.75em;
    font-weight: 400;
    display: block;
    margin-bottom: 0.125rem;
}

body:not(.single) .post .entry-header p:empty,
body:not(.single) .travel .entry-header p:empty {
    display: none;
}

body:not(.single) .entry.post .entry-content,
body:not(.single) .entry.travel .entry-content {
    font-size: 0.875rem;
    line-height: 1.44;
}

body:not(.single) .entry.post .entry-content p,
body:not(.single) .entry.travel .entry-content p {
    margin-bottom: 0;
}

body:not(.single) .entry.post .vm-entry-meta,
body:not(.single) .entry.travel .vm-entry-meta {
    color: var(--vm-color-muted);
    font-size: 0.75rem;
}

.vm-preview-container {
    display: flex;
    flex-direction: column;
}

.vm-preview-container {
    line-height: 0;
    text-decoration: none;
}

.vm-preview-container img {
    margin-bottom: 0.5rem;
}

.vm-preview-container .vm-entry-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.entry-content-wrap .vm-entry-meta {
    display: none;
    flex-direction: row;
}

.entry-content-wrap .vm-entry-meta span:not(:last-child):after {
    content: '/';
    display: inline-block;
    padding: 0 0.25rem;
}

.vm-loop-banner {
    margin-bottom: var(--vm-space-xl);
}

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

}

@media all and (max-width: 680px) {
    body:not(.single) .entry.post,
    body:not(.single) .entry.travel {
        grid: auto-flow / 1fr;
    }

    body:not(.single) .entry.post:not(.has-post-thumbnail) .entry-content-wrap,
    body:not(.single) .entry.travel:not(.has-post-thumbnail) .entry-content-wrap {
        grid-column: initial;
    }

    .vm-preview-container .vm-entry-meta {
        display: none;
    }

    .entry-content-wrap .vm-entry-meta {
        display: flex;
    }
}