/* research.css — Research 業績セクション専用 (#4)
   学術アーカイブ風のダークカード。第一著者(本人)業績はシアンで強調。 */

#research .research__group + .research__group {
  margin-top: var(--space-7);
}

#research .research__group-title {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: var(--space-3);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
#research .research__group-title::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
}

#research .research__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

#research .research__item {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

#research .research__item:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* 第一著者(本人)の業績は左の発光ボーダーで強調 */
#research .research__item--mine {
  border-left: 2px solid var(--accent);
  box-shadow: var(--shadow), -8px 0 24px -16px var(--glow);
}

#research .research__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-3);
  margin-bottom: var(--space-3);
}

#research .research__year {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

#research .research__badge {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  padding: 0.15em 0.7em;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-weak);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}

#research .research__title {
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin-bottom: var(--space-2);
  color: var(--text);
}

#research .research__link {
  color: inherit;
  transition: color 0.18s ease;
}

#research .research__link:hover {
  color: var(--accent);
}

#research .research__authors {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-1);
}

#research .research__authors strong {
  color: var(--accent);
  font-weight: 600;
}

/* 会議名は長い和文を含む“読ませる”情報なので、等幅ではなく sans + sm で可読性を優先 */
#research .research__venue {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.55;
}

#research .research__empty {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
}

@media (prefers-reduced-motion: reduce) {
  #research .research__item {
    transition: none;
  }
  #research .research__item:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  #research .research__item {
    padding: var(--space-4);
  }
}
