.voting-container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #000000;
  font-family: Arial, sans-serif;
  color: #000000;
  background-color: #ffffff;
  box-sizing: border-box;
}

.voting-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
}

.voting-header h3 {
  margin: 5px 0;
  font-size: 24px;
  color: #000000;
}

.voting-dates {
  font-weight: bold;
  color: #000000;
  margin: 5px 0 0;
}

.voting-info {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #000000;
}

.projects-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.project-card {
  flex: 1 1 300px;
  min-width: 0;
  border: 1px solid #000000;
  padding: 20px;
  background-color: #ffffff;
  box-sizing: border-box;
}

.project-nomination {
  font-size: 14px;
  color: #324f91;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  word-wrap: break-word;
}

.project-card h3 {
  font-size: 18px;
  margin: 10px 0;
  line-height: 1.3;
  color: #000000;
  word-wrap: break-word;
}

.project-author {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.4;
  word-wrap: break-word;
}

.vote-button {
  display: block;
  width: 100%;
  padding: 10px 0;
  background-color: #ffffff;
  color: #0056b3;
  border: 1px solid #0056b3;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
}

.vote-button:hover {
  background-color: #0056b3;
  color: #ffffff;
  border-color: #0056b3;
}

.voting-footer {
  border-top: 1px solid #000000;
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #000000;
}

.info-slides{
  display: flex;
  gap: 5px;
}

.info-slides a{
  aspect-ratio: 1/1;
}

.info-slides img{
  object-fit: cover;
}

@media (max-width: 768px) {
  .voting-container {
    padding: 15px;
    margin: 10px;
  }
  
  .projects-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .project-card {
    flex: none;
    width: 100%;
    padding: 15px;
  }
  
  .voting-header h3 {
    font-size: 20px;
  }
  
  .project-card h3 {
    font-size: 16px;
  }
  
  .vote-button {
    padding: 12px 0;
  }
}