/* ============================================
   Drawing Maps — Homepage
   ============================================ */

.index-header {
    padding-top: 120px;
    padding-bottom: 80px;
}

.index-header h1 {
    margin-bottom: 16px;
}

.index-subtitle {
    font-weight: 300;
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.65;
}

/* --- Post List --- */

.post-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid var(--rule);
}

.post-item {
    padding: 40px 0;
    border-bottom: 1px solid var(--rule-light);
}

.post-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    border-bottom: none;
}

.post-item a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 8px;
    border-radius: 2px;
}

.post-title {
    font-weight: 300;
    font-size: 1.35rem;
    letter-spacing: -0.3px;
    line-height: 1.35;
    margin-bottom: 10px;
    transition: color var(--duration) var(--ease);
}

.post-item a:hover .post-title {
    color: var(--accent);
}

.post-excerpt {
    font-weight: 300;
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
    max-width: 540px;
}

.post-meta {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 12px;
}

/* --- Responsive --- */

@media (max-width: 520px) {
    .index-header {
        padding-top: 72px;
        padding-bottom: 56px;
    }
}
