* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #030303;
  color: #ffffff;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #ffffff;
}

.institutions {
  margin-bottom: 20px;
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

.contributors {
  margin-bottom: 60px;
  font-size: 14px;
  color: #999999;
  line-height: 1.6;
}

.essays-list {
  list-style: none;
  flex: 1;
}

.essay-item {
  margin-bottom: 50px;
}

.essay-date {
  font-size: 14px;
  color: #999999;
  margin-bottom: 8px;
}

.pipe {
  margin: 0 12px;
}

.essay-title {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.essay-title:hover {
  opacity: 0.7;
}

.essay-author {
  font-size: 14px;
  color: #999999;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.logo {
  height: 40px;
  width: auto;
  opacity: 0.9;
}


@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }
  
  h1 {
    font-size: 24px;
    margin-bottom: 40px;
  }
  
  .essay-item {
    margin-bottom: 40px;
  }
  
  .essay-title {
    font-size: 16px;
  }
}

.disclaimer {
  color: #666666;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
  margin-top: auto;
}