/* Text utilities */
.text-center { text-align: center; }

/* Position utilities */
.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* Responsive visibility helpers */
@media screen and (max-width: 576px) {
  .hide-mobile { display: none !important; }
}

@media screen and (min-width: 577px) and (max-width: 992px) {
  .hide-tablet { display: none !important; }
}

@media screen and (min-width: 993px) {
  .hide-desktop { display: none !important; }
}

/* Container utility */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 576px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Truncate text */
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
