/*대여 아이템*/
.item-section {
  padding: 40px 20px;
  max-width: 100%;
  margin: 0 auto;
}

.item-section > .section-title {
  padding-top: 48px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.item-card {
  display: flex;
  flex-direction: column;
}

.item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.item-info {
  margin-top: 10px;
}

.item-title {
  font-size: 18px;
  font-weight: 600;
}

.item-desc {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

.item-price {
  font-size: 16px;
  font-weight: bold;
  margin-top: 6px;
}

.item-more {
  margin-top: 30px;
  text-align: right;
}

.item-more a {
  text-decoration: underline;
  color: #666;
}

.item-more a:hover {
  color: #000;
}
/*대여 아이템 끝*/
.item-note {
  font-size: 0.85rem;
  color: #666;
  background-color: #f9f9f9;
  padding: 6px 10px;
  border-radius: 8px;
  margin-top: 5px;
  line-height: 1.4;
}
