body {
    justify-content: flex-start;
    overflow: auto;
}

.blog-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 3.5rem 2rem 6rem;
}

/* Header */
.blog-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: center;
    opacity: 0;
    animation: up 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.1s;
}

.blog-home-link {
    flex: 1;
    text-align: left;
}

.blog-header-filler {
    flex: 1;
}

.blog-home-link img {
    width: 86px;
    filter: drop-shadow(0 0 14px rgba(232,86,10,0.35));
    transition: filter 0.2s;
}

.blog-home-link:hover img {
    filter: drop-shadow(0 0 22px rgba(232,86,10,0.6));
}

.blog-title {
    flex: 1;
    font-family: 'Black Ops One', sans-serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--bone);
    line-height: 1;
}

.blog-header .rule {
    opacity: 1;
    animation: none;
    margin-top: 1.25rem;
}

/* Post list */
.post-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-item {
    opacity: 0;
    animation: up 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Stagger each post */
.post-item:nth-child(1)  { animation-delay: 0.3s; }
.post-item:nth-child(2)  { animation-delay: 0.4s; }
.post-item:nth-child(3)  { animation-delay: 0.5s; }
.post-item:nth-child(4)  { animation-delay: 0.6s; }
.post-item:nth-child(5)  { animation-delay: 0.7s; }
.post-item:nth-child(n+6){ animation-delay: 0.75s; }

.post-link {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(26,22,18,0.6);
    text-decoration: none;
    color: inherit;
    border-left: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}

.post-link:hover {
    background: rgba(26,22,18,1);
    border-left-color: var(--blood);
}

.post-link:hover .post-name {
    color: var(--bone);
}

.post-link:hover .post-arrow {
    opacity: 1;
    transform: translateX(0);
}

.post-name {
    font-family: 'Black Ops One', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--smoke);
    transition: color 0.2s;
    /* Prevent wrapping pushing date off */
    flex: 1;
    min-width: 0;
}

.post-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.post-date {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(107,96,88,0.5);
    white-space: nowrap;
}

.post-arrow {
    color: var(--blood);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.2s;
}

/* Empty state */
.empty {
    text-align: center;
    padding: 4rem 0;
    opacity: 0;
    animation: up 0.9s cubic-bezier(0.16,1,0.3,1) forwards 0.3s;
}

.empty p {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--smoke);
}

/* Footer stamp inherits from main.css but needs position adjustment */
.stamp {
    position: static;
    display: block;
    text-align: center;
    margin-top: 4rem;
    transform: none;
    left: auto;
}
