
/* 섹션 레이아웃 */
.toolset-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.toolset-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* 3열 그리드 정렬 */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* 카드 항목 */
.tool-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 20px;
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* 이미지 박스 (프레임) */
.tool-image-box {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 이미지 */
.tool-item img {
  width: 200px;         /* 고정된 크기 */
  height: 200px;        /* 고정된 크기 */
  object-fit: contain;  /* 비율은 유지하며 안에서 축소 */
  transition: filter 0.3s ease;
  margin-top:50px;
}


/* 텍스트 */
.tool-item p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* 반응형 */
@media (max-width: 1024px) {
  .tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }
}
