body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #F8FAFC;
  color: #0F172A;
}

/* ===== LAYOUT ===== */

.page {
  display: flex;
  min-height: 100vh;
}

/* ===== LEFT SIDE ===== */

.left {
  flex: 1;
  padding: 70px 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-pic {
  width: 240px;
  border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.meta {
  color: #64748B;
  margin-bottom: 25px;
  font-size: 15px;
}

/* ===== ICON LINKS ===== */

.links {
  margin-bottom: 30px;
}

.links a {
  margin-right: 18px;
  font-size: 20px;
  color: #2563EB;
  text-decoration: none;
  transition: 0.2s ease;
}

.links a:hover {
  color: #7C3AED;
  transform: translateY(-2px);
}

/* ===== CTA BUTTONS ===== */

.cta {
  margin-top: 10px;
}

.cta a {
  display: inline-block;
  padding: 12px 22px;
  margin-right: 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.2s ease;
}

.primary {
  background: #2563EB;
  color: white;
}

.primary:hover {
  background: #1E40AF;
}

.secondary {
  border: 2px solid #2563EB;
  color: #2563EB;
}

.secondary:hover {
  background: #E0E7FF;
}

/* ===== RIGHT SIDE ===== */

.right {
  flex: 1;
  padding: 70px 90px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead {
  font-size: 21px;
  line-height: 1.9;
  max-width: 650px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1000px) {
  .page {
    flex-direction: column;
  }

  .left, .right {
    padding: 50px 40px;
  }

  .profile-pic {
    width: 200px;
  }
}

/* ========================= */
/* PUBLICATIONS PAGE STYLE  */
/* ========================= */

.pub-page {
  max-width: 900px;
  margin: 70px auto;
  padding: 0 60px;
}

.pub-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.pub-top h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin: 0;
}

.back {
  color: #2563EB;
  text-decoration: none;
  font-weight: 500;
}

.back:hover {
  text-decoration: underline;
}

.pub-page h2 {
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #7C3AED;
}

.pub-item {
  margin-bottom: 28px;
}

.pub-item p {
  font-size: 18px;
  line-height: 1.6;
}

.pub-links {
  margin-top: 6px;
}

.pub-links a {
  margin-right: 14px;
  font-size: 14px;
  color: #2563EB;
  text-decoration: none;
}

.pub-links a:hover {
  text-decoration: underline;
}
