.prevnext {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.prevnext__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 8px;
  max-width: 48%;
  text-decoration: none;
  color: #191a1f;
  background: transparent;
  transition: background 0.2s ease;
}

.prevnext__btn:hover,
.prevnext__btn:focus {
  background: rgba(209, 211, 219, 0.2);
  color: #191a1f;
  text-decoration: none;
}

.prevnext__btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #191a1f;
}

.prevnext__btn--next {
  margin-left: auto;
  flex-direction: row-reverse;
  text-align: right;
}

.prevnext__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prevnext__name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #191a1f;
}

.prevnext__title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  color: #191a1f;
}
