/* ── Experiences Page ── */

.exp-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.exp-section { display: flex; flex-direction: column; gap: 16px; }

.exp-section-title {
  font-size: 22px;
  font-family: 'Georgia', serif;
  color: #3d1a24;
  display: flex;
  align-items: center;
  gap: 8px;
}
.exp-section-title .star-pink { font-size: 15px; color: #e8798a; }

.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.exp-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 4px 24px rgba(200,100,120,0.18);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-role {
  font-size: 16px;
  font-family: 'Georgia', serif;
  color: #3d1a24;
  font-weight: 600;
}

.exp-date {
  font-size: 13px;
  color: #e8798a;
  font-weight: 500;
}

.exp-desc {
  font-size: 13.5px;
  color: #7a4a55;
  line-height: 1.65;
  flex: 1;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

/* ── Skill Garden ── */
.skill-garden-section {
  background: #fff8f9;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
}

.skill-garden-title {
  font-size: 24px;
  font-family: 'Georgia', serif;
  color: #3d1a24;
  margin-bottom: 6px;
}

.skill-garden-sub {
  font-size: 14px;
  color: #b07080;
  margin-bottom: 24px;
  font-style: italic;
}

.skill-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.skill-tab {
  background: #fff;
  border: 1.5px solid #ffd0da;
  border-radius: 20px;
  padding: 9px 22px;
  font-size: 14px;
  font-family: 'Georgia', serif;
  color: #5a2d3a;
  cursor: pointer;
  transition: all 0.2s;
}
.skill-tab.active {
  background: #e8798a;
  color: #fff;
  border-color: #e8798a;
}
.skill-tab:hover:not(.active) { background: #fff0f3; }

.skill-panel {
  display: none;
}
.skill-panel.active { display: block; }

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 12px 0;
}

.skill-tag {
  background: #fff0f3;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13.5px;
  color: #5a2d3a;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ffd8e0;
}
.skill-tag .star-pink { font-size: 11px; color: #e8798a; }

@media (max-width: 640px) {
  .exp-grid { grid-template-columns: 1fr; }
}
