/* Global & layout */
body {
  font: 15px/1.65 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
header {
  border-bottom: 1px solid #ddd;
  text-align: center;
}
h1 {
  font-weight: 600;
  font-size: 1.35em;
  letter-spacing: -0.01em;
  color: #111;
}
nav {
  float: right;
  padding-top: 3%;
}
article {
  overflow: hidden;
  padding-right: 5%;
}
.container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.text {
  padding-left: 20px;
}

/* Link styles with hover effects */
a:link, a:visited {
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}
a.highlight:link, a.highlight:visited {
  color: #047DF2;
  text-decoration: none;
  transition: color 0.2s ease;
}
a.strong:link, a.strong:visited {
  color: #047DF2;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #047DF2;
  font-weight: bold;
}
strong {
  font-family: Lora;
  font-size: 15.5px;
  font-weight: 600;
}

/* Tab styles for publications */
.tabs {
  margin: 20px 0;
  border-bottom: 1px solid #ddd;
}
.tabs button {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  outline: none;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 15px;
  color: #555;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tabs button:hover {
  color: #111;
}
.tabs button.active {
  border-bottom-color: #047DF2;
  color: #047DF2;
  font-weight: 600;
}

/* News load-more button */
#news-more {
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px 16px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
#news-more:hover {
  border-color: #999;
  color: #111;
}

/* Initially hide publication entries; they will be shown by JavaScript based on filter */
.publication {
  display: none;
}
