.custom-article-list__year-filter {
  align-items: center;
  background: #143B6A;
  color: #fff;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin: 30px 0;
  padding: 8px 12px;
}

.custom-article-list__year-filter label {
  font-weight: 600;
  margin: 0;
}

.custom-article-list__year-filter select {
  appearance: auto;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 2px;
  color: #143B6A;
  cursor: pointer;
  min-width: 180px;
  padding: 5px 32px 5px 10px;
}

.custom-article-list__year-filter select:focus {
  border-color: #876D00;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .custom-article-list__year-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .custom-article-list__year-filter select {
    width: 100%;
  }
}
