﻿/* Kontak: two-column contact links */
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
}
.contact small {
  display: block;
  color: var(--muted);
  font: 10px var(--mono);
  margin-bottom: 4px;
}
.contact a:hover {
  color: var(--lime);
}
.contact-icon {
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  color: var(--muted);
}
.contact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact a:hover .contact-icon {
  color: var(--lime);
}
@media (max-width: 650px) {
  .contact {
    gap: 18px;
  }
}
