#daily-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--text-muted);
}

#streak-display {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 2px 8px;
  font-size: 13px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}

#featured-section { margin-bottom: 28px; }
#all-section { margin-bottom: 20px; }

.daily-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}

.daily-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s;
}
.daily-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.daily-card.done { opacity: 0.75; }

.daily-card-thumb {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.daily-card-thumb svg {
  width: 100%;
  height: 100%;
  display: block;
}

.daily-card-name {
  padding: 6px 8px 7px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.done-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #4caf50;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.featured-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #ff9800;
  color: #fff;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
}
