]633;E;sed -n '175,234p' $SRC;269b691f-f143-49e8-bc96-009bf5b6e5c1]633;C/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
    max-width: var(--container-max);
    margin-inline: auto;
    padding-inline: var(--container-padding);
    width: 100%;
}

.section {
    padding-block: var(--space-20);
}

.section--sm {
    padding-block: var(--space-12);
}

.section--lg {
    padding-block: var(--space-32);
}

.section__header {
    margin-bottom: var(--space-12);
}

.section__title {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-3);
}

.section__subtitle {
    color: var(--color-gray);
    font-size: var(--text-md);
}

/* ==========================================================================
   Typography Utilities
   ========================================================================== */

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-xs     { font-size: var(--text-xs); }
.text-sm     { font-size: var(--text-sm); }
.text-base   { font-size: var(--text-base); }
.text-lg     { font-size: var(--text-lg); }
.text-xl     { font-size: var(--text-xl); }
.text-2xl    { font-size: var(--text-2xl); }

.font-light   { font-weight: var(--weight-light); }
.font-regular { font-weight: var(--weight-regular); }
.font-medium  { font-weight: var(--weight-medium); }
.font-bold    { font-weight: var(--weight-bold); }

.text-muted   { color: var(--color-gray); }
.text-accent  { color: var(--color-accent); }


/* ==========================================================================
   Page Banner (Default page header)
   ========================================================================== */

.page-banner {
    background-color: var(--color-light);
    padding-block: var(--space-12);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-12);
}

.page-banner__title {
    font-size: var(--text-2xl);
}

/* ==========================================================================
   Utility & Miscellaneous
   ========================================================================== */

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

.skeleton {
    background: linear-gradient(90deg, var(--color-light) 25%, var(--color-secondary) 50%, var(--color-light) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}



