/* Баннер «К началу» на /apps/.../page/N/ */

.apps-to-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  padding: 10px 14px;
  max-width: 100%;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid rgba(69, 149, 213, 0.28);
  background: linear-gradient(180deg, rgba(69, 149, 213, 0.1), rgba(69, 149, 213, 0.04));
  color: var(--font-color, #374151);
  box-sizing: border-box;
}

.apps-to-start__label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--link-font, #4595d5);
}

.apps-to-start__btn {
  box-sizing: border-box;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(69, 149, 213, 0.35);
  border-radius: 999px;
  padding: 6px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  color: var(--link-font, #4595d5);
  background: var(--bg-primary, #fff);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.apps-to-start__btn:hover {
  background: rgba(69, 149, 213, 0.1);
  border-color: rgba(69, 149, 213, 0.55);
  color: #2563eb;
  text-decoration: none;
}

.apps-to-start__btn:active {
  transform: scale(0.98);
}

[data-theme="dark"] .apps-to-start {
  border-color: rgba(69, 149, 213, 0.35);
  background: linear-gradient(180deg, rgba(69, 149, 213, 0.16), rgba(69, 149, 213, 0.06));
}

[data-theme="dark"] .apps-to-start__btn {
  background: rgba(20, 26, 39, 0.9);
  border-color: rgba(69, 149, 213, 0.45);
}

@media (max-width: 480px) {
  .apps-to-start {
    flex-wrap: wrap;
    padding: 10px 12px;
  }

  .apps-to-start__btn {
    flex: 1 1 100%;
    width: auto;
    text-align: center;
  }
}
