@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.about-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem 0 2.5rem;
  border-bottom: 0.5px solid #e5e5e5;
  margin-bottom: 2.5rem;
}

.about-left {
  flex: 1;
}

.about-left h3 {
  font-size: 28px;
  font-weight: 500;
  color: #111;
  margin: 0 0 6px;
}

.about-left strong {
  font-size: 13px;
  font-weight: 400;
  color: #999;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 16px;
}

.about-left p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 0 14px;
}

.about-right {
  flex-shrink: 0;
  width: 280px;
}

.profile-photo {
  width: 280px;
  height: 360px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
  border: 0.5px solid #e5e5e5;
  display: block;
}

.links-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-link {
  font-size: 12px;
  color: #555;
  border: 0.5px solid #ccc;
  border-radius: 8px;
  padding: 5px 12px;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.hero-link:hover {
  border-color: #888;
  color: #111;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #aaa;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 0.5px solid #e5e5e5;
}

.skill-group {
  margin-bottom: 1.5rem;
}

.skill-group strong {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  display: block;
  margin-bottom: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 20px;
  font-weight: 400;
}

.tag-tools  { background: #EAF3DE; color: #27500A; }
.tag-tech   { background: #E6F1FB; color: #0C447C; }
.tag-domain { background: #EEEDFE; color: #3C3489; }

.passion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-bottom: 2rem;
}

.passion-item {
  background: #f8f8f6;
  border-radius: 10px;
  padding: 12px 14px;
}

.passion-item strong {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  display: block;
  margin-bottom: 4px;
}

.passion-item p {
  font-size: 12px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

hr {
  border: none;
  border-top: 0.5px solid #e5e5e5;
  margin: 2.5rem 0;
}
