
.changelog-single {
  padding: 3rem 1rem 4rem;
}

.changelog-archive__wrap {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.changelog-archive__header {
  text-align: center;
  margin-bottom: 3rem;
    background-color: #5B84E5;
    background-image: linear-gradient(90deg, #2c53af, #501165);
    padding: 80px 15px;
}

.changelog-archive__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff !important;
}

.changelog-archive__subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: #ffffff !important;
}

/* List */
.changelog-list {
  display: flex;
  flex-direction: column;
}

.changelog-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.changelog-item:first-child {
  padding-top: 0;
}

.changelog-item__left {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #6b7280;
  position: sticky;
  top: 100px;
}

.changelog-item__date {
  display: block;
  font-weight: 500;
}

.changelog-item__category {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.15rem;
}

.changelog-item__right {
  min-width: 0;
}

.changelog-item__thumb {
  display: block;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.changelog-item__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.changelog-item__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.changelog-item__title a {
  color: #111827;
  text-decoration: none;
}

.changelog-item__title a:hover {
  opacity: 0.75;
}

.changelog-item__excerpt {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
}

.changelog-item__excerpt p {
  margin: 0 0 1rem;
}

.changelog-item__excerpt p:last-child {
  margin-bottom: 0;
}

.changelog-item__more {
  margin: 1.25rem 0 0;
}

.changelog-item__more a,
.changelog-single__back-top a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.changelog-single__back-top {
  margin: 0 0 2rem;
  position:sticky;
  top: 70px;
}

.changelog-item__content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #374151;
}

.changelog-empty {
  text-align: center;
  color: #6b7280;
  padding: 3rem 0;
}

/* Pagination */
.changelog-pagination {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.changelog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.2rem;
  padding: 0 0.65rem;
  font-size: 0.9rem;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
}

.changelog-pagination .page-numbers.current {
  font-weight: 600;
  color: #111827;
  background: #f3f4f6;
}

.changelog-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.changelog-pagination li {
  list-style: none;
}

@media (max-width: 1024px) {
  .changelog-item {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 2rem 0;
  }

  .changelog-item__left {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
  }

  .changelog-item__category {
    margin-top: 0;
  }
  .changelog-item__left, .changelog-single__back-top{
	position:unset;
	top:unset;
  }
 
}
