.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.site-header__inner {
    align-items: center;
    display: flex;
    gap: 18px;
    min-height: 58px;
    justify-content: space-between;
}

.site-title {
    color: var(--color-accent);
    font-size: 1.22rem;
    font-weight: 850;
    text-decoration: none;
}

.primary-navigation ul,
.site-footer ul {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-navigation a,
.site-footer a {
    color: #4b5563;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 17px 8px;
    text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
    color: var(--color-accent);
}

.header-search {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 6px;
    max-width: 560px;
}

.header-search input {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    flex: 1;
    font-size: 0.92rem;
    height: 34px;
    padding: 0 12px;
}

.header-search button,
.account-button {
    align-items: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    position: relative;
}

.header-search button span {
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    content: "";
    height: 11px;
    width: 11px;
}

.header-search button::before {
    background: var(--color-accent);
    content: "";
    height: 7px;
    position: absolute;
    right: 9px;
    top: 20px;
    transform: rotate(45deg);
    width: 2px;
}

.account-button {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.account-button::before {
    background: #fff;
    border-radius: 50%;
    content: "";
    height: 8px;
    position: absolute;
    top: 8px;
    width: 8px;
}

.account-button::after {
    border: 2px solid #fff;
    border-radius: 999px 999px 0 0;
    border-bottom: 0;
    content: "";
    height: 8px;
    position: absolute;
    top: 18px;
    width: 16px;
}

.content-band {
    padding: 42px 0;
}

.content-band--muted {
    background: var(--color-soft);
}

.site-footer {
    background: var(--color-ink);
    color: #fff;
    padding: 32px 0;
}

.site-footer__inner {
    align-items: flex-start;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.site-footer a,
.site-footer .affiliate-notice {
    color: #d8dee6;
}

.post-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.prose {
    max-width: 780px;
}
