section { margin-bottom: 2rem; }

.bio-section p { font-size: 1.05rem; line-height: 1.7; color: #444; }

/* Work Experience */
.experience-section .experience { background: #fff; padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.experience { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.8rem; padding-bottom: 1.2rem; border-bottom: 1px solid #eee; }

.exp-logo { flex: 0 0 80px; display: flex; justify-content: center; align-items: center; }

.exp-logo img { width: 140px; height: 140px; object-fit: contain; background-color: white; border-radius: 8px; padding: 5px; border: 1px solid #ddd; }

.exp-details { flex: 1; }
.exp-details h3 { margin-bottom: 0.3rem; color: #2c3e50; }
.exp-details .meta { font-size: 0.95rem; color: #555; margin: 0.3rem 0 0.6rem 0; display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.exp-details .meta i { color: #1abc9c; margin-right: 0.3rem; }
.exp-details .desc { margin: 0; line-height: 1.5; }

/* Education */
.education-section .education { background: #fff; padding: 1rem 1.2rem; border-radius: 10px; margin-bottom: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.education h3 { margin: 0; color: #2c3e50; }
.education .university { font-weight: bold; margin: 0.2rem 0; color: #555; }
.education .details { margin: 0; color: #666; }

/* Summer Schools & Reviewer Services */
.summer-section ul, .reviewer-section ul { list-style-type: none; padding: 0; }
.summer-section li, .reviewer-section li {
  background: #fff;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 0.6rem;
  color: #444;
}
.reviewer-section strong { color: #2c3e50; }

/* =====================================================
LATEST NEWS SECTION
===================================================== */
.news-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto;
  max-width: 800px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
}

.news-list li {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

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

.news-list li:hover {
  background: #f9fbff;
}

.news-date {
  font-weight: 600;
  color: #1e88e5;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.news-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .news-list li {
    padding: 0.8rem 1rem;
  }
  .news-text {
    font-size: 0.95rem;
  }
}


/* Responsive */
@media (max-width: 700px) {
  .experience { flex-direction: column; align-items: center; text-align: center; }
  .exp-logo { margin-bottom: 0.8rem; }
}
