/* WhatsApp icon inline next to phone number */

.contact-phone-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  text-decoration: none !important;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.contact-wa-btn:hover {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
  transform: scale(1.06);
}

.contact-wa-btn__icon {
  display: block;
}
