/* ── Supporters widget ──────────────────────────────────────────────────── */

.dsw-supporters {
  font-family: inherit;
}

.dsw-supporters__header {
  margin-bottom: 24px;
}

.dsw-supporters__title {
  margin: 0 0 4px;
  font-size: 2rem;
  font-weight: 800;
  color: #1a5faf;
  line-height: 1.1;
}

.dsw-supporters__subtitle {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a5faf;
  line-height: 1.3;
}

/* ── Timeline list ──────────────────────────────────────────────────────── */

.dsw-supporters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Vertical connecting line through avatar centres */
.dsw-supporters__list::before {
  content: '';
  position: absolute;
  left: 24px; /* half of avatar width (48px) */
  top: 24px;  /* start at centre of first avatar */
  bottom: 24px;
  width: 1px;
  background: #ccc;
  z-index: 0;
}

.dsw-supporters__item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  position: relative;
}

/* ── Avatar circle ──────────────────────────────────────────────────────── */

.dsw-supporters__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #aaa;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ── Name + amount ──────────────────────────────────────────────────────── */

.dsw-supporters__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dsw-supporters__name {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.dsw-supporters__amount {
  font-size: 0.95rem;
  color: #555;
}

/* ── Tree image ─────────────────────────────────────────────────────────── */

.dsw-supporters__tree {
  flex-shrink: 0;
}

.dsw-supporters__tree img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}
