/*--------------------------------------------------------------
# Most Read Widget
--------------------------------------------------------------*/
.most-read-widget {
  background-color: var(--main-blue-950);
  border-radius: 12px;
  padding: 2rem;
  align-content: center;
  margin: 0 0 12px 0;
  height: 100%;
  max-height: 587px;
}

.most-read-title {
  font-size: 24px;
  color: var(--color-white);
  padding-bottom: 1rem;
  margin: 0 0 1rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.most-read-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: most-read-counter;
  display: flex;
  flex-direction: column;
  justify-content: normal;
  height: 100%;
}

.most-read-list li {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  counter-increment: most-read-counter;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0;
}

.most-read-list li:first-child {
  padding-top: 0;
}

.most-read-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.most-read-list li::before {
  content: counter(most-read-counter);
  font-size: 3rem;
  color: var(--main-yellow-400);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.most-read-list li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}

.most-read-list li a:hover {
  color: var(--main-yellow-400);
}

@media screen and (max-width: 767px) {
  .most-read-widget {
    height: auto;
    max-height: 587px;
  }
}
