/* Leerhuis Limburg — Heilige Dagen
   Self-contained styling (does not depend on theme variables). */

.llhd {
    --llhd-green: #2a6b35;
    --llhd-blue: #1a3f6f;
    --llhd-gold: #8b7335;
    --llhd-text: #1a1a1a;
    --llhd-muted: #555;
    --llhd-border: #e0ddd6;
    --llhd-border-light: #eceae4;
    margin: 0;
}

.llhd-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.llhd-item {
    display: grid;
    grid-template-columns: minmax(240px, 40%) 1fr;
    column-gap: 28px;
    row-gap: 4px;
    align-items: start;
    padding: 11px 22px;
    background: #fff;
    border: 1px solid var(--llhd-border);
    border-left: 3px solid var(--llhd-border);
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.llhd-name {
    grid-column: 1;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    color: var(--llhd-text);
}

.llhd-date {
    grid-column: 1;
    color: var(--llhd-blue);
    font-size: 14.5px;
    line-height: 1.5;
}

.llhd-meaning {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: start;
    color: var(--llhd-muted);
    font-size: 15px;
    line-height: 1.6;
}

.llhd-hebyear {
    color: var(--llhd-gold);
    font-weight: 600;
    font-size: 0.78em;
    margin-left: 6px;
}

/* Next-up / in-progress accents */
.llhd-item.is-next {
    border-left-color: var(--llhd-green);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.llhd-item.is-now {
    border-left-color: var(--llhd-gold);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.llhd-badge {
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--llhd-green);
    background: #e8f2ea;
    padding: 3px 8px;
    border-radius: 999px;
}

.llhd-badge-now {
    color: var(--llhd-gold);
    background: #f5f0e4;
}

.llhd-empty {
    color: var(--llhd-muted);
    font-style: italic;
}

/* Mobile: stack into single-column cards */
@media (max-width: 700px) {
    .llhd-item {
        grid-template-columns: 1fr;
        row-gap: 6px;
        padding: 16px;
    }

    .llhd-meaning {
        grid-column: 1;
        grid-row: auto;
        align-self: start;
    }

    .llhd-name {
        font-size: 17px;
    }

    .llhd-badge {
        margin-left: 8px;
    }
}
