/* Hebrew Date Widget v2 */

.hdw-wrapper {
    direction: rtl;
    font-family: inherit;
    line-height: 1.6;
}

/* ── Row layouts ── */
.hdw-hebrew-row,
.hdw-greg-row,
.hdw-time-row {
    display: flex;
    align-items: baseline;
    gap: 0.4em;
    flex-wrap: wrap;
}

/* Inline (both dates side by side) */
.hdw-inline-row {
    display: flex;
    align-items: baseline;
    gap: 0.3em;
    flex-wrap: wrap;
}

/* ── Labels ── */
.hdw-label-hebrew,
.hdw-label-greg,
.hdw-label-time {
    font-weight: 600;
    opacity: 0.72;
    font-size: 0.85em;
    flex-shrink: 0;
}

/* ── Date values ── */
.hdw-hebrew-date,
.hdw-greg-date {
    font-size: 1em;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

/* Loading shimmer */
.hdw-loading {
    opacity: 0.45;
}

/* Separator between inline dates */
.hdw-separator {
    opacity: 0.45;
    font-size: 0.9em;
}

/* ── Time ── */
.hdw-time {
    font-size: 1em;
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.03em;
}
