/*!
 * JD Publishing CSS v2.1 (Base)
 * Prefix Convention:
 * - l- : layout primitives (structure)
 * - c- : components (cards, labels, buttons)
 * - u- : utilities (spacing, text, display)
 *
 * JD Rule #1: Global box-sizing: border-box
 * Load this file FIRST.
 */

/* =========================================
   5) Utilities (u-)
   ========================================= */
/* spacing */
.u-mt-2 {
  margin-top: var(--jd-space-2);
}
.u-mt-4 {
  margin-top: var(--jd-space-4);
}
.u-mb-2 {
  margin-bottom: var(--jd-space-2);
}
.u-mb-4 {
  margin-bottom: var(--jd-space-4);
}
.u-p-2 {
  padding: var(--jd-space-2);
}
.u-p-4 {
  padding: var(--jd-space-4);
}

/* text */
.u-text-muted {
  color: var(--jd-color-muted);
}
.u-text-center {
  text-align: center;
}
.u-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* display */
.u-hidden {
  display: none !important;
}

/* 강제 줄바꿈이 필요할 때 */
.u-line-break {
  display: block;
  height: 0;
}
/* 테블릿 사이즈일때만 span같은 엘리먼트 지우기  */
@media (min-width: 641px) and (max-width: 1023px) {
  .u-hide-tablet {
    display: none;
  }
}
