.contents-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
}

.contents-items-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
  column-gap: 2rem;
  row-gap: 2rem;
  width: 100%;
  height: 100%;
  margin: 2rem 0;
}

.contents-item {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 1rem;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.contents-item:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.contents-item-image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.contents-item-image-wrapper img {
  width: 128px;
  height: 128px;
  padding: 40px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
}

.contents-item-image-wrapper-multi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.25);
}

.contents-item-image-wrapper-multi img {
  width: 50%;
  padding: 10px 0;
  object-fit: contain;
}

.contents-item-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contents-item-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
}

.contents-item-type {
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
}
