.bio-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
}

/* Dots Rows */
.bio-dots-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 24px;
  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white-90);
  text-transform: lowercase;
  white-space: pre;
}

.bio-dots-row span {
  flex-shrink: 0;
}

/* Main Content */
.bio-content {
  box-sizing: border-box;
  width: 100%;

  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: var(--white-20);
  text-transform: lowercase;
}

.bio-content p {
  margin: 0;
  line-height: 20px;
}

/* Section Headers */
.bio-header {
  color: var(--white-20);
}

/* Highlighted Keywords */
.bio-highlight {
  color: var(--white-90);
}

/* Three dots ellipsis - lower opacity by default, full on hover */
.bio-highlight.bio-ellipsis {
  color: var(--white-40) !important;
  cursor: pointer;
  transition: color 0.2s ease;
}

.bio-highlight.bio-ellipsis:hover {
  color: var(--white-90) !important;
}

/* Comments */
.bio-comment {
  color: var(--white-20);
  display: inline-block;
  text-indent: -3ch;
  padding-left: 3ch;
}

/* Social Links */
.bio-link {
  color: var(--white-40);
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.3s ease;
  border-radius: 2px;
  padding: 0 2px;
}

.bio-link:hover {
  color: var(--white-90);
  background-color: rgba(255, 255, 255, 0.09);
}

/* Case Links */
.bio-case-link {
  color: var(--white-40);
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.2s ease;
  display: inline-block;
  border-radius: 2px;
  padding: 0 2px;
  line-height: 20px;
  margin: 0;
  box-sizing: border-box;
}

.bio-case-link:hover {
  background-color: rgba(255, 255, 255, 0.09);
  color: var(--white-90);
}

.bio-case-link::selection {
  background-color: rgba(255, 208, 0, 0.09);
  color: var(--white-90);
}

/* Project Links (for freelance projects with preview) */
.bio-project-link {
  color: var(--white-40);
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline-block;
  white-space: nowrap;
  padding: 2px 4px 2px 1px;
  margin: -2px -3px -2px 0;
  line-height: 20px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.bio-project-link:hover {
  color: var(--white-20);
}

/* Project comma - always 90% opacity */
.project-comma {
  color: var(--white-90);
}

/* Rotating line container - whole line is hover zone */
.bio-rotating-line {
  display: inline;
  cursor: pointer;
}

/* Rotating text words (design, study, copy) - interactive preview words */
.bio-rotating-text {
  color: var(--white-40);
  cursor: pointer;
  transition: color 0.2s ease;
  display: inline;
}

.bio-rotating-text:hover {
  color: var(--white-20);
}

/* Arrows between words - always 90% opacity */
.bio-arrow {
  color: var(--white-90);
  display: inline;
  cursor: default;
  user-select: none;
}



/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .bio-comment {
    font-size: 14px;
    line-height: 19px;
  }
}
