/*Container for both sections */
  .main-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
}

/* General section styling */
.section {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* About Library takes more width */
.about-library {
  flex: 2;
}

/* News takes less width */
.news-updates {
         flex: 1.2;
}

/* Headings and horizontal rule */
.section h1, .section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: bold;
}

.section hr {
  width: 50%;
  height: 2px;
  background-color: #ccc;
  border: none;
  margin-bottom: 20px;
}

/* Placeholder style */
.placeholder {
  height: 70px;
  background-color: #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.view-all {
  display: inline-block;
  margin-top: 20px;
  color: #1a73e8;
  text-decoration: none;
}

.view-all:hover {
  text-decoration: underline;
}
#openalex-publications {
  font-family: Arial, sans-serif;
  margin-top: 10px;
}
#openalex-publications li {
  margin-bottom: 5px;
}
