/* =============================================
   UTILITIES — Single-purpose helpers
   ============================================= */

.u-hidden {
  display: none !important;
}
.u-block {
  display: block;
}
.u-flex {
  display: flex;
}
.u-grid {
  display: grid;
}

.u-flex-col {
  flex-direction: column;
}
.u-flex-wrap {
  flex-wrap: wrap;
}
.u-items-center {
  align-items: center;
}
.u-items-start {
  align-items: flex-start;
}
.u-justify-center {
  justify-content: center;
}
.u-justify-between {
  justify-content: space-between;
}
.u-flex-1 {
  flex: 1;
}

.u-text-center {
  text-align: center;
}
.u-text-left {
  text-align: left;
}
.u-uppercase {
  text-transform: uppercase;
}
.u-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.u-mt-auto {
  margin-top: auto;
}
.u-mb-0 {
  margin-bottom: 0;
}
.u-mb-4 {
  margin-bottom: 1rem;
}
.u-mb-6 {
  margin-bottom: 1.5rem;
}
.u-mb-8 {
  margin-bottom: 2rem;
}
.u-mb-12 {
  margin-bottom: 3rem;
}
.u-mb-16 {
  margin-bottom: 4rem;
}
.u-mt-8 {
  margin-top: 2rem;
}
.u-gap-4 {
  gap: 1rem;
}
.u-gap-6 {
  gap: 1.5rem;
}
.u-gap-8 {
  gap: 2rem;
}

.u-w-full {
  width: 100%;
}
.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.u-relative {
  position: relative;
}
.u-overflow-hidden {
  overflow: hidden;
}

.u-aspect-video {
  aspect-ratio: 16 / 9;
}
.u-aspect-square {
  aspect-ratio: 1 / 1;
}
.u-object-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 768px) {
  .u-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .u-hide-desktop {
    display: none !important;
  }
}
