/* Morrow v0.7.3 — chronological Home timeline */

.timeline-section{
  margin-top:22px;
}

.timeline-section[hidden]{
  display:none;
}

.timeline-list{
  display:grid;
  gap:12px;
}

.timeline-card{
  margin:0;
}

/* Keep section labels close to the information they introduce. */
.timeline-section .section-title{
  margin-bottom:10px;
}

/* Timeline cards remain compact without removing the assistant's context. */
.timeline-card .card-head{
  margin-bottom:8px;
}

.timeline-card .reason{
  margin-top:8px;
}

@media(max-width:520px){
  .timeline-section{
    margin-top:18px;
  }

  .timeline-list{
    gap:10px;
  }
}


/* v0.7.4 — compact summaries for repeating Later This Month items */
.timeline-summary-card .card-head{
  margin-bottom:10px;
}

.timeline-summary-rows{
  display:grid;
  gap:8px;
  padding:10px 12px;
  border-radius:14px;
  background:#f4f6f8;
}

.timeline-summary-row{
  display:grid;
  grid-template-columns:minmax(72px,auto) minmax(0,1fr);
  gap:10px;
  align-items:start;
  font-size:12px;
  line-height:1.4;
}

.timeline-summary-row strong{
  color:var(--text);
}

.timeline-summary-row span{
  color:var(--muted);
}

@media(max-width:420px){
  .timeline-summary-row{
    grid-template-columns:1fr;
    gap:2px;
  }
}
