.release-notes {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}

.release-notes__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 56px;
}

.release-notes__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.release-notes__item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 32px;
  transition: opacity 0.3s ease;
}

.release-notes__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.release-notes__item--hidden {
  display: none;
}

.release-notes__title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #1b4759;
  margin: 0 0 16px 0;
}

.release-notes__content {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.release-notes__content p {
  margin: 0 0 16px 0;
}

.release-notes__content p:last-child {
  margin-bottom: 0;
}

/* Unordered list (bullet points) */
.release-notes__content ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.release-notes__content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 24px;
}

.release-notes__content ul li:last-child {
  margin-bottom: 0;
}

.release-notes__content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1b4759;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

/* Ordered list (numbered) */
.release-notes__content ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style: decimal;
  color: #333333;
}

.release-notes__content ol li {
  margin-bottom: 12px;
  line-height: 24px;
  padding-left: 8px;
}

.release-notes__content ol li:last-child {
  margin-bottom: 0;
}

/* Nested lists */
.release-notes__content ul ul,
.release-notes__content ol ol,
.release-notes__content ul ol,
.release-notes__content ol ul {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 24px;
}

.release-notes__content ul ul li::before {
  content: "◦";
  font-weight: 400;
}

/* Strong/bold text in lists */
.release-notes__content li strong,
.release-notes__content li b {
  font-weight: 700;
  color: #1b4759;
}

.release-notes__load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.release-notes__load-more-btn {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background-color: #1b4759;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.release-notes__load-more-btn:hover {
  background-color: #0f2d3a;
  transform: translateY(-2px);
}

.release-notes__load-more-btn:active {
  transform: translateY(0);
}

.release-notes__load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.release-notes__load-more-spinner {
  display: inline-block;
}

.release-notes__empty {
  text-align: center;
  padding: 48px 0;
  color: #666666;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .release-notes__container {
    padding: 48px 24px;
  }

  .release-notes__list {
    gap: 24px;
  }

  .release-notes__item {
    padding-bottom: 24px;
  }

  .release-notes__title {
    font-size: 20px;
    line-height: 28px;
  }

  .release-notes__content {
    font-size: 14px;
    line-height: 20px;
  }

  .release-notes__load-more-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}

