/* =============================================
   LAYOUT — Container + Utilidades
   ============================================= */

/* -- Container -- */
.container {
    max-width: 1216px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* -- Container Cols (3-column centered layout) -- */
.container-cols {
    display: grid;
    grid-template-columns: 1fr min(1216px, 100% - 40px) 1fr;
}

/* -- Flexbox -- */
.flex {
    display: flex;
}
.inline-flex {
    display: inline-flex;
}
.flex-col {
    flex-direction: column;
}
.flex-1 {
    flex: 1 1 0%;
}
.flex-none {
    flex: none;
}
.shrink-0 {
    flex-shrink: 0;
}

.items-start {
    align-items: flex-start;
}
.items-center {
    align-items: center;
}
.items-end {
    align-items: flex-end;
}
.self-start {
    align-self: flex-start;
}
.self-stretch {
    align-self: stretch;
}

.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-end {
    justify-content: flex-end;
}

.gap-1 {
    gap: 4px;
}
.gap-1\.5 {
    gap: 6px;
}
.gap-2 {
    gap: 8px;
}
.gap-3 {
    gap: 12px;
}
.gap-4 {
    gap: 16px;
}
.gap-6 {
    gap: 24px;
}
.gap-8 {
    gap: 32px;
}
.gap-10 {
    gap: 40px;
}
.gap-12 {
    gap: 48px;
}
.gap-14 {
    gap: 56px;
}
.gap-16 {
    gap: 64px;
}

/* -- Grid -- */
.grid {
    display: grid;
}
.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-cols-1 {
    grid-template-columns: 1fr;
}

/* -- Positioning -- */
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.fixed {
    position: fixed;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* -- Sizing -- */
.w-full {
    width: 100%;
}
.w-fit {
    width: fit-content;
}
.h-full {
    height: 100%;
}

/* -- Overflow -- */
.overflow-hidden {
    overflow: hidden;
}
.overflow-initial {
    overflow: initial !important;
}

/* -- Text alignment -- */
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.uppercase {
    text-transform: uppercase;
}

/* -- Pointer events -- */
.pointer-events-none {
    pointer-events: none;
}

/* -- Z-index -- */
.z-10 {
    z-index: 10;
}
.z-50 {
    z-index: 50;
}

/* -- Full width (break out of container) -- */
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
