.cfmk-book-list {
  padding: 40px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cfmk-book-right {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cfmk-book-item {
  display: flex;
  flex-direction: row;
  gap: 56px;
  background-color: #f3f3f3;
  padding: 40px;
  border-radius: 32px;
}

.cfmk-book-item img {
  height: auto;
  width: 100%;
  border-radius: 8px;
  box-sizing: border-box;
}

.cfmk-buy-button a {
  background-color: #e0e0e0;
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-600);
  color: rgba(var(--color-black), 0.7);
  text-decoration: unset;
  padding: 16px 16px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  justify-content: center;
}

.cfmk-book-meta h3 {
  margin: 0 0;
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-600);
  line-height: var(--line-height-120);
  word-break: keep-all;
}

.cfmk-book-writer {
  padding: 32px 0;
}

.cfmk-book-writer p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  padding: 4px 0;
  align-items: center;
}

.cfmk-book-description p:last-child {
  padding: 8px 0 0 0;
}

.cfmk-book-writer p span:first-child {
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-500);
  line-height: var(--line-height-100);
}

.cfmk-book-description p {
  padding: 0 0 8px 0;
}

@media screen and (max-width:960px) {
  .cfmk-book-item {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }
  .cfmk-book-item img {
    border-radius: 16px;
  }
}