.books-market__header h1 {
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  background: rgba(193, 25, 40, 0.92);
  color: #f5f5f7;
  letter-spacing: -0.05rem;
}

.books-market__header h2 {
  text-align: center;
  margin: 2rem auto;
  font-size: 2rem;
  font-weight: bold;
}

.books-market__header p {
  text-align: center;
}

.books-market__header p a {
  color:#007BC7;
  text-decoration:none;
}

.books-market__header p a:hover {
  color: #333333;
  border-bottom: 1px solid #333333;
}

.books-market__header p a.entry {
	display: block;
	text-decoration: none;
	width: 12rem;
	border-radius: 8px;
	background-color: #d32d41;
	border: 3px solid #ffffff;
	padding: .6em 1.2em;
	font-size: 1em;
	font-weight: 400;
	font-family: inherit;
	color: #ffffff;
	cursor: pointer;
	transition: border-color .25s;
	text-align: center;
	margin: 0 auto;
}

.books-market__header p a.entry:hover {
	border: 3px solid #d32d41;
	background-color: #ffffff;
	color: #d32d41;
}

.books-market__list h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 1rem;
  margin-top: 2rem;
}

details {
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  padding: 0.5em 0.5em 0;
  margin: 1rem;
  line-height: 1;
  position: relative;
}

details summary {
  display: list-item;
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
}

details[open] {
  border: 2px solid #393939;
  padding: 0.5em;
}

details[open] summary {
  border-bottom: 1px solid #aaaaaa;
  margin-bottom: 0.5em;
}

details dl {
  margin-top: 1rem;
}

details dl > div {
  margin-bottom: 1rem;
}

details dl > div dt {
  font-weight: bold;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

details dl > div dt::after {
  content: ": ";
}

details dl > div dd {
  font-size: 0.8rem;
}

details .images-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 1.4rem auto;
}

details .images-container img {
  width: 40%;
}

@media (max-width: 800px) {
  details .images-container img {
    width: 80%;
  }
}


