.related {
    padding: 8rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.ecard {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    text-decoration: none;
}

.eimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecard:hover .eimg {
    transform: scale(1.05);
}

.eov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 11, 6, 0.85), transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.etitle {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    margin: 0.5rem 0 0;
}

/* ── Light mode: multiply-blend overlay matching homepage editorial cards ── */
html.light .related .eov {
    background: transparent;
}

html.light .related .eov::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232, 217, 188, 0.85) 0%, rgba(232, 217, 188, 0.25) 55%, transparent 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

html.light .related .eov .etitle {
    color: var(--parchment);
    position: relative;
}

html.light .related .eov .meta-bar-cat {
    color: var(--amber);
    position: relative;
}

/* ── Responsive: match homepage editorial card font sizes ── */
@media (max-width: 768px) {
    .related .etitle {
        font-size: 1.1rem;
    }

    .related .eov {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .related .etitle {
        font-size: 0.95rem;
    }

    .related .eov {
        padding: 1.2rem;
    }
}

/* CATEGORY CHIPS Section */
.wander {
    padding-bottom: 8rem;
    background: var(--bg);
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.chip {
    padding: 0.8rem 2rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--surface);
    transform: translateY(-2px);
}