/* ========== STILI HUB / INDEX PAGE ========== */
.hub-excerpt {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 3rem;
    line-height: 1.8;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

.hub-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
}

.hub-card {
    display: flex;
    flex-direction: column;
    background: #111;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1.8rem 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hub-card:hover {
    background: #1a1a1a;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.hub-card-type {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 0.5rem;
}

.hub-card-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #c9a87b;
    margin-bottom: 0.5rem;
}

.hub-card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-muted);
}