/* Мессенджеры */
:root {
  /* брендовые, но вынесены в токены */
  --im-tg: #229ed9;
  --im-wa: #25d366;
}

.fos__im {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.im {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;

  color: var(--btn-fg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.im:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

/* Брендовые фоны */
.im--tg {
  background: var(--im-tg);
}

.im--wa {
  background: var(--im-wa);
}

.im__ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--btn-fg) 18%, transparent 82%);
  display: grid;
  place-items: center;
  flex: 0 0 28px;
}

.im__ico img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
}

/* Responsive (им-кнопки) */
@media (max-width: 680px) {
  .im {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .im {
    transition: none;
  }
}
