/* ===== Font Size & Weight Utilities ===== */

/* Ukuran dan ketebalan */
.fw-small {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
}

.fw-normal {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.fw-strong {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.fw-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.fw-muted {
  font-size: 0.75rem;
  font-weight: 300;
  opacity: 0.8;
}

/* ===== Text Effects ===== */

/* Underline */
.text-underline {
  text-decoration: underline;
}

/* Coret (strikethrough) */
.text-strike {
  text-decoration: line-through;
}

/* Garis di atas (overline) */
.text-overline {
  text-decoration: overline;
}

/* Italic (miring) */
.text-italic {
  font-style: italic;
}

/* Uppercase & lowercase */
.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

/* Capitalize (huruf pertama besar) */
.text-capitalize {
  text-transform: capitalize;
}

/* Utility untuk clamp teks 1–5 baris */
[class^="text-clamp-"] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tiap jumlah baris */
.text-clamp-1 {
  -webkit-line-clamp: 1;
}

.text-clamp-2 {
  -webkit-line-clamp: 2;
}

.text-clamp-3 {
  -webkit-line-clamp: 3;
}

.text-clamp-4 {
  -webkit-line-clamp: 4;
}

.text-clamp-5 {
  -webkit-line-clamp: 5;
}

.text-break {
  word-wrap: break-word;
}

.text-decoration-none {
  text-decoration: none;
  color: var(--color-text);
}
