/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Merriweather', 'Roboto', serif;
  color: #333;
  background: #f4f8fb;
  overflow-x: hidden;
}
a { color: #0077cc; text-decoration: none; transition: all 0.3s ease; }
a:hover { text-shadow: 0 0 4px #0077cc; }

/* Container */
.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}

/* Header */
.header {
  text-align: center;
  padding: 4rem 1rem 2rem 1rem;
  background: linear-gradient(135deg, #e0f7fa, #fffde7);
  border-radius: 8px;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.header h1 {
  font-size: 3rem;
  color: #0077cc;
  font-family: 'Merriweather', serif;
  position: relative;
}

.header h1::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 4px;
  background: #ff4081;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.header p {
  font-size: 1.2rem;
  color: #555;
  margin-top: 0.5rem;
}

.header .url {
  margin-top: 1rem;
  display: inline-block;
  font-weight: bold;
  color: #ff4081;
}

/* Sections */
section {
  margin: 2.5rem 0 2rem 0;
}

h2 {
  font-size: 2rem;
  color: #0077cc;
  margin-bottom: 1rem;
  position: relative;
  font-family: 'Merriweather', serif;
}

h2::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: #ff4081;
  bottom: -6px;
  left: 0;
  border-radius: 2px;
}

p, li {
  line-height: 1.6;
  color: #444;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: 2px solid #0077cc;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #0077cc;
  color: #fff;
  box-shadow: 0 0 8px rgba(0,119,204,0.4);
}

/* News cards */
.news-list {
  list-style: none;
  padding: 0;
}

.news-list li {
  background: #ffffff;
  border-left: 4px solid #0077cc;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-family: 'Merriweather', serif;
}

.news-list li time {
  font-size: 0.95rem;
  color: #888;
  margin-right: 0.5em;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive Design */
@media (max-width: 800px) {
  .two-cols {
    flex-direction: column;
    gap: 1.5rem;
  }
  .pub-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .pub-img img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
  }
}

.pub-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 2rem;
  padding: 1.5rem;
  gap: 2rem;
}

.pub-img {
  display: flex;
  align-items: center;
  height: 100%;
}

.pub-img img {
  width: 220px;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}

.pub-info {
  flex: 1;
}

.pub-badge {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 4px;
  padding: 0.2em 0.7em;
  margin-bottom: 0.5em;
}

.pub-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.3em;
}

.pub-authors {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5em;
}

.pub-links a {
  color: #0077cc;
  margin-right: 0.7em;
  font-size: 0.98em;
}

.pub-highlights {
  margin-top: 0.7em;
  padding-left: 1.2em;
  color: #333;
  font-size: 0.98em;
}

.emoji {
  font-size: 2.2rem;
  margin-right: 0.2em;
}

.two-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.two-cols > div {
  flex: 1 1 250px;
  min-width: 250px;
}

.info-list {
  list-style: disc inside;
  margin-left: 1.5em;
  margin-bottom: 0;
}

.info-list li {
  font-size: 1.1rem;
  margin-bottom: 0.7em;
  line-height: 1.7;
}

.info-date {
  font-weight: bold;
  font-style: italic;
}

.scholar-link {
  margin: 2rem 0 1rem 0;
}

.scholar-link a {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  color: #0077cc;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s;
}

.scholar-link a:hover {
  color: #ff4081;
}

.scholar-icon {
  width: 22px;
  height: 22px;
  margin-right: 0.3em;
  vertical-align: middle;
}