.bean-profile * {
  box-sizing: border-box;
}

.bean-profile {
  font-family: sans-serif;
  color: #333;
}

.bean-profile-header {
  text-align: center;
  margin-bottom: 2rem;
}

.bean-profile-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.bean-profile-left {
  flex: 1;
  min-width: 300px;
}

.bean-profile-right {
  flex: 1;
  min-width: 300px;
}

.bean-profile-main-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bean-profile-sub-images {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.bean-profile-sub-image {
  width: calc((100% - 2rem) / 5);
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
}

.bean-profile-section {
  margin-top: 0;
  margin-bottom: 2em;
}

.bean-profile-section-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.25rem;
}

.bean-profile-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bean-profile-list.tight li {
  margin-bottom: 0.5rem;
}

.bean-profile-book-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 165%;  /* 3:4 비율로 세로 크기를 계산 */
    overflow: hidden;
}

.bean-profile-book-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;  /* 비율을 유지하면서 크기 맞추기 */
}

