.plans-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plans-title h2 { margin: 4px 0; }
.plan-count {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0dfc6;
  color: var(--brown);
  font-weight: 800;
}
.plan-list { margin-top: 12px; }
.plan-list a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}
.plan-list a strong { color: var(--brown); font-size: 13px; }
.plan-list a small { display: block; color: var(--muted); margin-top: 3px; }
.file-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--brown);
  color: white;
  font-size: 11px;
  font-weight: 900;
}
@media (max-width: 650px) {
  .plan-list a { grid-template-columns: auto 1fr; }
  .plan-list a strong { grid-column: 2; }
}
