/* r15h actions — Telegram circle + Contact me pill, matched glass */

.actions {
  margin-top: var(--air-glass-actions);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tg-btn,
.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  color: #F4F5F7;
  background: rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 10px 28px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 200ms ease,
    color 160ms ease,
    box-shadow 200ms ease;
}

.tg-btn {
  width: 46px;
  border-radius: 50%;
}

.msg-btn {
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 245, 247, 0.94);
}

.tg-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.tg-btn:hover,
.msg-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 0.64);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 14px 34px rgba(0, 0, 0, 0.52);
}

.tg-btn:focus-visible,
.msg-btn:focus-visible {
  outline: 2px solid rgba(224, 62, 62, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tg-btn:hover,
  .msg-btn:hover { transform: none; }
}
