/* ===============================
Memory Cards
===============================*/

.memory-card{
  padding:32px;
  border-radius:18px;

  background: var(--os-surface-elevated);
  border:1px solid var(--os-border-soft);

  display:flex;
  flex-direction:column;
  gap:12px;

  transition:.25s ease;
}

.memory-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--os-shadow-elevated);
}

.memory-icon{
  width:44px;
  height:44px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:12px;

  background:var(--os-accent-soft);
  color:var(--os-accent);
}

.memory-title{
  font-size:18px;
  font-weight:600;
  color:var(--os-text-primary);
}

.memory-desc{
  font-size:14px;
  color:var(--os-text-muted);
}