.post-hero {
    background: var(--ink);
    padding: 140px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.post-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 80% 60% at 50% 0%,
        rgba(0, 212, 168, 0.15) 0%,
        transparent 60%
    );
}
.post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Jost", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mint);
    text-decoration: none;
    margin-bottom: 24px;
    position: relative;
}
.post-back:hover {
    color: var(--mint-light);
}
.post-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 24px;
    position: relative;
}
.post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}
.post-meta-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 212, 168, 0.4);
}
.post-meta-name {
    font-family: "Jost", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.post-meta-sep {
    color: rgba(255, 255, 255, 0.25);
}
.post-meta-date {
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}
.post-meta-read {
    font-family: "Jost", sans-serif;
    font-size: 0.8rem;
    color: var(--mint);
}
.post-hero-img {
    width: 100%;
    max-width: 900px;
    margin: 48px auto 0;
    display: block;
    border-radius: 4px;
    object-fit: cover;
    max-height: 500px;
}
.post-body-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 24px;
}
.post-body {
    font-family: "Jost", sans-serif;
    font-size: 0.97rem;
    line-height: 1.9;
    color: #444;
}
.post-body p {
    margin-bottom: 1.4rem;
}
.post-body h2,
.post-body h3 {
    font-family: "Playfair Display", serif;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}
.post-body h2 {
    font-size: 1.5rem;
}
.post-body h3 {
    font-size: 1.2rem;
}
.post-body strong {
    color: var(--ink);
    font-weight: 600;
}
.post-body em {
    font-style: italic;
    color: var(--purple);
}
.post-body ul {
    margin: 1rem 0 1.4rem 1.5rem;
}
.post-body ul li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}
.post-body blockquote {
    border-left: 3px solid var(--mint);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: #f7fffe;
    font-style: italic;
    color: var(--mist);
}
.post-tags {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--stone);
}
.post-tags-label {
    font-family: "Jost", sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 12px;
}
.post-tag {
    display: inline-block;
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    background: var(--warm);
    color: var(--purple);
    border: 1px solid rgba(180, 79, 212, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin: 0 4px 6px 0;
    text-decoration: none;
}
.post-tag:hover {
    background: rgba(180, 79, 212, 0.08);
}
.recent-posts {
    background: #faf9f7;
    padding: 64px 24px;
}
.recent-posts-inner {
    max-width: 900px;
    margin: 0 auto;
}
.recent-posts h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 32px;
}
.recent-posts h2 em {
    font-style: italic;
    color: var(--purple);
}
.recent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.recent-card {
    display: flex;
    gap: 16px;
    text-decoration: none;
    background: #fff;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s;
}
.recent-card:hover {
    transform: translateY(-2px);
}
.recent-card img {
    width: 90px;
    height: 68px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}
.recent-card-title {
    font-family: "Playfair Display", serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}
.recent-card-author {
    font-family: "Jost", sans-serif;
    font-size: 0.72rem;
    color: var(--mist);
    margin-top: 6px;
}
@media (max-width: 600px) {
    .recent-grid {
        grid-template-columns: 1fr;
    }
}
