.contact-channels[hidden],
.contact-channel[hidden] {
  display: none !important;
}

.contact-channels {
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-channels-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.contact-channels-label::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: #63e4e2;
}

.contact-channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.contact-channel {
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

a.contact-channel:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 228, 226, 0.55);
  background: rgba(99, 228, 226, 0.1);
}

.contact-channel span,
.contact-channel strong {
  display: block;
}

.contact-channel span {
  margin-bottom: 0.28rem;
  color: #63e4e2;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.contact-channel strong {
  overflow-wrap: anywhere;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

@media (max-width: 620px) {
  .contact-channel-grid {
    grid-template-columns: 1fr;
  }
}
