.chapter-wrapper {
  margin-inline: auto;
  float: none !important;
}

.page-title {
  text-align: center;
  margin-top: 3rem !important;
}

.featured-image {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  object-position: top;
  margin-bottom: 2rem !important;
  border-radius: 3px;
}

.chapter-wrapper a {
  display: block;
  width: 50%;
  min-width: max-content;
  padding: 1rem 2rem;
  background-color: #bbc001;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  transition: transform 250ms ease-out;
  box-sizing: border-box;
}

.chapter-wrapper a:hover {
  text-decoration: none;
  transform: scale(1.03)
}

@media (max-width: 768px) {
  .chapter-wrapper a {
    width: 100%;
  }
}