.nectar-hor-list-item .nectar-list-item-btn {
  color: #E5E7EB !important;
}

#client_border post-grid[data-text-color="dark"]
.nectar-post-grid-item
.content * {
  color: #E5E7EB !important;
}

.nectar-post-grid[data-text-color="dark"] {
  --post-grid-dark-text-color: #E5E7EB;
}

body .nectar-post-grid-load-more a,
body .nectar-post-grid-load-more span {
    color: #E5E7EB !important; /* 원하는 색상 코드로 변경 (예: 검정) */
}

/* 이 아래로 카드 */
/* 1) 3열은 유지(현재처럼) + 카드 가운데 정렬 */
#client_border .clients.three-cols{
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  justify-items: center !important;
}

/* 2) 카드: width 기준으로 정사각형 만들기 (height = width) */
#client_border .clients.three-cols > .no-link{
  background: #fff !important;
  border-radius: 14px !important;
  box-sizing: border-box !important;

  /* 카드 크기: 여기 숫자만 조절 */
  width: clamp(120px, 11vw, 170px) !important;
  aspect-ratio: 1 / 1 !important;     /* height = width */

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 4px !important;           /* 카드가 작아졌으니 여백도 줄임 */
}

/* 3) 이미지: 카드 안에서 크게 (안 잘리게) */
#client_border .clients.three-cols > .no-link > img{
  width: auto !important;
  height: auto !important;

  /* 여기 숫자를 올리면 실제로 커짐 */
  max-width: 150% !important;
  max-height: 150% !important;

  object-fit: contain !important;
  object-position: center !important;

  display: block !important;
  margin: 0 auto !important;
}

/* 카드에 생기는 아웃라인/테두리/그림자 제거 */
#client_border .clients.three-cols > .no-link{
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* 혹시 hover/focus 때 테두리가 생기는 테마 방지 */
#client_border .clients.three-cols > .no-link:hover,
#client_border .clients.three-cols > .no-link:focus,
#client_border .clients.three-cols > .no-link:focus-visible{
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* 이미지 자체의 포커스/링크 스타일도 같이 차단(안전) */
#client_border .clients.three-cols > .no-link > img{
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}