/* === Home Links Section: Horizontal Layout === */

.link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2em;
  padding: 0.5em 0;
  flex-wrap: wrap;
}

.link-list a {
  font-size: 1.8em;
  display: inline-block;
  transition: transform 0.2s ease, filter 0.3s ease;
  position: relative;
  color: var(--link);
  text-decoration: none;
}

.link-list a:hover {
  transform: scale(1.1);
}

.link-list a::after {
  content: attr(data-label);
  position: absolute;
  top: -2.2em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 0.25em 0.6em;
  border-radius: 6px;
  font-size: 0.7em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.link-list a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.link-group {
  margin-bottom: .5em;
}

.link-group h3 {
  font-size: 1.1em;
  color: var(--text);
  margin-bottom: 0em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

