/**
 * AstroUtah Events – Front-end Styles
 * Version: 1.0.0
 */

.au-event-modal,
.au-events-list,
.au-upcoming-events-widget {
    --ev-bg-card:    var(--au-bg-card,    #161b22);
    --ev-bg:         var(--au-bg,         #0d1117);
    --ev-border:     var(--au-border,     #30363d);
    --ev-text:       var(--au-text,       #e6edf3);
    --ev-muted:      var(--au-text-muted, #8b949e);
    --ev-primary:    var(--au-primary,    #4f8ef7);
    --ev-danger:     var(--au-danger,     #f85149);
    --ev-success:    var(--au-success,    #3fb950);
    --ev-radius:     var(--au-radius,     8px);
    --ev-radius-sm:  var(--au-radius-sm,  4px);
    --ev-shadow:     var(--au-shadow,     0 4px 24px rgba(0,0,0,.4));
    --ev-transition: 0.18s ease;
}

/* Settings toolbar */
.au-events-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.au-events-tab-subtitle {
    font-size: 13px;
    color: var(--astroutah-text-secondary, #9ca3af);
    margin: 0;
}

/* Events list */
.au-events-list { display: flex; flex-direction: column; gap: 8px; }
.au-events-loading { display: flex; align-items: center; justify-content: center; min-height: 120px; }

/* Empty state */
.au-events-empty { text-align: center; padding: 40px 20px; color: var(--astroutah-text-secondary, #9ca3af); }
.au-events-empty__icon { font-size: 40px; margin-bottom: 12px; opacity: .4; }
.au-events-empty h3 { font-size: 15px; font-weight: 600; color: var(--astroutah-text-primary, #e5e7eb); margin: 0 0 6px; }
.au-events-empty p { font-size: 13px; margin: 0 0 16px; }

/* Event card */
.au-event-card {
    display: flex;
    align-items: stretch;
    background: var(--astroutah-bg-tertiary, #1f2937);
    border: 1px solid var(--astroutah-border-light, #374151);
    border-radius: var(--astroutah-radius-md, 8px);
    overflow: hidden;
    transition: border-color var(--ev-transition);
}
.au-event-card:hover { border-color: var(--astroutah-accent-blue, #60a5fa); }

.au-event-card__stripe { width: 4px; flex-shrink: 0; background: var(--astroutah-accent-blue, #60a5fa); }
.au-event-card--observation .au-event-card__stripe { background: #10b981; }
.au-event-card--imaging     .au-event-card__stripe { background: #a855f7; }

.au-event-card__body { flex: 1; padding: 12px 14px; min-width: 0; }
.au-event-card__header { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 4px; }
.au-event-card__title { flex: 1; font-size: 14px; font-weight: 600; color: var(--astroutah-text-primary, #e5e7eb); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin: 0; }
.au-event-card__meta { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--astroutah-text-secondary, #9ca3af); flex-wrap: wrap; }
.au-event-card__countdown { font-weight: 600; color: var(--astroutah-accent-blue, #60a5fa); }
.au-event-card__countdown--today { color: #10b981; }
.au-event-card__countdown--past { color: var(--astroutah-text-tertiary, #6b7280); }
.au-event-card__type-badge { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 2px 7px; border-radius: 20px; background: rgba(96,165,250,.1); color: var(--astroutah-accent-blue, #60a5fa); }
.au-event-card--observation .au-event-card__type-badge { background: rgba(16,185,129,.1); color: #10b981; }
.au-event-card--imaging     .au-event-card__type-badge { background: rgba(168,85,247,.1); color: #a855f7; }
.au-event-card__notes { font-size: 12px; color: var(--astroutah-text-secondary, #9ca3af); margin: 6px 0 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-event-card__reminder { font-size: 11px; color: var(--astroutah-accent-gold, #fbbf24); display: flex; align-items: center; gap: 3px; }

.au-event-card__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px 10px; border-left: 1px solid var(--astroutah-border-light, #374151); flex-shrink: 0; }
.au-event-card__action-btn { background: transparent; border: none; border-radius: 4px; color: var(--astroutah-text-secondary, #9ca3af); cursor: pointer; padding: 5px; display: flex; align-items: center; justify-content: center; transition: background var(--ev-transition), color var(--ev-transition); line-height: 1; }
.au-event-card__action-btn:hover { background: rgba(255,255,255,.06); color: var(--astroutah-text-primary, #e5e7eb); }
.au-event-card__action-btn--delete:hover { background: rgba(239,68,68,.1); color: #f87171; }

/* System event callout */
.au-system-event-callout { background: rgba(96,165,250,.07); border: 1px solid rgba(96,165,250,.2); border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--astroutah-text-secondary, #9ca3af); margin-bottom: 16px; }
.au-system-event-callout strong { color: var(--astroutah-text-primary, #e5e7eb); }
.au-system-event-callout__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--astroutah-accent-blue, #60a5fa); flex-shrink: 0; }

/* Spinner */
.au-events-spinner { display: flex; align-items: center; justify-content: center; padding: 32px; }
.au-spinner-ring { width: 28px; height: 28px; border: 3px solid var(--astroutah-border-light, #374151); border-top-color: var(--astroutah-accent-blue, #60a5fa); border-radius: 50%; animation: au-spin .7s linear infinite; }
@keyframes au-spin { to { transform: rotate(360deg); } }

/* Modal overlay + box */
.au-event-modal { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; }
.au-event-modal--open { display: flex; }
.au-event-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.65); cursor: pointer; }
.au-event-modal__box { position: relative; background: var(--ev-bg-card); border: 1px solid var(--ev-border); border-radius: var(--ev-radius); width: 520px; max-width: calc(100vw - 32px); max-height: calc(100vh - 48px); overflow-y: auto; padding: 24px 28px 28px; box-shadow: var(--ev-shadow); z-index: 1; }
.au-event-modal__box--sm { width: 400px; }

.au-event-modal__header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.au-event-modal__title { display: flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 700; color: var(--ev-text); margin: 0; flex: 1; }
.au-event-modal__close { background: none; border: none; color: var(--ev-muted); font-size: 22px; line-height: 1; cursor: pointer; padding: 0; transition: color var(--ev-transition); margin-left: auto; }
.au-event-modal__close:hover { color: var(--ev-text); }

/* Modal form fields */
#au-event-form .au-field { margin-bottom: 16px; }
#au-event-form .au-field label { display: block; font-size: 12px; font-weight: 600; color: var(--ev-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .04em; }
#au-event-form .au-field input[type="text"],
#au-event-form .au-field input[type="date"],
#au-event-form .au-field input[type="time"],
#au-event-form .au-field select,
#au-event-form .au-field textarea {
    width: 100%; padding: 9px 12px; background: var(--ev-bg) !important; border: 1px solid var(--ev-border) !important; border-radius: var(--ev-radius-sm); color: var(--ev-text) !important; font-size: 14px; box-sizing: border-box; transition: border-color var(--ev-transition); font-family: inherit; -webkit-appearance: none;
}
#au-event-form .au-field input:focus,
#au-event-form .au-field select:focus,
#au-event-form .au-field textarea:focus { outline: none !important; border-color: var(--ev-primary) !important; box-shadow: 0 0 0 2px rgba(79,142,247,.2) !important; }
#au-event-form .au-field textarea { resize: vertical; min-height: 80px; }
#au-event-form .au-field select option { background: #1c2330; color: #e6edf3; }
#au-event-form .au-field input::placeholder,
#au-event-form .au-field textarea::placeholder { color: #484f58 !important; opacity: 1; }
.au-required { color: var(--ev-danger); }
.au-form-hint { font-size: 11px; color: #484f58; margin: 4px 0 0; }
.au-form-hint-inline { font-size: 11px; color: #484f58; font-weight: 400; text-transform: none; letter-spacing: 0; }
.au-form-row { display: flex; gap: 12px; }

/* Reminder toggle */
.au-event-reminder-field { background: rgba(255,255,255,.02); border: 1px solid var(--ev-border); border-radius: var(--ev-radius-sm); padding: 12px 14px; }
.au-checkbox-label { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--ev-text); user-select: none; }
.au-checkbox-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ev-primary); flex-shrink: 0; cursor: pointer; margin: 0; }
.au-event-reminder-options { margin-top: 10px; padding-left: 26px; }
.au-event-reminder-options select { width: 100%; padding: 7px 10px; background: var(--ev-bg) !important; border: 1px solid var(--ev-border) !important; border-radius: var(--ev-radius-sm); color: var(--ev-text) !important; font-size: 13px; font-family: inherit; }

/* Form footer + error */
.au-event-form-error { background: rgba(248,81,73,.1); border: 1px solid rgba(248,81,73,.3); border-radius: var(--ev-radius-sm); color: #f85149; font-size: 13px; padding: 9px 12px; margin-bottom: 16px; }
.au-event-form-footer { display: flex; justify-content: flex-end; gap: 10px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--ev-border); }
.au-event-delete-msg { font-size: 14px; color: var(--ev-muted); margin: 0 0 20px; line-height: 1.6; }
.au-event-delete-msg strong { color: var(--ev-text); }
.au-btn--danger { background: var(--ev-danger) !important; color: #fff !important; border-color: var(--ev-danger) !important; }
.au-btn--danger:hover { background: #dc2626 !important; }

/* Upcoming widget */
.au-upcoming-events-widget { background: var(--astroutah-bg-secondary, #19181F); border: 1px solid var(--astroutah-border-light, #374151); border-radius: 12px; overflow: hidden; }
.au-upcoming-header { background: linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%); padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #60a5fa; }
.au-upcoming-header-title { font-size: 13px; font-weight: 700; color: #fff; }
.au-upcoming-header-sub { font-size: 10px; color: rgba(255,255,255,.65); }
.au-upcoming-list { padding: 4px 0; }
.au-upcoming-item { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-bottom: 1px solid var(--astroutah-bg-tertiary, #1f2937); transition: background .15s; border-left: 3px solid transparent; }
.au-upcoming-item:last-child { border-bottom: none; }
.au-upcoming-item:hover { background: rgba(255,255,255,.03); border-left-color: var(--astroutah-accent-blue, #60a5fa); }
.au-upcoming-item__icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; background: rgba(96,165,250,.1); }
.au-upcoming-item--moon_phase    .au-upcoming-item__icon { background: rgba(251,191,36,.1); }
.au-upcoming-item--eclipse       .au-upcoming-item__icon { background: rgba(239,68,68,.08); }
.au-upcoming-item--personal      .au-upcoming-item__icon,
.au-upcoming-item--observation   .au-upcoming-item__icon,
.au-upcoming-item--imaging       .au-upcoming-item__icon { background: rgba(168,85,247,.1); }
.au-upcoming-item__content { flex: 1; min-width: 0; }
.au-upcoming-item__title { font-size: 13px; font-weight: 600; color: var(--astroutah-text-primary, #e5e7eb); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.au-upcoming-item__sub { font-size: 11px; color: var(--astroutah-text-secondary, #9ca3af); margin-top: 1px; }
.au-upcoming-item__countdown { text-align: right; flex-shrink: 0; }
.au-upcoming-item__days { font-size: 14px; font-weight: 700; color: var(--astroutah-accent-blue, #60a5fa); line-height: 1; }
.au-upcoming-item__days-label { font-size: 10px; color: var(--astroutah-text-secondary, #9ca3af); }
.au-upcoming-item__days--today { font-size: 11px; font-weight: 700; color: #10b981; }

/* Responsive */
/* =============================================================================
   TABLET BREAKPOINT (601px – 900px)
   ============================================================================= */

@media (min-width: 601px) and (max-width: 900px) {

    /* Toolbar: allow filter controls to wrap to a second row */
    .au-events-toolbar { flex-wrap: wrap; gap: 8px; }

    /* Event card actions: reduce padding so they don't eat card width */
    .au-event-card__actions { padding: 8px 8px; gap: 2px; }

    /* Card title: allow truncation to kick in sooner */
    .au-event-card__title { font-size: 13px; }

    /* Modal: widen to use more of the tablet viewport */
    .au-event-modal__box { width: calc(100vw - 48px); padding: 20px 20px 24px; }

    /* Form rows in the modal: 2-col wraps to prevent overflow */
    .au-form-row { flex-wrap: wrap; }
    .au-form-row > .au-field { flex: 1 1 calc(50% - 6px); }

    /* Upcoming widget: shrink countdown column */
    .au-upcoming-item__countdown { font-size: 11px; }
}

@media (max-width: 600px) {
    .au-events-toolbar { flex-direction: column; align-items: flex-start; }
    .au-event-modal__box { padding: 18px 16px 20px; }
    .au-form-row { flex-direction: column; gap: 0; }
    .au-event-card__actions { flex-direction: row; padding: 0 8px; border-left: none; border-top: 1px solid var(--astroutah-border-light, #374151); }
}

/* ============================================================================
   CELESTIAL DASHBOARD — CALLOUT STRIP
   Sits between the info panel and the clock on the right viz panel.
   ============================================================================ */

.ucd-events-callout {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0 12px;
}

.ucd-events-callout__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    border-left: 3px solid rgba(96,165,250,.4);
    background: rgba(96,165,250,.06);
    font-size: 13px;
}

.ucd-events-callout__item--personal {
    border-left-color: rgba(168,85,247,.5);
    background: rgba(168,85,247,.06);
}

.ucd-events-callout__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: .8;
}

.ucd-events-callout__text {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.ucd-events-callout__text strong {
    color: #e5e7eb;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.ucd-events-callout__when {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
}

.ucd-events-callout__badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 2px 6px;
    border-radius: 20px;
    background: rgba(168,85,247,.15);
    color: #c084fc;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================================
   SETTINGS — EVENTS SUB-TABS
   ============================================================================ */

.au-events-subtabs {
    display: flex;
    gap: 2px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--astroutah-border-light, #374151);
    padding-bottom: 0;
}

.au-events-subtab {
    padding: 8px 16px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--astroutah-text-secondary, #9ca3af);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color .15s, border-color .15s;
    margin-bottom: -1px;
    font-family: inherit;
}

.au-events-subtab:hover { color: var(--astroutah-text-primary, #e5e7eb); }

.au-events-subtab--active {
    color: var(--astroutah-accent-blue, #60a5fa);
    border-bottom-color: var(--astroutah-accent-blue, #60a5fa);
}

.au-events-subtab-panel { display: none; }
.au-events-subtab-panel--active { display: block; }

/* Filter chips row */
.au-events-filter-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.au-events-filter-chip {
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--astroutah-border-light, #374151);
    background: transparent;
    color: var(--astroutah-text-secondary, #9ca3af);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: all .15s;
    font-family: inherit;
}

.au-events-filter-chip:hover {
    border-color: var(--astroutah-accent-blue, #60a5fa);
    color: var(--astroutah-text-primary, #e5e7eb);
}

.au-events-filter-chip--active {
    background: rgba(96,165,250,.12);
    border-color: var(--astroutah-accent-blue, #60a5fa);
    color: var(--astroutah-accent-blue, #60a5fa);
}

/* Source attribution link inside upcoming card */
.au-event-source-link {
    font-size: 11px;
    color: var(--astroutah-accent-blue, #60a5fa);
    text-decoration: none;
    opacity: .7;
}
.au-event-source-link:hover { opacity: 1; text-decoration: underline; }

/* ============================================================================
   DASHBOARD — ACCORDION GROUP & DETAIL PANEL
   ============================================================================ */

/* Open by default — no collapsed class on this group */
.au-ucd-events-group {
    border-bottom: 2px solid var(--astroutah-accent-blue, #60a5fa);
}

/* Personal event badge inside accordion item subtitle */
.au-ucd-personal-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 1px 5px;
    border-radius: 20px;
    background: rgba(168,85,247,.15);
    color: #c084fc;
    margin-left: 4px;
    vertical-align: middle;
}

/* Observing tip block in right panel detail */
.au-ucd-observing-tip {
    background: rgba(16,185,129,.07);
    border: 1px solid rgba(16,185,129,.2);
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 14px;
}

.au-ucd-tip-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #10b981;
    margin-bottom: 6px;
}

.au-ucd-tip-text {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0;
}

/* Source attribution line at bottom of detail */
.au-ucd-source-line {
    font-size: 11px;
    color: #6b7280;
    margin-top: 12px;
}

/* ============================================================================
   DASHBOARD — EVENT CLOCK REPLACEMENT
   Sits inside .ucd-clock-section when an upcoming event is selected.
   ============================================================================ */

.au-event-clock-replacement {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px 18px;
    min-height: 264px;
    gap: 0;
    /* Match .ucd-clock-wrapper card */
    background: #19181F;
    border-radius: 12px;
    border: 1px solid #374151;
    /* Smooth in */
    animation: au-ecr-fadein 0.2s ease;
}

@keyframes au-ecr-fadein {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0);   }
}

/* Restore button — top-right corner */
.au-ecr-restore-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #4b5563;
    background: none;
    border: none;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 4px;
    transition: color 0.15s;
    line-height: 1;
}
.au-ecr-restore-btn:hover { color: #9ca3af; }

/* Canvas */
.au-ecr-canvas {
    display: block;
    margin-top: 6px;
}

/* Stats grid — 3-column by default, 2-column variant */
.au-ecr-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    margin-top: 14px;
}
.au-ecr-stats--2col {
    grid-template-columns: repeat(2, 1fr);
}
.au-ecr-stat {
    background: #111827;
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
}
.au-ecr-stat-val {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}
.au-ecr-stat-lbl {
    font-size: 10px;
    color: #6b7280;
    margin-top: 3px;
}

/* Color helpers */
.au-ecr-stat--amber  { color: #fbbf24; }
.au-ecr-stat--blue   { color: #60a5fa; }
.au-ecr-stat--red    { color: #f87171; }
.au-ecr-stat--green  { color: #34d399; }
.au-ecr-stat--purple { color: #a78bfa; }
.au-ecr-stat--muted  { color: #9ca3af; font-size: 13px; }

/* Type badge (eclipse) */
.au-ecr-badge {
    font-size: 11px;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 12px;
    border: 1px solid;
    margin-bottom: 6px;
    display: inline-block;
}

/* Note line (solstice) */
.au-ecr-note {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    margin-top: 8px;
}

/* Meteor shower hero */
.au-ecr-hero {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 6px;
}
.au-ecr-hero-num {
    font-size: 62px;
    font-weight: 700;
    line-height: 1;
}
.au-ecr-hero--red  { color: #f87171; }
.au-ecr-hero-unit  { font-size: 16px; color: #9ca3af; }
.au-ecr-hero-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-top: -6px;
}
.au-ecr-bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 12px;
}
.au-ecr-bar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.au-ecr-bar-lbl { font-size: 11px; color: #6b7280; }
.au-ecr-bar-val  { font-size: 12px; font-weight: 600; }

/* Planet name hero */
.au-ecr-planet-name {
    text-align: center;
    margin: 8px 0 2px;
}
.au-ecr-planet-title {
    font-size: 26px;
    font-weight: 700;
    color: #e5e7eb;
    line-height: 1;
}
.au-ecr-planet-sub {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

/* Countdown ring (personal / observation / imaging) */
.au-ecr-ring-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}
.au-ecr-ring-inner {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.au-ecr-ring-num  { font-size: 42px; font-weight: 700; line-height: 1; }
.au-ecr-ring-unit { font-size: 11px; color: #6b7280; margin-top: 2px; }
.au-ecr-countdown-date {
    font-size: 14px;
    font-weight: 600;
    color: #e5e7eb;
    margin-top: 10px;
}
.au-ecr-countdown-when {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
    text-align: center;
}

/* Generic date fallback */
.au-ecr-date-big    { text-align: center; margin-top: 4px; }
.au-ecr-date-month  { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #6b7280; }
.au-ecr-date-day    { font-size: 76px; font-weight: 700; line-height: 1; }
.au-ecr-generic-when  { font-size: 13px; color: #9ca3af; margin-top: 6px; }
.au-ecr-generic-title { font-size: 12px; color: #6b7280; margin-top: 3px; }