* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, sans-serif;
}

body {
  background: #0b0b0b;
  color: #eaeaea;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #151515;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

.profile {
  text-align: center;
  grid-row: span 2;
}

.profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.title {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}

.intro {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

h3 {
  margin-bottom: 12px;
}

ul {
  padding-left: 18px;
}

ul li {
  margin-bottom: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  background: #1f1f1f;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

.icon-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-chips div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 2px; /* very light spacing */
}

.icon-chips img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.icon-chips span {
  font-size: 14px;
  color: #ddd;
}

.icon-chips div:hover img {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.25));
}
.card a {
  color: #ddd;
  text-decoration: none;
}

.card a:hover {
  color: #fff;
  text-decoration: underline;
}