/* ── RÓLAM OLDAL ─────────────────────────────────
   Világos, „windowsos" stílus – lásd css/base.css palettáját. */

.about-profile {
  text-align: center;
  margin-bottom: 28px;
}

.about-profile__photo {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 22%;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-md);
  display: block;
  margin: 0 auto 16px;
}

.about-profile__name {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
}

.about-profile__role {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 6px;
}

.about-section {
  margin-bottom: 36px;
}

.about-section__eyebrow {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.about-section h2 {
  font-family: var(--font-title);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.about-section p:last-child { margin-bottom: 0; }

.about-section p a {
  color: var(--gold);
}

/* ── IDŐVONAL ──────────────────────────────────── */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.timeline li:last-child { border-bottom: none; }

.timeline__year {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  line-height: 1.4;
}

.timeline__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* ── KIEMELT DOBOZ (pl. AI-együttműködés) ───────── */
.about-highlight {
  background: linear-gradient(160deg, var(--accent-soft), var(--surface) 65%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.about-highlight h2 {
  font-family: var(--font-title);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 12px;
}

.about-highlight p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-soft);
  margin: 0;
}

/* ── KAPCSOLAT CTA ─────────────────────────────── */
.about-cta {
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: center;
}

.about-cta p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.6;
}

.about-cta__mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 14px 30px;
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: background 0.15s, transform 0.12s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0,103,192,0.25);
  word-break: break-all;
}

.about-cta__mail:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,103,192,0.32);
}

@media (max-width: 600px) {
  .about-section p { font-size: 16px; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; }
  .timeline__year { font-size: 15px; }
  .timeline__text { font-size: 16px; }
  .about-cta__mail { font-size: 16px; padding: 13px 22px; }
}
