#article-side {
  display: flex;
  flex-direction: column;
}

.sidebar-recommendations {
  width: 100%;
  max-width: 18.75rem;
  padding: 1rem;
  margin-left: 0.625rem;
  background: #131313;
  padding: 0.625rem 0.625rem 0.0625rem 0.625rem;
  border-radius: 0.4375rem;
}

.sidebar-title {
  font-size: 1.1rem;
  margin: 0.625rem 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.sidebar-article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-article-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: #1e1e1e;
  padding: 0.3125rem;
  border-radius: 0.4375rem;
  transition: all 0.1s ease;
}

.sidebar-article-item:hover {
  background: #2d2c2c;
  transform: scale(1.01);
}

.sidebar-article-link {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.sidebar-article-info {
  flex: 1;
}

.sidebar-article-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0.125rem 0.125rem 0.125rem 0.125rem;
  line-height: 1.3;
}

.sidebar-article-meta {
  font-size: 0.8rem;
  color: #777;
}
