/* Neofetch-style skills */
.neofetch {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.neofetch-logo {
  color: var(--blue);
  font-size: 10px;
  line-height: 1.15;
  white-space: pre;
  flex-shrink: 0;
}

.neofetch-info {
  flex: 1;
  min-width: 0;
}

.neofetch-separator {
  color: var(--surface2);
  margin: 4px 0;
  overflow: hidden;
  white-space: nowrap;
}

.neofetch-row {
  display: flex;
  gap: 8px;
  margin: 3px 0;
  flex-wrap: wrap;
}

.neofetch-row .label {
  color: var(--pink);
  font-weight: 600;
  min-width: 110px;
  flex-shrink: 0;
}

.neofetch-row .value {
  color: var(--subtext1);
}

.neofetch-colors {
  display: flex;
  gap: 4px;
  margin-top: 12px;
}

.neofetch-colors span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

/* Skill ratings */
.skill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.skill-category-title {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.skill-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 10px 0;
}

.skill-name {
  color: var(--subtext1);
  font-size: 0.9rem;
  min-width: 170px;
  flex-shrink: 0;
}

.skill-icons {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.skill-icons .icon {
  width: 20px;
  height: 20px;
}

.skill-icons .filled {
  color: var(--green);
}

.skill-icons .empty {
  color: var(--surface1);
}

.skill-icons .half-wrap {
  display: inline-block;
  width: 10px;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

.skill-icons .half-wrap .icon {
  color: var(--green);
}

.skill-value {
  color: var(--overlay1);
  font-size: 0.85rem;
  min-width: 36px;
}
