.post-page {
    max-width: 980px;
}

.post-article {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fffaf4;
    box-shadow: var(--shadow-sm);
    padding: clamp(1.1rem, 2.6vw, 2rem);
}

.post-not-found {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 0.7rem;
}

.post-header {
    display: grid;
    gap: 0.65rem;
}

.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.86rem;
    color: var(--ink-500);
}

.post-breadcrumb a {
    text-decoration: none;
    font-weight: 800;
}

.post-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1;
}

.post-image-wrap {
    margin-top: 1.15rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #e2d8ca;
}

.post-image {
    width: 100%;
    display: block;
}

.post-content {
    margin-top: 1.25rem;
    color: var(--ink-700);
    line-height: 1.82;
    font-size: 1rem;
}

.post-content a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.post-cta {
    margin-top: 1.2rem;
}

.post-footer {
    margin-top: 1.2rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: var(--ink-500);
}
