/* Base Styles */
body {
  background: #E6EFF5 !important;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2C3539;
  line-height: 1.6;
  margin: 0;
}

/* Hero Section */
.hero-section {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(43, 76, 126, 0.9), rgba(43, 76, 126, 0.7)), url('https://www.mnthen.com/images/bg/creator_bg.jpg') center/cover no-repeat;
  color: white;
  padding: 2rem;
  margin-top: 70px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Staff Profile */
.staff-container {
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 24px;
}

.staff-profile {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  border-radius: 12px;
  background-color: transparent;
  padding: 0;
}

.profile-image {
  width: 280px;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #1a365d, transparent);
  margin: 30px 0;
  width: 100%;
  opacity: 0.2;
}

.profile-content h1 {
  font-size: 3rem;
  color: #1a365d;
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.title {
  font-size: 1.4rem;
  color: #4a5568;
  margin-bottom: 30px;
  font-weight: 600;
}

.bio-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #4a5568;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

/* Publications Section */
.publications {
  background-color: #f8fafc;
  padding: 100px 0;
  border-top: 1px solid rgba(26, 54, 93, 0.08);
  border-bottom: 1px solid rgba(26, 54, 93, 0.08);
}

.publications-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.publications h2 {
  font-size: 3rem;
  color: #1a365d;
  margin-bottom: 30px;
  font-weight: 800;
  position: relative;
  padding-left: 20px;
  border-left: 5px solid #1a365d;
}

.publications-intro {
  font-size: 1.4rem;
  color: #4a5568;
  max-width: 800px;
  margin-bottom: 50px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.publications-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.publication-card {
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(26, 54, 93, 0.1);
  display: flex;
  overflow: hidden;
}

.article-thumbnail {
  width: 225px;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.publication-content {
  padding: 30px;
  flex: 1;
  position: relative;
}

.publication-thumbnail {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

.publication-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #1a365d;
}

.publication-card a {
  color: #2c5282;
  text-decoration: none;
}

.publication-meta {
  font-size: 1rem;
  color: #4a5568;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.publication-source {
  font-weight: 600;
  color: #2d3748;
}

.read-more {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #2c5282;
  text-decoration: none;
  font-size: 1rem;
}

.read-more::after {
  content: '>';
  margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .staff-container {
    margin-top: 40px;
  }

  .staff-profile {
    flex-direction: column;
    text-align: center;
  }

  .profile-image {
    width: 240px;
    height: 300px;
    margin: 0 auto;
  }

  .publications {
    padding: 60px 0;
  }

  .publications h2 {
    font-size: 2.4rem;
    padding-left: 15px;
    border-left: 4px solid #1a365d;
  }

  .publications-intro {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .publications-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 10px;
  }

  .publication-card {
    flex-direction: column;
    padding: 0;
  }

  .article-thumbnail {
    width: 100%;
    height: 200px;
  }

  .publication-content {
    padding: 20px;
  }

  .read-more {
    position: static;
    margin-top: 20px;
    display: inline-block;
  }
}

@media (max-width: 480px) {
  .staff-container,
  .publications-container {
    padding: 0 20px;
  }

  .profile-image {
    width: 200px;
    height: 250px;
  }

  .profile-content h1 {
    font-size: 2rem;
  }

  .title {
    font-size: 1.1rem;
  }

  .bio-text p {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .publications h2 {
    font-size: 2rem;
    padding-left: 12px;
    border-left: 3px solid #1a365d;
  }

  .publication-card {
    padding: 0;
  }

  .publication-content {
    padding: 15px;
  }

  .publication-card h3 {
    font-size: 1.2rem;
  }

  .publication-meta {
    font-size: 0.9rem;
  }

  .read-more {
    font-size: 0.9rem;
  }
}
