/* customer.css */

/* 기본 리셋 */
html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background-color: #fff;
}

/* 카테고리 블록 리스트 */
.category_title {
  font-size: 22px;
  text-align: center;
  margin-bottom: 20px;
}
.blocks-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blocks-list.v2 .blocks-item {
  flex: 1 0 33.3%;
  max-width: 33.3%;
}
.blocks-item {
  box-sizing: border-box;
  text-align: center;
}
.blocks-item-link {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}
.blocks-item-link:hover {
  background-color: #f0f0f0;
}
.blocks-item-title {
  position: relative;
  font-size: 18px;
  margin-bottom: 10px;
  padding-top: 50px;
  color: #000;
}
.blocks-item-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('/static/img/help/customer.png');
  background-repeat: no-repeat;
  background-size: auto;
}
#category_id_360000195933 .blocks-item-title:before { width: 46px; height: 45px; background-position: 0 -29px; }
#category_id_360000202554 .blocks-item-title:before { width: 41px; height: 44px; background-position: -62px -29px; }
#category_id_requestnew .blocks-item-title:before { width: 48px; height: 38px; background-position: -119px -29px; }
.blocks-item-description {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* 최근 업데이트 UI */
.recent_section {
  margin-top: 40px;
}
.recent_section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
}
.recent-activity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-activity-item {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}
.recent-activity-item-parent a {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
}
.recent-activity-item-parent a:hover {
  color: #0072EF;
  text-decoration: underline;
}
.recent-activity-item-meta {
  color: #666;
  font-size: 13px;
  font-weight: 300;
}

/* a link 설정 */
a.hover-text-blue-600 {
  /* 원래 링크 색상을 유지하거나, 원하는 초기 색을 지정 */
  color: inherit;
  text-decoration: none;
}

a.hover-text-blue-600:hover {
  color: var(--bs-blue-600) !important;
}
