/* ================================================================
   Links — the "Links" card and its link-item list styling
================================================================ */
.links-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  transition: background-color 120ms ease;
}

.link-item:last-child {
  border-bottom: none;
}

.link-item:hover {
  background: var(--teal-tint);
}

.link-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -6px var(--teal-30);
}

.link-icon svg {
  width: 19px;
  height: 19px;
}

.link-text {
  flex: 1;
  min-width: 0;
}

.link-title {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.link-sub {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.link-chevron {
  width: 17px;
  height: 17px;
  color: var(--text-secondary);
  flex-shrink: 0;
}