.trending-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trending-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.trending-block-header h2 {
  margin: 0;
  color: #4fa3d1;
  font-size: 26px;
}

.see-all {
  flex-shrink: 0;
  background: #4caf50;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 6px;
}

.see-all:hover {
  background: #439a46;
}

.trending-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.recent-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.trending-item:first-of-type,
.recent-item:first-of-type {
  padding-top: 0;
}

.trending-item-thumb {
  flex-shrink: 0;
  display: block;
  width: 180px;
  height: 130px;
}

.trending-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trending-item-body {
  flex: 1;
  min-width: 0;
}

.trending-item-body h3,
.recent-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.trending-item-body h3 a,
.recent-item h3 a {
  color: #111;
  text-decoration: none;
}

.trending-item-body p,
.recent-item p {
  margin: 0 0 8px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.read-more {
  color: #4caf50;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.no-recent {
  color: #777;
  font-size: 14px;
}
