.site-title {
    font-family: var(--font-title);
    font-size: 1.375rem;
    font-weight: 700;
}

.site-nav ul,
.site-footer-nav ul {
    display: flex;
    gap: 1.5rem;
}

.site-nav a,
.site-footer-nav a {
    font-family: var(--font-ui);
    color: var(--color-text-secondary);
}

.site-nav a:hover,
.site-footer-nav a:hover {
    color: var(--color-text);
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.post-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--color-border);
}

.post-card-excerpt {
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.post-card-tag,
.post-tag {
    font-family: var(--font-ui);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-accent);
}

/* Koenig editor "wide"/"full width" image breakout, relative to the
   720px-constrained .post/.page/.gh-content column. Required by gscan
   (GS050-CSS-KGWW/KGWF) — these classes must appear styled somewhere
   in the theme's CSS, and residents' portraits/photos may reasonably
   want a wider display than the default reading column. */
.kg-width-wide {
    width: 1040px;
    max-width: 1040px;
    margin-left: calc(50% - 520px);
    margin-right: calc(50% - 520px);
}

@media (max-width: 1040px) {
    .kg-width-wide {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

.kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* YouTube auto-embed responsiveness (Ghost generates .kg-embed-card around it) */
.kg-embed-card {
    position: relative;
}

.kg-embed-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
    border-radius: 4px;
}
