/*--------------------------------------------------------------
# Changelog page
--------------------------------------------------------------*/
.cl-section { padding: 60px 0 80px; }
.cl-section .section-title p {
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  margin-top: 6px;
}

.cl-toolbar {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
  max-width: 900px;
}
.cl-filter {
  flex-wrap: wrap;
  justify-content: center;
}

.cl-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cl-loading,
.cl-empty {
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  padding: 40px 20px;
}
.cl-empty .bx {
  display: block;
  font-size: 36px;
  margin: 0 auto 8px;
  color: #adb5bd;
}

.cl-entry {
  display: flex;
  background: #fff;
  border: 1px solid #e6e9ec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(15, 25, 40, 0.04);
  transition: transform 0.15s, box-shadow 0.15s;
}
.cl-entry:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 25, 40, 0.08);
}
.cl-entry-rail {
  width: 4px;
  background: #0563bb;
  flex-shrink: 0;
}
.cl-entry-body {
  flex: 1;
  padding: 18px 24px;
  min-width: 0;
}
.cl-entry-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.cl-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.cl-chip .bx { font-size: 14px; }
.cl-version {
  font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
  font-size: 11px;
  color: #6c757d;
  background: #f3f5f8;
  padding: 2px 8px;
  border-radius: 4px;
}
.cl-date {
  margin-left: auto;
  font-size: 12px;
  color: #adb5bd;
}
.cl-title {
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #173b6c;
  margin: 0 0 8px;
  line-height: 1.3;
}
.cl-body {
  color: #45505b;
  font-size: 14px;
  line-height: 1.55;
}
.cl-body p { margin: 0 0 8px; }
.cl-body p:last-child { margin-bottom: 0; }
.cl-body code {
  font-family: 'SFMono-Regular', Consolas, Menlo, monospace;
  font-size: 12.5px;
  background: #f3f5f8;
  color: #45505b;
  padding: 1px 6px;
  border-radius: 4px;
}
.cl-bullets {
  margin: 4px 0 8px;
  padding-left: 22px;
}
.cl-bullets li { margin-bottom: 4px; }

@media (max-width: 600px) {
  .cl-entry-body { padding: 14px 16px; }
  .cl-title { font-size: 16px; }
  .cl-date { margin-left: 0; width: 100%; }
}
