.fast-links {
  float: left;

  width: 100%;
  max-width: 320px;

  margin: 8px 28px 24px 0;
  padding: 18px;

  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.006)), var(--card);

  border: 1px solid var(--line);
  border-radius: 15px;

  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.fast-links--right {
  float: right;
  margin: 8px 0 24px 28px;
}

.fast-links--left {
  float: left;
}

.clear {
  clear: both;
}

/* ---------- Title ---------- */

.fast-links__title {
  margin: 0 0 16px;
  padding-bottom: 12px;

  color: var(--text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;

  border-bottom: 1px solid var(--line);
}

/* ---------- List ---------- */

.fast-links__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fast-links__item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 9px 4px;

  color: var(--muted);

  border-radius: 8px;

  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.fast-links__item:hover {
  background: rgba(255, 49, 90, 0.05);
}

.fast-links__item::before {
  content: '';

  flex-shrink: 0;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow: 0 0 8px rgba(255, 49, 90, 0.35);
}

.fast-links__number {
  display: none;
}

.fast-links__text {
  display: block;

  color: var(--muted);

  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  transition: color 0.18s ease;
}

.fast-links__item:hover .fast-links__text {
  color: var(--text);
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .fast-links,
  .fast-links--left,
  .fast-links--right {
    float: none;

    max-width: 100%;

    margin: 22px 0;
  }

  .fast-links {
    padding: 16px;
  }

  .fast-links__title {
    margin-bottom: 14px;
  }

  .fast-links__text {
    white-space: normal;
  }
}
