/* ── About Section ── */
.about p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.js {
  background: var(--highlight-bg);
  padding: 1px 5px;
  border-radius: 2px;
  font-weight: 600;
}

/* ── Timeline Eras ── */
.era {
  margin-bottom: 32px;
}

.era .year-range {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.era .company-name {
  font-family: 'Zodiak', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--heading);
  display: block;
  margin-bottom: 8px;
}

/* ── Skills / Tech ── */
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.skills-list span {
  font-size: 0.8rem;
  color: var(--badge-text);
  font-weight: 600;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px var(--badge-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Meme section ── */
.meme-section {
  text-align: center;
}

.meme-section img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 8px;
}

.meme-section .meme-caption {
  font-size: 0.8rem;
  color: var(--text-faint);
  font-style: italic;
}

/* ── Footer ── */
.footer-note {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-faint);
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--footer-border);
}