/* =========================================
   BLOG STYLES (List & Article)
========================================= */

/* --- Blog List Page --- */
.blog-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.blog-header .s-lbl {
    justify-content: center;
}

.ic.article-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.ic.article-card:hover .ic-rd {
    gap: 12px;
}

.article-meta-list {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--light);
    margin-bottom: 12px;
    display: block;
}

/* Media page image-first card variant */
.ic.media-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mc-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--line);
}

.mc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.ic.media-card:hover .mc-img img {
    transform: scale(1.03);
}

.mc-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.mc-body .ic-h3 {
    margin-bottom: 10px;
    font-size: 16px;
}

.mc-date {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--light);
    margin-top: auto;
    padding-top: 10px;
}

/* --- Individual Article Page --- */
#blog-post {
    padding: 140px 0 100px; /* Space for fixed nav */
    background: var(--bg);
}

.post-container {
    max-width: 720px; /* Optimal reading width */
    margin: 0 auto;
    padding: 0 6%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 40px;
    transition: color .2s ease, transform .2s ease;
}

.back-link:hover {
    color: var(--green);
    transform: translateX(-4px);
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    color: var(--gold);
    letter-spacing: .20em;
    text-transform: uppercase;
}

.post-meta span.date {
    color: var(--light);
}

.post-title {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--green);
    margin-bottom: 40px;
}

.post-rule {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 40px;
}

/* Article Body Typography */
.post-body {
    font-size: 17px;
    line-height: 2.0;
    color: var(--text);
}

.post-body p {
    margin-bottom: 28px;
}

.post-body h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--green);
    margin: 56px 0 20px;
    line-height: 1.3;
}

.post-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 40px 0 16px;
}

.post-body strong {
    font-weight: 600;
    color: var(--green);
}

.post-body blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 24px;
    margin: 40px 0;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--mid);
    line-height: 1.8;
}