/* --------------------------
   Links Wrapper
-------------------------- */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* YouTube and Twitch side by side */
.streams {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Individual links/cards */
.links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--card);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(88, 101, 242, 0.2);
}

.links a:hover {
  background: var(--card-hover);
  box-shadow: 0 0 18px rgba(88, 101, 242, 0.7);
  transform: translateY(-2px);
}

/* --------------------------
   Icon Sizes
-------------------------- */

/* Default medium icon inside icon-link */
.icon-link .icon {
  width: var(--icon-size-medium);
  height: var(--icon-size-medium);
  object-fit: contain;
}

/* Small icons override */
.icon-small {
  width: var(--icon-size-small) !important;
  height: var(--icon-size-small) !important;
  object-fit: contain;
}

/* Inline icon + text row */
.icon-row {
  display: flex;
  flex-direction: row;
  align-items: center;  /* vertical centering */
  gap: 8px;
}

.icon-row img {
  display: block;       /* prevents inline baseline misalignment */
  margin-top: -2px;
}

.icon-row span {
  margin: 0px;
  line-height: 1;       /* tight vertical alignment */
}

/* --------------------------
   Bandcamp Inline Adjustments
-------------------------- */
.bandcamp-inline {
  display: flex !important;       /* force flex layout */
  flex-direction: row !important; /* horizontal layout */
  align-items: center;            /* vertical center */
  justify-content: flex-start;    /* left align icon + text */
  gap: 8px;                       /* spacing between icon and text */
  text-align: left;
}
