.PopularPosts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.PopularPosts-Heading {
  border-bottom: 2px solid #0d366d;
  padding-bottom: 10px;
  color: #131313;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
}
.PopularPosts__List {
  margin: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.PopularPosts-Item {
  border-bottom: 1px solid #e5e5e5;
}
.PopularPosts-Item:last-child {
  border-bottom: none;
}
.PopularPosts-Link {
  transition: opacity 0.2s;
  display: flex;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}
.PopularPosts-Link:hover {
  opacity: 0.75;
}
.PopularPosts-Thumb {
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  background-color: #eee;
}
.PopularPosts-Thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.PopularPosts-Thumb-Placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee 25%, #f4f4f4 25%, #f4f4f4 50%, #eee 50%, #eee 75%, #f4f4f4 75%, #f4f4f4 100%);
  background-size: 12px 12px;
}
.PopularPosts__Body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.PopularPosts-Date {
  color: #9a9a9a;
  font-size: 12px;
  letter-spacing: 0.6px;
}
.PopularPosts-Title {
  display: -webkit-box;
  overflow: hidden;
  color: #131313;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.65px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
