.sidebar .article-spreads__list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  list-style: none;
  line-height: 1.3;
}

.article-spreads__link {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  min-height: 78px;
  padding: 0.65rem;
  overflow: hidden;
  color: var(--txt);
  background: var(--rose);
  border: 1px solid rgba(192, 0, 143, 0.12);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.article-spreads__link:hover {
  border-color: rgba(192, 0, 143, 0.32);
  box-shadow: 0 4px 12px rgba(68, 17, 56, 0.08);
  text-decoration: none;
  transform: translateY(-1px);
}

.article-spreads__link:focus-visible {
  outline: 3px solid rgba(192, 0, 143, 0.28);
  outline-offset: 2px;
}

.article-spreads__image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}

.article-spreads__copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.article-spreads__title {
  color: var(--accent);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
}

.article-spreads__description {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.3;
}

.article-spreads__link:hover .article-spreads__title {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.article-spreads__all {
  text-align: center;
}

@media (min-width: 993px) {
  .sidebar {
    align-self: stretch;
  }

  .sidebar .article-spreads {
    position: sticky;
    top: 80px;
  }
}
