/* ===== Profile Page Base ===== */
.profile {
    --maxw: 1120px;
    --gap: 24px;
    --radius: 16px;
    --shadow: 0 8px 24px rgba(0,0,0,0.06);
    --muted: #6b7280; /* slate-500 */
    --text: #0f172a;  /* slate-900 */
    --brand: #0ea5e9; /* sky-500 (προσαρμόσιμη) */
  
    color: var(--text);
    margin: 0 auto;
    max-width: var(--maxw);
    padding: 40px 20px 80px;
  }
  
  .breadcrumb {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .breadcrumb a {
    color: var(--muted);
    text-decoration: none;
  }
  .breadcrumb a:hover { text-decoration: underline; }
  
  /* ===== HERO ===== */
  .profile__hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--gap);
    align-items: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 32px;
  }
  .profile__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    background: #f1f5f9;
  }
  .profile__headings .profile__name {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    margin: 0 0 4px;
  }
  .profile__role {
    margin: 0 0 12px;
    color: var(--muted);
    font-weight: 500;
  }
  .profile__tags, .profile__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
  }
  .profile__tags li {
    background: #f1f5f9;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  .profile__links a {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
  }
  .profile__links a:hover { text-decoration: underline; }
  
  /* ===== Sections ===== */
  .profile__intro,
  .profile__highlights,
  .profile__experience,
  .profile__education,
  .profile__skills {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
  }
  .profile__intro h2,
  .profile__highlights h2,
  .profile__experience h2,
  .profile__education h2,
  .profile__skills h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.45rem;
  }

  p[itemprop="description"] {
    margin:0;
    color:var(--ink-700);
    font-size:1.3em;
    line-height: initial;
 }

article.highlight {
     font-size: 1.2rem;
     line-height: 1.8rem;
 }
 
  
  /* ===== Timeline ===== */
  .timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid #e5e7eb;
  }
  .timeline__item {
    position: relative;
    padding: 0 0 18px 16px;
    margin-left: 10px;
  }
  .timeline__item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 4px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--brand);
  }
  .timeline__head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
  }
  .timeline__role { margin: 0; font-weight: 700; }
  .timeline__date { color: var(--muted); font-size: 0.9rem; }
  .timeline__desc { margin: 6px 0 0; color: #334155; }
  
  /* ===== Education ===== */
  .edu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }
  .edu-list li strong { font-weight: 700; }
  
  /* ===== Skills / Chips ===== */
  .chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    list-style: none;
    margin: 0;
  }
  .chip {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
  }
  
  /* ===== CTA ===== */
  .profile__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    background: linear-gradient(90deg, #f8fafc, #eef2ff);
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    margin-top: 28px;
  }
  .profile__cta .btn { white-space: nowrap; }
  
  /* ===== Buttons (basic if not present globally) ===== */
  .btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
  }
  .btn--primary {
    background: var(--brand);
    color: #fff;
  }
  .btn--primary:hover { filter: brightness(0.95); }
  
  /* ===== Responsive ===== */
  @media (max-width: 900px) {
    .profile__hero {
      grid-template-columns: 160px 1fr;
    }
  }
  @media (max-width: 640px) {
    .profile__hero {
      grid-template-columns: 1fr;
      text-align: left;
    }
    .profile__media img {
      height: 200px;
    }

    .profile__cta {
      flex-direction: column;
      align-items: stretch;
    }
  }