/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/
/* ==========================================================
   Scoped Bootstrap-like Grid (BS 5.3 breakpoints) — ONLY GRID
   Works only inside .bs-wrap to minimize conflicts.
   Paste into your child theme style.css
   ========================================================== */

.bs-wrap {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  --bs-sp-0: 0;
  --bs-sp-1: .25rem;
  --bs-sp-2: .5rem;
  --bs-sp-3: 1rem;
  --bs-sp-4: 1.5rem;
  --bs-sp-5: 3rem;
}

/* ---------- Containers ---------- */
.bs-wrap .container,
.bs-wrap .container-fluid,
.bs-wrap .container-sm,
.bs-wrap .container-md,
.bs-wrap .container-lg,
.bs-wrap .container-xl,
.bs-wrap .container-xxl {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.bs-wrap .container-fluid { max-width: 100%; }

/* Container max-widths (Bootstrap 5.3) */
@media (min-width: 576px)  { .bs-wrap .container, .bs-wrap .container-sm  { max-width: 540px; } }
@media (min-width: 768px)  { .bs-wrap .container, .bs-wrap .container-sm, .bs-wrap .container-md { max-width: 720px; } }
@media (min-width: 992px)  { .bs-wrap .container, .bs-wrap .container-sm, .bs-wrap .container-md, .bs-wrap .container-lg { max-width: 960px; } }
@media (min-width: 1200px) { .bs-wrap .container, .bs-wrap .container-sm, .bs-wrap .container-md, .bs-wrap .container-lg, .bs-wrap .container-xl { max-width: 1140px; } }
@media (min-width: 1400px) { .bs-wrap .container, .bs-wrap .container-sm, .bs-wrap .container-md, .bs-wrap .container-lg, .bs-wrap .container-xl, .bs-wrap .container-xxl { max-width: 1320px; } }

/* ---------- Row & Columns ---------- */
.bs-wrap .row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}

.bs-wrap .row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

/* Auto layout */
.bs-wrap .col { flex: 1 0 0%; }
.bs-wrap .col-auto { flex: 0 0 auto; width: auto; }

/* Fixed columns 1..12 */
.bs-wrap .col-1  { flex: 0 0 auto; width: 8.33333333%; }
.bs-wrap .col-2  { flex: 0 0 auto; width: 16.66666667%; }
.bs-wrap .col-3  { flex: 0 0 auto; width: 25%; }
.bs-wrap .col-4  { flex: 0 0 auto; width: 33.33333333%; }
.bs-wrap .col-5  { flex: 0 0 auto; width: 41.66666667%; }
.bs-wrap .col-6  { flex: 0 0 auto; width: 50%; }
.bs-wrap .col-7  { flex: 0 0 auto; width: 58.33333333%; }
.bs-wrap .col-8  { flex: 0 0 auto; width: 66.66666667%; }
.bs-wrap .col-9  { flex: 0 0 auto; width: 75%; }
.bs-wrap .col-10 { flex: 0 0 auto; width: 83.33333333%; }
.bs-wrap .col-11 { flex: 0 0 auto; width: 91.66666667%; }
.bs-wrap .col-12 { flex: 0 0 auto; width: 100%; }

/* ---------- Row-cols (auto columns per row) ---------- */
.bs-wrap .row-cols-1 > * { flex: 0 0 auto; width: 100%; }
.bs-wrap .row-cols-2 > * { flex: 0 0 auto; width: 50%; }
.bs-wrap .row-cols-3 > * { flex: 0 0 auto; width: 33.33333333%; }
.bs-wrap .row-cols-4 > * { flex: 0 0 auto; width: 25%; }
.bs-wrap .row-cols-5 > * { flex: 0 0 auto; width: 20%; }
.bs-wrap .row-cols-6 > * { flex: 0 0 auto; width: 16.66666667%; }

/* ---------- Gutters (g / gx / gy) ---------- */
.bs-wrap .g-0,  .bs-wrap .gx-0 { --bs-gutter-x: 0; }
.bs-wrap .g-0,  .bs-wrap .gy-0 { --bs-gutter-y: 0; }

.bs-wrap .g-1,  .bs-wrap .gx-1 { --bs-gutter-x: .25rem; }
.bs-wrap .g-1,  .bs-wrap .gy-1 { --bs-gutter-y: .25rem; }

.bs-wrap .g-2,  .bs-wrap .gx-2 { --bs-gutter-x: .5rem; }
.bs-wrap .g-2,  .bs-wrap .gy-2 { --bs-gutter-y: .5rem; }

.bs-wrap .g-3,  .bs-wrap .gx-3 { --bs-gutter-x: 1rem; }
.bs-wrap .g-3,  .bs-wrap .gy-3 { --bs-gutter-y: 1rem; }

.bs-wrap .g-4,  .bs-wrap .gx-4 { --bs-gutter-x: 1.5rem; }
.bs-wrap .g-4,  .bs-wrap .gy-4 { --bs-gutter-y: 1.5rem; }

.bs-wrap .g-5,  .bs-wrap .gx-5 { --bs-gutter-x: 3rem; }
.bs-wrap .g-5,  .bs-wrap .gy-5 { --bs-gutter-y: 3rem; }

/* ==========================================================
   Responsive Gutters (g / gx / gy) — Scoped in .bs-wrap
   Breakpoints BS 5.3: sm 576, md 768, lg 992, xl 1200, xxl 1400
   ========================================================== */

/* SM ≥ 576px */
@media (min-width: 576px) {
  .bs-wrap .g-sm-0,  .bs-wrap .gx-sm-0 { --bs-gutter-x: 0; }
  .bs-wrap .g-sm-0,  .bs-wrap .gy-sm-0 { --bs-gutter-y: 0; }

  .bs-wrap .g-sm-1,  .bs-wrap .gx-sm-1 { --bs-gutter-x: .25rem; }
  .bs-wrap .g-sm-1,  .bs-wrap .gy-sm-1 { --bs-gutter-y: .25rem; }

  .bs-wrap .g-sm-2,  .bs-wrap .gx-sm-2 { --bs-gutter-x: .5rem; }
  .bs-wrap .g-sm-2,  .bs-wrap .gy-sm-2 { --bs-gutter-y: .5rem; }

  .bs-wrap .g-sm-3,  .bs-wrap .gx-sm-3 { --bs-gutter-x: 1rem; }
  .bs-wrap .g-sm-3,  .bs-wrap .gy-sm-3 { --bs-gutter-y: 1rem; }

  .bs-wrap .g-sm-4,  .bs-wrap .gx-sm-4 { --bs-gutter-x: 1.5rem; }
  .bs-wrap .g-sm-4,  .bs-wrap .gy-sm-4 { --bs-gutter-y: 1.5rem; }

  .bs-wrap .g-sm-5,  .bs-wrap .gx-sm-5 { --bs-gutter-x: 3rem; }
  .bs-wrap .g-sm-5,  .bs-wrap .gy-sm-5 { --bs-gutter-y: 3rem; }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
  .bs-wrap .g-md-0,  .bs-wrap .gx-md-0 { --bs-gutter-x: 0; }
  .bs-wrap .g-md-0,  .bs-wrap .gy-md-0 { --bs-gutter-y: 0; }

  .bs-wrap .g-md-1,  .bs-wrap .gx-md-1 { --bs-gutter-x: .25rem; }
  .bs-wrap .g-md-1,  .bs-wrap .gy-md-1 { --bs-gutter-y: .25rem; }

  .bs-wrap .g-md-2,  .bs-wrap .gx-md-2 { --bs-gutter-x: .5rem; }
  .bs-wrap .g-md-2,  .bs-wrap .gy-md-2 { --bs-gutter-y: .5rem; }

  .bs-wrap .g-md-3,  .bs-wrap .gx-md-3 { --bs-gutter-x: 1rem; }
  .bs-wrap .g-md-3,  .bs-wrap .gy-md-3 { --bs-gutter-y: 1rem; }

  .bs-wrap .g-md-4,  .bs-wrap .gx-md-4 { --bs-gutter-x: 1.5rem; }
  .bs-wrap .g-md-4,  .bs-wrap .gy-md-4 { --bs-gutter-y: 1.5rem; }

  .bs-wrap .g-md-5,  .bs-wrap .gx-md-5 { --bs-gutter-x: 3rem; }
  .bs-wrap .g-md-5,  .bs-wrap .gy-md-5 { --bs-gutter-y: 3rem; }
}

/* LG ≥ 992px */
@media (min-width: 992px) {
  .bs-wrap .g-lg-0,  .bs-wrap .gx-lg-0 { --bs-gutter-x: 0; }
  .bs-wrap .g-lg-0,  .bs-wrap .gy-lg-0 { --bs-gutter-y: 0; }

  .bs-wrap .g-lg-1,  .bs-wrap .gx-lg-1 { --bs-gutter-x: .25rem; }
  .bs-wrap .g-lg-1,  .bs-wrap .gy-lg-1 { --bs-gutter-y: .25rem; }

  .bs-wrap .g-lg-2,  .bs-wrap .gx-lg-2 { --bs-gutter-x: .5rem; }
  .bs-wrap .g-lg-2,  .bs-wrap .gy-lg-2 { --bs-gutter-y: .5rem; }

  .bs-wrap .g-lg-3,  .bs-wrap .gx-lg-3 { --bs-gutter-x: 1rem; }
  .bs-wrap .g-lg-3,  .bs-wrap .gy-lg-3 { --bs-gutter-y: 1rem; }

  .bs-wrap .g-lg-4,  .bs-wrap .gx-lg-4 { --bs-gutter-x: 1.5rem; }
  .bs-wrap .g-lg-4,  .bs-wrap .gy-lg-4 { --bs-gutter-y: 1.5rem; }

  .bs-wrap .g-lg-5,  .bs-wrap .gx-lg-5 { --bs-gutter-x: 3rem; }
  .bs-wrap .g-lg-5,  .bs-wrap .gy-lg-5 { --bs-gutter-y: 3rem; }
}

/* XL ≥ 1200px */
@media (min-width: 1200px) {
  .bs-wrap .g-xl-0,  .bs-wrap .gx-xl-0 { --bs-gutter-x: 0; }
  .bs-wrap .g-xl-0,  .bs-wrap .gy-xl-0 { --bs-gutter-y: 0; }

  .bs-wrap .g-xl-1,  .bs-wrap .gx-xl-1 { --bs-gutter-x: .25rem; }
  .bs-wrap .g-xl-1,  .bs-wrap .gy-xl-1 { --bs-gutter-y: .25rem; }

  .bs-wrap .g-xl-2,  .bs-wrap .gx-xl-2 { --bs-gutter-x: .5rem; }
  .bs-wrap .g-xl-2,  .bs-wrap .gy-xl-2 { --bs-gutter-y: .5rem; }

  .bs-wrap .g-xl-3,  .bs-wrap .gx-xl-3 { --bs-gutter-x: 1rem; }
  .bs-wrap .g-xl-3,  .bs-wrap .gy-xl-3 { --bs-gutter-y: 1rem; }

  .bs-wrap .g-xl-4,  .bs-wrap .gx-xl-4 { --bs-gutter-x: 1.5rem; }
  .bs-wrap .g-xl-4,  .bs-wrap .gy-xl-4 { --bs-gutter-y: 1.5rem; }

  .bs-wrap .g-xl-5,  .bs-wrap .gx-xl-5 { --bs-gutter-x: 3rem; }
  .bs-wrap .g-xl-5,  .bs-wrap .gy-xl-5 { --bs-gutter-y: 3rem; }
}

/* XXL ≥ 1400px */
@media (min-width: 1400px) {
  .bs-wrap .g-xxl-0,  .bs-wrap .gx-xxl-0 { --bs-gutter-x: 0; }
  .bs-wrap .g-xxl-0,  .bs-wrap .gy-xxl-0 { --bs-gutter-y: 0; }

  .bs-wrap .g-xxl-1,  .bs-wrap .gx-xxl-1 { --bs-gutter-x: .25rem; }
  .bs-wrap .g-xxl-1,  .bs-wrap .gy-xxl-1 { --bs-gutter-y: .25rem; }

  .bs-wrap .g-xxl-2,  .bs-wrap .gx-xxl-2 { --bs-gutter-x: .5rem; }
  .bs-wrap .g-xxl-2,  .bs-wrap .gy-xxl-2 { --bs-gutter-y: .5rem; }

  .bs-wrap .g-xxl-3,  .bs-wrap .gx-xxl-3 { --bs-gutter-x: 1rem; }
  .bs-wrap .g-xxl-3,  .bs-wrap .gy-xxl-3 { --bs-gutter-y: 1rem; }

  .bs-wrap .g-xxl-4,  .bs-wrap .gx-xxl-4 { --bs-gutter-x: 1.5rem; }
  .bs-wrap .g-xxl-4,  .bs-wrap .gy-xxl-4 { --bs-gutter-y: 1.5rem; }

  .bs-wrap .g-xxl-5,  .bs-wrap .gx-xxl-5 { --bs-gutter-x: 3rem; }
  .bs-wrap .g-xxl-5,  .bs-wrap .gy-xxl-5 { --bs-gutter-y: 3rem; }
}


/* ---------- Offsets ---------- */
.bs-wrap .offset-1  { margin-left: 8.33333333%; }
.bs-wrap .offset-2  { margin-left: 16.66666667%; }
.bs-wrap .offset-3  { margin-left: 25%; }
.bs-wrap .offset-4  { margin-left: 33.33333333%; }
.bs-wrap .offset-5  { margin-left: 41.66666667%; }
.bs-wrap .offset-6  { margin-left: 50%; }
.bs-wrap .offset-7  { margin-left: 58.33333333%; }
.bs-wrap .offset-8  { margin-left: 66.66666667%; }
.bs-wrap .offset-9  { margin-left: 75%; }
.bs-wrap .offset-10 { margin-left: 83.33333333%; }
.bs-wrap .offset-11 { margin-left: 91.66666667%; }

/* ---------- Order ---------- */
.bs-wrap .order-first { order: -1; }
.bs-wrap .order-last  { order: 6; }
.bs-wrap .order-0 { order: 0; }
.bs-wrap .order-1 { order: 1; }
.bs-wrap .order-2 { order: 2; }
.bs-wrap .order-3 { order: 3; }
.bs-wrap .order-4 { order: 4; }
.bs-wrap .order-5 { order: 5; }

/* ==========================================================
   Responsive variants
   ========================================================== */

/* SM ≥ 576px */
@media (min-width: 576px) {
  .bs-wrap .col-sm { flex: 1 0 0%; }
  .bs-wrap .col-sm-auto { flex: 0 0 auto; width: auto; }

  .bs-wrap .col-sm-1  { width: 8.33333333%; }
  .bs-wrap .col-sm-2  { width: 16.66666667%; }
  .bs-wrap .col-sm-3  { width: 25%; }
  .bs-wrap .col-sm-4  { width: 33.33333333%; }
  .bs-wrap .col-sm-5  { width: 41.66666667%; }
  .bs-wrap .col-sm-6  { width: 50%; }
  .bs-wrap .col-sm-7  { width: 58.33333333%; }
  .bs-wrap .col-sm-8  { width: 66.66666667%; }
  .bs-wrap .col-sm-9  { width: 75%; }
  .bs-wrap .col-sm-10 { width: 83.33333333%; }
  .bs-wrap .col-sm-11 { width: 91.66666667%; }
  .bs-wrap .col-sm-12 { width: 100%; }

  .bs-wrap .row-cols-sm-1 > * { width: 100%; }
  .bs-wrap .row-cols-sm-2 > * { width: 50%; }
  .bs-wrap .row-cols-sm-3 > * { width: 33.33333333%; }
  .bs-wrap .row-cols-sm-4 > * { width: 25%; }
  .bs-wrap .row-cols-sm-5 > * { width: 20%; }
  .bs-wrap .row-cols-sm-6 > * { width: 16.66666667%; }

  .bs-wrap .offset-sm-0 { margin-left: 0; }
  .bs-wrap .offset-sm-1  { margin-left: 8.33333333%; }
  .bs-wrap .offset-sm-2  { margin-left: 16.66666667%; }
  .bs-wrap .offset-sm-3  { margin-left: 25%; }
  .bs-wrap .offset-sm-4  { margin-left: 33.33333333%; }
  .bs-wrap .offset-sm-5  { margin-left: 41.66666667%; }
  .bs-wrap .offset-sm-6  { margin-left: 50%; }
  .bs-wrap .offset-sm-7  { margin-left: 58.33333333%; }
  .bs-wrap .offset-sm-8  { margin-left: 66.66666667%; }
  .bs-wrap .offset-sm-9  { margin-left: 75%; }
  .bs-wrap .offset-sm-10 { margin-left: 83.33333333%; }
  .bs-wrap .offset-sm-11 { margin-left: 91.66666667%; }

  .bs-wrap .order-sm-first { order: -1; }
  .bs-wrap .order-sm-last  { order: 6; }
  .bs-wrap .order-sm-0 { order: 0; }
  .bs-wrap .order-sm-1 { order: 1; }
  .bs-wrap .order-sm-2 { order: 2; }
  .bs-wrap .order-sm-3 { order: 3; }
  .bs-wrap .order-sm-4 { order: 4; }
  .bs-wrap .order-sm-5 { order: 5; }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
  .bs-wrap .col-md { flex: 1 0 0%; }
  .bs-wrap .col-md-auto { flex: 0 0 auto; width: auto; }

  .bs-wrap .col-md-1  { width: 8.33333333%; }
  .bs-wrap .col-md-2  { width: 16.66666667%; }
  .bs-wrap .col-md-3  { width: 25%; }
  .bs-wrap .col-md-4  { width: 33.33333333%; }
  .bs-wrap .col-md-5  { width: 41.66666667%; }
  .bs-wrap .col-md-6  { width: 50%; }
  .bs-wrap .col-md-7  { width: 58.33333333%; }
  .bs-wrap .col-md-8  { width: 66.66666667%; }
  .bs-wrap .col-md-9  { width: 75%; }
  .bs-wrap .col-md-10 { width: 83.33333333%; }
  .bs-wrap .col-md-11 { width: 91.66666667%; }
  .bs-wrap .col-md-12 { width: 100%; }

  .bs-wrap .row-cols-md-1 > * { width: 100%; }
  .bs-wrap .row-cols-md-2 > * { width: 50%; }
  .bs-wrap .row-cols-md-3 > * { width: 33.33333333%; }
  .bs-wrap .row-cols-md-4 > * { width: 25%; }
  .bs-wrap .row-cols-md-5 > * { width: 20%; }
  .bs-wrap .row-cols-md-6 > * { width: 16.66666667%; }

  .bs-wrap .offset-md-0 { margin-left: 0; }
  .bs-wrap .offset-md-1  { margin-left: 8.33333333%; }
  .bs-wrap .offset-md-2  { margin-left: 16.66666667%; }
  .bs-wrap .offset-md-3  { margin-left: 25%; }
  .bs-wrap .offset-md-4  { margin-left: 33.33333333%; }
  .bs-wrap .offset-md-5  { margin-left: 41.66666667%; }
  .bs-wrap .offset-md-6  { margin-left: 50%; }
  .bs-wrap .offset-md-7  { margin-left: 58.33333333%; }
  .bs-wrap .offset-md-8  { margin-left: 66.66666667%; }
  .bs-wrap .offset-md-9  { margin-left: 75%; }
  .bs-wrap .offset-md-10 { margin-left: 83.33333333%; }
  .bs-wrap .offset-md-11 { margin-left: 91.66666667%; }

  .bs-wrap .order-md-first { order: -1; }
  .bs-wrap .order-md-last  { order: 6; }
  .bs-wrap .order-md-0 { order: 0; }
  .bs-wrap .order-md-1 { order: 1; }
  .bs-wrap .order-md-2 { order: 2; }
  .bs-wrap .order-md-3 { order: 3; }
  .bs-wrap .order-md-4 { order: 4; }
  .bs-wrap .order-md-5 { order: 5; }
}

/* LG ≥ 992px */
@media (min-width: 992px) {
  .bs-wrap .col-lg { flex: 1 0 0%; }
  .bs-wrap .col-lg-auto { flex: 0 0 auto; width: auto; }

  .bs-wrap .col-lg-1  { width: 8.33333333%; }
  .bs-wrap .col-lg-2  { width: 16.66666667%; }
  .bs-wrap .col-lg-3  { width: 25%; }
  .bs-wrap .col-lg-4  { width: 33.33333333%; }
  .bs-wrap .col-lg-5  { width: 41.66666667%; }
  .bs-wrap .col-lg-6  { width: 50%; }
  .bs-wrap .col-lg-7  { width: 58.33333333%; }
  .bs-wrap .col-lg-8  { width: 66.66666667%; }
  .bs-wrap .col-lg-9  { width: 75%; }
  .bs-wrap .col-lg-10 { width: 83.33333333%; }
  .bs-wrap .col-lg-11 { width: 91.66666667%; }
  .bs-wrap .col-lg-12 { width: 100%; }

  .bs-wrap .row-cols-lg-1 > * { width: 100%; }
  .bs-wrap .row-cols-lg-2 > * { width: 50%; }
  .bs-wrap .row-cols-lg-3 > * { width: 33.33333333%; }
  .bs-wrap .row-cols-lg-4 > * { width: 25%; }
  .bs-wrap .row-cols-lg-5 > * { width: 20%; }
  .bs-wrap .row-cols-lg-6 > * { width: 16.66666667%; }
}

/* XL ≥ 1200px */
@media (min-width: 1200px) {
  .bs-wrap .col-xl { flex: 1 0 0%; }
  .bs-wrap .col-xl-auto { flex: 0 0 auto; width: auto; }

  .bs-wrap .col-xl-1  { width: 8.33333333%; }
  .bs-wrap .col-xl-2  { width: 16.66666667%; }
  .bs-wrap .col-xl-3  { width: 25%; }
  .bs-wrap .col-xl-4  { width: 33.33333333%; }
  .bs-wrap .col-xl-5  { width: 41.66666667%; }
  .bs-wrap .col-xl-6  { width: 50%; }
  .bs-wrap .col-xl-7  { width: 58.33333333%; }
  .bs-wrap .col-xl-8  { width: 66.66666667%; }
  .bs-wrap .col-xl-9  { width: 75%; }
  .bs-wrap .col-xl-10 { width: 83.33333333%; }
  .bs-wrap .col-xl-11 { width: 91.66666667%; }
  .bs-wrap .col-xl-12 { width: 100%; }

  .bs-wrap .row-cols-xl-1 > * { width: 100%; }
  .bs-wrap .row-cols-xl-2 > * { width: 50%; }
  .bs-wrap .row-cols-xl-3 > * { width: 33.33333333%; }
  .bs-wrap .row-cols-xl-4 > * { width: 25%; }
  .bs-wrap .row-cols-xl-5 > * { width: 20%; }
  .bs-wrap .row-cols-xl-6 > * { width: 16.66666667%; }
}

/* XXL ≥ 1400px */
@media (min-width: 1400px) {
  .bs-wrap .col-xxl { flex: 1 0 0%; }
  .bs-wrap .col-xxl-auto { flex: 0 0 auto; width: auto; }

  .bs-wrap .col-xxl-1  { width: 8.33333333%; }
  .bs-wrap .col-xxl-2  { width: 16.66666667%; }
  .bs-wrap .col-xxl-3  { width: 25%; }
  .bs-wrap .col-xxl-4  { width: 33.33333333%; }
  .bs-wrap .col-xxl-5  { width: 41.66666667%; }
  .bs-wrap .col-xxl-6  { width: 50%; }
  .bs-wrap .col-xxl-7  { width: 58.33333333%; }
  .bs-wrap .col-xxl-8  { width: 66.66666667%; }
  .bs-wrap .col-xxl-9  { width: 75%; }
  .bs-wrap .col-xxl-10 { width: 83.33333333%; }
  .bs-wrap .col-xxl-11 { width: 91.66666667%; }
  .bs-wrap .col-xxl-12 { width: 100%; }

  .bs-wrap .row-cols-xxl-1 > * { width: 100%; }
  .bs-wrap .row-cols-xxl-2 > * { width: 50%; }
  .bs-wrap .row-cols-xxl-3 > * { width: 33.33333333%; }
  .bs-wrap .row-cols-xxl-4 > * { width: 25%; }
  .bs-wrap .row-cols-xxl-5 > * { width: 20%; }
  .bs-wrap .row-cols-xxl-6 > * { width: 16.66666667%; }
}

/* ==========================================================
   Scoped Display + Flex Utilities (Bootstrap-like) — .bs-wrap
   Includes: d-*, d-*-*, flex-*, justify-content-*, align-*
   Breakpoints: sm/md/lg/xl/xxl (Bootstrap 5.3)
   ========================================================== */

/* ---------- Base display (no breakpoint) ---------- */
.bs-wrap .d-none { display: none !important; }
.bs-wrap .d-inline { display: inline !important; }
.bs-wrap .d-inline-block { display: inline-block !important; }
.bs-wrap .d-block { display: block !important; }
.bs-wrap .d-grid { display: grid !important; }
.bs-wrap .d-table { display: table !important; }
.bs-wrap .d-table-row { display: table-row !important; }
.bs-wrap .d-table-cell { display: table-cell !important; }
.bs-wrap .d-flex { display: flex !important; }
.bs-wrap .d-inline-flex { display: inline-flex !important; }

/* ---------- Flex direction ---------- */
.bs-wrap .flex-row { flex-direction: row !important; }
.bs-wrap .flex-row-reverse { flex-direction: row-reverse !important; }
.bs-wrap .flex-column { flex-direction: column !important; }
.bs-wrap .flex-column-reverse { flex-direction: column-reverse !important; }

/* ---------- Flex wrap ---------- */
.bs-wrap .flex-wrap { flex-wrap: wrap !important; }
.bs-wrap .flex-nowrap { flex-wrap: nowrap !important; }
.bs-wrap .flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

/* ---------- Flex grow / shrink ---------- */
.bs-wrap .flex-grow-0 { flex-grow: 0 !important; }
.bs-wrap .flex-grow-1 { flex-grow: 1 !important; }
.bs-wrap .flex-shrink-0 { flex-shrink: 0 !important; }
.bs-wrap .flex-shrink-1 { flex-shrink: 1 !important; }

/* ---------- Justify content (main axis) ---------- */
.bs-wrap .justify-content-start { justify-content: flex-start !important; }
.bs-wrap .justify-content-end { justify-content: flex-end !important; }
.bs-wrap .justify-content-center { justify-content: center !important; }
.bs-wrap .justify-content-between { justify-content: space-between !important; }
.bs-wrap .justify-content-around { justify-content: space-around !important; }
.bs-wrap .justify-content-evenly { justify-content: space-evenly !important; }

/* ---------- Align items (cross axis) ---------- */
.bs-wrap .align-items-start { align-items: flex-start !important; }
.bs-wrap .align-items-end { align-items: flex-end !important; }
.bs-wrap .align-items-center { align-items: center !important; }
.bs-wrap .align-items-baseline { align-items: baseline !important; }
.bs-wrap .align-items-stretch { align-items: stretch !important; }

/* ---------- Align content (multi-line cross axis) ---------- */
.bs-wrap .align-content-start { align-content: flex-start !important; }
.bs-wrap .align-content-end { align-content: flex-end !important; }
.bs-wrap .align-content-center { align-content: center !important; }
.bs-wrap .align-content-between { align-content: space-between !important; }
.bs-wrap .align-content-around { align-content: space-around !important; }
.bs-wrap .align-content-stretch { align-content: stretch !important; }

/* ---------- Align self (per item) ---------- */
.bs-wrap .align-self-auto { align-self: auto !important; }
.bs-wrap .align-self-start { align-self: flex-start !important; }
.bs-wrap .align-self-end { align-self: flex-end !important; }
.bs-wrap .align-self-center { align-self: center !important; }
.bs-wrap .align-self-baseline { align-self: baseline !important; }
.bs-wrap .align-self-stretch { align-self: stretch !important; }

/* ---------- Order (also useful with flex) ---------- */
.bs-wrap .order-first { order: -1 !important; }
.bs-wrap .order-0 { order: 0 !important; }
.bs-wrap .order-1 { order: 1 !important; }
.bs-wrap .order-2 { order: 2 !important; }
.bs-wrap .order-3 { order: 3 !important; }
.bs-wrap .order-4 { order: 4 !important; }
.bs-wrap .order-5 { order: 5 !important; }
.bs-wrap .order-last { order: 6 !important; }

/* ==========================================================
   Breakpoints
   ========================================================== */

/* SM ≥ 576px */
@media (min-width: 576px) {
  .bs-wrap .d-sm-none { display: none !important; }
  .bs-wrap .d-sm-inline { display: inline !important; }
  .bs-wrap .d-sm-inline-block { display: inline-block !important; }
  .bs-wrap .d-sm-block { display: block !important; }
  .bs-wrap .d-sm-grid { display: grid !important; }
  .bs-wrap .d-sm-table { display: table !important; }
  .bs-wrap .d-sm-table-row { display: table-row !important; }
  .bs-wrap .d-sm-table-cell { display: table-cell !important; }
  .bs-wrap .d-sm-flex { display: flex !important; }
  .bs-wrap .d-sm-inline-flex { display: inline-flex !important; }

  .bs-wrap .flex-sm-row { flex-direction: row !important; }
  .bs-wrap .flex-sm-row-reverse { flex-direction: row-reverse !important; }
  .bs-wrap .flex-sm-column { flex-direction: column !important; }
  .bs-wrap .flex-sm-column-reverse { flex-direction: column-reverse !important; }

  .bs-wrap .flex-sm-wrap { flex-wrap: wrap !important; }
  .bs-wrap .flex-sm-nowrap { flex-wrap: nowrap !important; }
  .bs-wrap .flex-sm-wrap-reverse { flex-wrap: wrap-reverse !important; }

  .bs-wrap .justify-content-sm-start { justify-content: flex-start !important; }
  .bs-wrap .justify-content-sm-end { justify-content: flex-end !important; }
  .bs-wrap .justify-content-sm-center { justify-content: center !important; }
  .bs-wrap .justify-content-sm-between { justify-content: space-between !important; }
  .bs-wrap .justify-content-sm-around { justify-content: space-around !important; }
  .bs-wrap .justify-content-sm-evenly { justify-content: space-evenly !important; }

  .bs-wrap .align-items-sm-start { align-items: flex-start !important; }
  .bs-wrap .align-items-sm-end { align-items: flex-end !important; }
  .bs-wrap .align-items-sm-center { align-items: center !important; }
  .bs-wrap .align-items-sm-baseline { align-items: baseline !important; }
  .bs-wrap .align-items-sm-stretch { align-items: stretch !important; }

  .bs-wrap .align-content-sm-start { align-content: flex-start !important; }
  .bs-wrap .align-content-sm-end { align-content: flex-end !important; }
  .bs-wrap .align-content-sm-center { align-content: center !important; }
  .bs-wrap .align-content-sm-between { align-content: space-between !important; }
  .bs-wrap .align-content-sm-around { align-content: space-around !important; }
  .bs-wrap .align-content-sm-stretch { align-content: stretch !important; }

  .bs-wrap .align-self-sm-auto { align-self: auto !important; }
  .bs-wrap .align-self-sm-start { align-self: flex-start !important; }
  .bs-wrap .align-self-sm-end { align-self: flex-end !important; }
  .bs-wrap .align-self-sm-center { align-self: center !important; }
  .bs-wrap .align-self-sm-baseline { align-self: baseline !important; }
  .bs-wrap .align-self-sm-stretch { align-self: stretch !important; }

  .bs-wrap .order-sm-first { order: -1 !important; }
  .bs-wrap .order-sm-0 { order: 0 !important; }
  .bs-wrap .order-sm-1 { order: 1 !important; }
  .bs-wrap .order-sm-2 { order: 2 !important; }
  .bs-wrap .order-sm-3 { order: 3 !important; }
  .bs-wrap .order-sm-4 { order: 4 !important; }
  .bs-wrap .order-sm-5 { order: 5 !important; }
  .bs-wrap .order-sm-last { order: 6 !important; }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
  .bs-wrap .d-md-none { display: none !important; }
  .bs-wrap .d-md-inline { display: inline !important; }
  .bs-wrap .d-md-inline-block { display: inline-block !important; }
  .bs-wrap .d-md-block { display: block !important; }
  .bs-wrap .d-md-grid { display: grid !important; }
  .bs-wrap .d-md-table { display: table !important; }
  .bs-wrap .d-md-table-row { display: table-row !important; }
  .bs-wrap .d-md-table-cell { display: table-cell !important; }
  .bs-wrap .d-md-flex { display: flex !important; }
  .bs-wrap .d-md-inline-flex { display: inline-flex !important; }

  .bs-wrap .flex-md-row { flex-direction: row !important; }
  .bs-wrap .flex-md-row-reverse { flex-direction: row-reverse !important; }
  .bs-wrap .flex-md-column { flex-direction: column !important; }
  .bs-wrap .flex-md-column-reverse { flex-direction: column-reverse !important; }

  .bs-wrap .flex-md-wrap { flex-wrap: wrap !important; }
  .bs-wrap .flex-md-nowrap { flex-wrap: nowrap !important; }
  .bs-wrap .flex-md-wrap-reverse { flex-wrap: wrap-reverse !important; }

  .bs-wrap .justify-content-md-start { justify-content: flex-start !important; }
  .bs-wrap .justify-content-md-end { justify-content: flex-end !important; }
  .bs-wrap .justify-content-md-center { justify-content: center !important; }
  .bs-wrap .justify-content-md-between { justify-content: space-between !important; }
  .bs-wrap .justify-content-md-around { justify-content: space-around !important; }
  .bs-wrap .justify-content-md-evenly { justify-content: space-evenly !important; }

  .bs-wrap .align-items-md-start { align-items: flex-start !important; }
  .bs-wrap .align-items-md-end { align-items: flex-end !important; }
  .bs-wrap .align-items-md-center { align-items: center !important; }
  .bs-wrap .align-items-md-baseline { align-items: baseline !important; }
  .bs-wrap .align-items-md-stretch { align-items: stretch !important; }

  .bs-wrap .align-content-md-start { align-content: flex-start !important; }
  .bs-wrap .align-content-md-end { align-content: flex-end !important; }
  .bs-wrap .align-content-md-center { align-content: center !important; }
  .bs-wrap .align-content-md-between { align-content: space-between !important; }
  .bs-wrap .align-content-md-around { align-content: space-around !important; }
  .bs-wrap .align-content-md-stretch { align-content: stretch !important; }

  .bs-wrap .align-self-md-auto { align-self: auto !important; }
  .bs-wrap .align-self-md-start { align-self: flex-start !important; }
  .bs-wrap .align-self-md-end { align-self: flex-end !important; }
  .bs-wrap .align-self-md-center { align-self: center !important; }
  .bs-wrap .align-self-md-baseline { align-self: baseline !important; }
  .bs-wrap .align-self-md-stretch { align-self: stretch !important; }

  .bs-wrap .order-md-first { order: -1 !important; }
  .bs-wrap .order-md-0 { order: 0 !important; }
  .bs-wrap .order-md-1 { order: 1 !important; }
  .bs-wrap .order-md-2 { order: 2 !important; }
  .bs-wrap .order-md-3 { order: 3 !important; }
  .bs-wrap .order-md-4 { order: 4 !important; }
  .bs-wrap .order-md-5 { order: 5 !important; }
  .bs-wrap .order-md-last { order: 6 !important; }
}

/* LG ≥ 992px */
@media (min-width: 992px) {
  .bs-wrap .d-lg-none { display: none !important; }
  .bs-wrap .d-lg-inline { display: inline !important; }
  .bs-wrap .d-lg-inline-block { display: inline-block !important; }
  .bs-wrap .d-lg-block { display: block !important; }
  .bs-wrap .d-lg-grid { display: grid !important; }
  .bs-wrap .d-lg-table { display: table !important; }
  .bs-wrap .d-lg-table-row { display: table-row !important; }
  .bs-wrap .d-lg-table-cell { display: table-cell !important; }
  .bs-wrap .d-lg-flex { display: flex !important; }
  .bs-wrap .d-lg-inline-flex { display: inline-flex !important; }

  .bs-wrap .flex-lg-row { flex-direction: row !important; }
  .bs-wrap .flex-lg-row-reverse { flex-direction: row-reverse !important; }
  .bs-wrap .flex-lg-column { flex-direction: column !important; }
  .bs-wrap .flex-lg-column-reverse { flex-direction: column-reverse !important; }

  .bs-wrap .flex-lg-wrap { flex-wrap: wrap !important; }
  .bs-wrap .flex-lg-nowrap { flex-wrap: nowrap !important; }
  .bs-wrap .flex-lg-wrap-reverse { flex-wrap: wrap-reverse !important; }

  .bs-wrap .justify-content-lg-start { justify-content: flex-start !important; }
  .bs-wrap .justify-content-lg-end { justify-content: flex-end !important; }
  .bs-wrap .justify-content-lg-center { justify-content: center !important; }
  .bs-wrap .justify-content-lg-between { justify-content: space-between !important; }
  .bs-wrap .justify-content-lg-around { justify-content: space-around !important; }
  .bs-wrap .justify-content-lg-evenly { justify-content: space-evenly !important; }

  .bs-wrap .align-items-lg-start { align-items: flex-start !important; }
  .bs-wrap .align-items-lg-end { align-items: flex-end !important; }
  .bs-wrap .align-items-lg-center { align-items: center !important; }
  .bs-wrap .align-items-lg-baseline { align-items: baseline !important; }
  .bs-wrap .align-items-lg-stretch { align-items: stretch !important; }

  .bs-wrap .align-content-lg-start { align-content: flex-start !important; }
  .bs-wrap .align-content-lg-end { align-content: flex-end !important; }
  .bs-wrap .align-content-lg-center { align-content: center !important; }
  .bs-wrap .align-content-lg-between { align-content: space-between !important; }
  .bs-wrap .align-content-lg-around { align-content: space-around !important; }
  .bs-wrap .align-content-lg-stretch { align-content: stretch !important; }

  .bs-wrap .align-self-lg-auto { align-self: auto !important; }
  .bs-wrap .align-self-lg-start { align-self: flex-start !important; }
  .bs-wrap .align-self-lg-end { align-self: flex-end !important; }
  .bs-wrap .align-self-lg-center { align-self: center !important; }
  .bs-wrap .align-self-lg-baseline { align-self: baseline !important; }
  .bs-wrap .align-self-lg-stretch { align-self: stretch !important; }

  .bs-wrap .order-lg-first { order: -1 !important; }
  .bs-wrap .order-lg-0 { order: 0 !important; }
  .bs-wrap .order-lg-1 { order: 1 !important; }
  .bs-wrap .order-lg-2 { order: 2 !important; }
  .bs-wrap .order-lg-3 { order: 3 !important; }
  .bs-wrap .order-lg-4 { order: 4 !important; }
  .bs-wrap .order-lg-5 { order: 5 !important; }
  .bs-wrap .order-lg-last { order: 6 !important; }
}

/* XL ≥ 1200px */
@media (min-width: 1200px) {
  .bs-wrap .d-xl-none { display: none !important; }
  .bs-wrap .d-xl-inline { display: inline !important; }
  .bs-wrap .d-xl-inline-block { display: inline-block !important; }
  .bs-wrap .d-xl-block { display: block !important; }
  .bs-wrap .d-xl-grid { display: grid !important; }
  .bs-wrap .d-xl-table { display: table !important; }
  .bs-wrap .d-xl-table-row { display: table-row !important; }
  .bs-wrap .d-xl-table-cell { display: table-cell !important; }
  .bs-wrap .d-xl-flex { display: flex !important; }
  .bs-wrap .d-xl-inline-flex { display: inline-flex !important; }

  .bs-wrap .flex-xl-row { flex-direction: row !important; }
  .bs-wrap .flex-xl-row-reverse { flex-direction: row-reverse !important; }
  .bs-wrap .flex-xl-column { flex-direction: column !important; }
  .bs-wrap .flex-xl-column-reverse { flex-direction: column-reverse !important; }

  .bs-wrap .flex-xl-wrap { flex-wrap: wrap !important; }
  .bs-wrap .flex-xl-nowrap { flex-wrap: nowrap !important; }
  .bs-wrap .flex-xl-wrap-reverse { flex-wrap: wrap-reverse !important; }

  .bs-wrap .justify-content-xl-start { justify-content: flex-start !important; }
  .bs-wrap .justify-content-xl-end { justify-content: flex-end !important; }
  .bs-wrap .justify-content-xl-center { justify-content: center !important; }
  .bs-wrap .justify-content-xl-between { justify-content: space-between !important; }
  .bs-wrap .justify-content-xl-around { justify-content: space-around !important; }
  .bs-wrap .justify-content-xl-evenly { justify-content: space-evenly !important; }

  .bs-wrap .align-items-xl-start { align-items: flex-start !important; }
  .bs-wrap .align-items-xl-end { align-items: flex-end !important; }
  .bs-wrap .align-items-xl-center { align-items: center !important; }
  .bs-wrap .align-items-xl-baseline { align-items: baseline !important; }
  .bs-wrap .align-items-xl-stretch { align-items: stretch !important; }

  .bs-wrap .align-content-xl-start { align-content: flex-start !important; }
  .bs-wrap .align-content-xl-end { align-content: flex-end !important; }
  .bs-wrap .align-content-xl-center { align-content: center !important; }
  .bs-wrap .align-content-xl-between { align-content: space-between !important; }
  .bs-wrap .align-content-xl-around { align-content: space-around !important; }
  .bs-wrap .align-content-xl-stretch { align-content: stretch !important; }

  .bs-wrap .align-self-xl-auto { align-self: auto !important; }
  .bs-wrap .align-self-xl-start { align-self: flex-start !important; }
  .bs-wrap .align-self-xl-end { align-self: flex-end !important; }
  .bs-wrap .align-self-xl-center { align-self: center !important; }
  .bs-wrap .align-self-xl-baseline { align-self: baseline !important; }
  .bs-wrap .align-self-xl-stretch { align-self: stretch !important; }

  .bs-wrap .order-xl-first { order: -1 !important; }
  .bs-wrap .order-xl-0 { order: 0 !important; }
  .bs-wrap .order-xl-1 { order: 1 !important; }
  .bs-wrap .order-xl-2 { order: 2 !important; }
  .bs-wrap .order-xl-3 { order: 3 !important; }
  .bs-wrap .order-xl-4 { order: 4 !important; }
  .bs-wrap .order-xl-5 { order: 5 !important; }
  .bs-wrap .order-xl-last { order: 6 !important; }
}

/* XXL ≥ 1400px */
@media (min-width: 1400px) {
  .bs-wrap .d-xxl-none { display: none !important; }
  .bs-wrap .d-xxl-inline { display: inline !important; }
  .bs-wrap .d-xxl-inline-block { display: inline-block !important; }
  .bs-wrap .d-xxl-block { display: block !important; }
  .bs-wrap .d-xxl-grid { display: grid !important; }
  .bs-wrap .d-xxl-table { display: table !important; }
  .bs-wrap .d-xxl-table-row { display: table-row !important; }
  .bs-wrap .d-xxl-table-cell { display: table-cell !important; }
  .bs-wrap .d-xxl-flex { display: flex !important; }
  .bs-wrap .d-xxl-inline-flex { display: inline-flex !important; }

  .bs-wrap .flex-xxl-row { flex-direction: row !important; }
  .bs-wrap .flex-xxl-row-reverse { flex-direction: row-reverse !important; }
  .bs-wrap .flex-xxl-column { flex-direction: column !important; }
  .bs-wrap .flex-xxl-column-reverse { flex-direction: column-reverse !important; }

  .bs-wrap .flex-xxl-wrap { flex-wrap: wrap !important; }
  .bs-wrap .flex-xxl-nowrap { flex-wrap: nowrap !important; }
  .bs-wrap .flex-xxl-wrap-reverse { flex-wrap: wrap-reverse !important; }

  .bs-wrap .justify-content-xxl-start { justify-content: flex-start !important; }
  .bs-wrap .justify-content-xxl-end { justify-content: flex-end !important; }
  .bs-wrap .justify-content-xxl-center { justify-content: center !important; }
  .bs-wrap .justify-content-xxl-between { justify-content: space-between !important; }
  .bs-wrap .justify-content-xxl-around { justify-content: space-around !important; }
  .bs-wrap .justify-content-xxl-evenly { justify-content: space-evenly !important; }

  .bs-wrap .align-items-xxl-start { align-items: flex-start !important; }
  .bs-wrap .align-items-xxl-end { align-items: flex-end !important; }
  .bs-wrap .align-items-xxl-center { align-items: center !important; }
  .bs-wrap .align-items-xxl-baseline { align-items: baseline !important; }
  .bs-wrap .align-items-xxl-stretch { align-items: stretch !important; }

  .bs-wrap .align-content-xxl-start { align-content: flex-start !important; }
  .bs-wrap .align-content-xxl-end { align-content: flex-end !important; }
  .bs-wrap .align-content-xxl-center { align-content: center !important; }
  .bs-wrap .align-content-xxl-between { align-content: space-between !important; }
  .bs-wrap .align-content-xxl-around { align-content: space-around !important; }
  .bs-wrap .align-content-xxl-stretch { align-content: stretch !important; }

  .bs-wrap .align-self-xxl-auto { align-self: auto !important; }
  .bs-wrap .align-self-xxl-start { align-self: flex-start !important; }
  .bs-wrap .align-self-xxl-end { align-self: flex-end !important; }
  .bs-wrap .align-self-xxl-center { align-self: center !important; }
  .bs-wrap .align-self-xxl-baseline { align-self: baseline !important; }
  .bs-wrap .align-self-xxl-stretch { align-self: stretch !important; }

  .bs-wrap .order-xxl-first { order: -1 !important; }
  .bs-wrap .order-xxl-0 { order: 0 !important; }
  .bs-wrap .order-xxl-1 { order: 1 !important; }
  .bs-wrap .order-xxl-2 { order: 2 !important; }
  .bs-wrap .order-xxl-3 { order: 3 !important; }
  .bs-wrap .order-xxl-4 { order: 4 !important; }
  .bs-wrap .order-xxl-5 { order: 5 !important; }
  .bs-wrap .order-xxl-last { order: 6 !important; }
}

/* ==========================================================
   Scoped Utilities (Bootstrap-like) — fs / spacing / ratio
   Works only inside .bs-wrap
   ========================================================== */

/* ---------- Font size (fs-1..fs-6) ---------- */
/* Bootstrap 5.3 values */
.bs-wrap .fs-1 { font-size: calc(1.375rem + 1.5vw); }
.bs-wrap .fs-2 { font-size: calc(1.325rem + 0.9vw); }
.bs-wrap .fs-3 { font-size: calc(1.3rem + 0.6vw); }
.bs-wrap .fs-4 { font-size: calc(1.275rem + 0.3vw); }
.bs-wrap .fs-5 { font-size: 1.25rem; }
.bs-wrap .fs-6 { font-size: 1rem; }

/* Clamp (optional) to avoid huge sizes on very wide screens */
@media (min-width: 1200px){
  .bs-wrap .fs-1 { font-size: 2.5rem; }
  .bs-wrap .fs-2 { font-size: 2rem; }
  .bs-wrap .fs-3 { font-size: 1.75rem; }
  .bs-wrap .fs-4 { font-size: 1.5rem; }
}


/* PADDING: p-*, pt-*, pe-*, pb-*, ps-*, px-*, py-* */
.bs-wrap .p-0  { padding: var(--bs-sp-0) !important; }
.bs-wrap .p-1  { padding: var(--bs-sp-1) !important; }
.bs-wrap .p-2  { padding: var(--bs-sp-2) !important; }
.bs-wrap .p-3  { padding: var(--bs-sp-3) !important; }
.bs-wrap .p-4  { padding: var(--bs-sp-4) !important; }
.bs-wrap .p-5  { padding: var(--bs-sp-5) !important; }

.bs-wrap .pt-0 { padding-top: var(--bs-sp-0) !important; }
.bs-wrap .pt-1 { padding-top: var(--bs-sp-1) !important; }
.bs-wrap .pt-2 { padding-top: var(--bs-sp-2) !important; }
.bs-wrap .pt-3 { padding-top: var(--bs-sp-3) !important; }
.bs-wrap .pt-4 { padding-top: var(--bs-sp-4) !important; }
.bs-wrap .pt-5 { padding-top: var(--bs-sp-5) !important; }

.bs-wrap .pe-0 { padding-right: var(--bs-sp-0) !important; }
.bs-wrap .pe-1 { padding-right: var(--bs-sp-1) !important; }
.bs-wrap .pe-2 { padding-right: var(--bs-sp-2) !important; }
.bs-wrap .pe-3 { padding-right: var(--bs-sp-3) !important; }
.bs-wrap .pe-4 { padding-right: var(--bs-sp-4) !important; }
.bs-wrap .pe-5 { padding-right: var(--bs-sp-5) !important; }

.bs-wrap .pb-0 { padding-bottom: var(--bs-sp-0) !important; }
.bs-wrap .pb-1 { padding-bottom: var(--bs-sp-1) !important; }
.bs-wrap .pb-2 { padding-bottom: var(--bs-sp-2) !important; }
.bs-wrap .pb-3 { padding-bottom: var(--bs-sp-3) !important; }
.bs-wrap .pb-4 { padding-bottom: var(--bs-sp-4) !important; }
.bs-wrap .pb-5 { padding-bottom: var(--bs-sp-5) !important; }

.bs-wrap .ps-0 { padding-left: var(--bs-sp-0) !important; }
.bs-wrap .ps-1 { padding-left: var(--bs-sp-1) !important; }
.bs-wrap .ps-2 { padding-left: var(--bs-sp-2) !important; }
.bs-wrap .ps-3 { padding-left: var(--bs-sp-3) !important; }
.bs-wrap .ps-4 { padding-left: var(--bs-sp-4) !important; }
.bs-wrap .ps-5 { padding-left: var(--bs-sp-5) !important; }

.bs-wrap .px-0 { padding-left: var(--bs-sp-0) !important; padding-right: var(--bs-sp-0) !important; }
.bs-wrap .px-1 { padding-left: var(--bs-sp-1) !important; padding-right: var(--bs-sp-1) !important; }
.bs-wrap .px-2 { padding-left: var(--bs-sp-2) !important; padding-right: var(--bs-sp-2) !important; }
.bs-wrap .px-3 { padding-left: var(--bs-sp-3) !important; padding-right: var(--bs-sp-3) !important; }
.bs-wrap .px-4 { padding-left: var(--bs-sp-4) !important; padding-right: var(--bs-sp-4) !important; }
.bs-wrap .px-5 { padding-left: var(--bs-sp-5) !important; padding-right: var(--bs-sp-5) !important; }

.bs-wrap .py-0 { padding-top: var(--bs-sp-0) !important; padding-bottom: var(--bs-sp-0) !important; }
.bs-wrap .py-1 { padding-top: var(--bs-sp-1) !important; padding-bottom: var(--bs-sp-1) !important; }
.bs-wrap .py-2 { padding-top: var(--bs-sp-2) !important; padding-bottom: var(--bs-sp-2) !important; }
.bs-wrap .py-3 { padding-top: var(--bs-sp-3) !important; padding-bottom: var(--bs-sp-3) !important; }
.bs-wrap .py-4 { padding-top: var(--bs-sp-4) !important; padding-bottom: var(--bs-sp-4) !important; }
.bs-wrap .py-5 { padding-top: var(--bs-sp-5) !important; padding-bottom: var(--bs-sp-5) !important; }

/* MARGIN: m-*, mt-*, me-*, mb-*, ms-*, mx-*, my-* */
.bs-wrap .m-0  { margin: var(--bs-sp-0) !important; }
.bs-wrap .m-1  { margin: var(--bs-sp-1) !important; }
.bs-wrap .m-2  { margin: var(--bs-sp-2) !important; }
.bs-wrap .m-3  { margin: var(--bs-sp-3) !important; }
.bs-wrap .m-4  { margin: var(--bs-sp-4) !important; }
.bs-wrap .m-5  { margin: var(--bs-sp-5) !important; }

.bs-wrap .mt-0 { margin-top: var(--bs-sp-0) !important; }
.bs-wrap .mt-1 { margin-top: var(--bs-sp-1) !important; }
.bs-wrap .mt-2 { margin-top: var(--bs-sp-2) !important; }
.bs-wrap .mt-3 { margin-top: var(--bs-sp-3) !important; }
.bs-wrap .mt-4 { margin-top: var(--bs-sp-4) !important; }
.bs-wrap .mt-5 { margin-top: var(--bs-sp-5) !important; }

.bs-wrap .me-0 { margin-right: var(--bs-sp-0) !important; }
.bs-wrap .me-1 { margin-right: var(--bs-sp-1) !important; }
.bs-wrap .me-2 { margin-right: var(--bs-sp-2) !important; }
.bs-wrap .me-3 { margin-right: var(--bs-sp-3) !important; }
.bs-wrap .me-4 { margin-right: var(--bs-sp-4) !important; }
.bs-wrap .me-5 { margin-right: var(--bs-sp-5) !important; }

.bs-wrap .mb-0 { margin-bottom: var(--bs-sp-0) !important; }
.bs-wrap .mb-1 { margin-bottom: var(--bs-sp-1) !important; }
.bs-wrap .mb-2 { margin-bottom: var(--bs-sp-2) !important; }
.bs-wrap .mb-3 { margin-bottom: var(--bs-sp-3) !important; }
.bs-wrap .mb-4 { margin-bottom: var(--bs-sp-4) !important; }
.bs-wrap .mb-5 { margin-bottom: var(--bs-sp-5) !important; }

.bs-wrap .ms-0 { margin-left: var(--bs-sp-0) !important; }
.bs-wrap .ms-1 { margin-left: var(--bs-sp-1) !important; }
.bs-wrap .ms-2 { margin-left: var(--bs-sp-2) !important; }
.bs-wrap .ms-3 { margin-left: var(--bs-sp-3) !important; }
.bs-wrap .ms-4 { margin-left: var(--bs-sp-4) !important; }
.bs-wrap .ms-5 { margin-left: var(--bs-sp-5) !important; }

.bs-wrap .mx-0 { margin-left: var(--bs-sp-0) !important; margin-right: var(--bs-sp-0) !important; }
.bs-wrap .mx-1 { margin-left: var(--bs-sp-1) !important; margin-right: var(--bs-sp-1) !important; }
.bs-wrap .mx-2 { margin-left: var(--bs-sp-2) !important; margin-right: var(--bs-sp-2) !important; }
.bs-wrap .mx-3 { margin-left: var(--bs-sp-3) !important; margin-right: var(--bs-sp-3) !important; }
.bs-wrap .mx-4 { margin-left: var(--bs-sp-4) !important; margin-right: var(--bs-sp-4) !important; }
.bs-wrap .mx-5 { margin-left: var(--bs-sp-5) !important; margin-right: var(--bs-sp-5) !important; }

.bs-wrap .my-0 { margin-top: var(--bs-sp-0) !important; margin-bottom: var(--bs-sp-0) !important; }
.bs-wrap .my-1 { margin-top: var(--bs-sp-1) !important; margin-bottom: var(--bs-sp-1) !important; }
.bs-wrap .my-2 { margin-top: var(--bs-sp-2) !important; margin-bottom: var(--bs-sp-2) !important; }
.bs-wrap .my-3 { margin-top: var(--bs-sp-3) !important; margin-bottom: var(--bs-sp-3) !important; }
.bs-wrap .my-4 { margin-top: var(--bs-sp-4) !important; margin-bottom: var(--bs-sp-4) !important; }
.bs-wrap .my-5 { margin-top: var(--bs-sp-5) !important; margin-bottom: var(--bs-sp-5) !important; }

/* Auto margins */
.bs-wrap .m-auto  { margin: auto !important; }
.bs-wrap .mt-auto { margin-top: auto !important; }
.bs-wrap .me-auto { margin-right: auto !important; }
.bs-wrap .mb-auto { margin-bottom: auto !important; }
.bs-wrap .ms-auto { margin-left: auto !important; }
.bs-wrap .mx-auto { margin-left: auto !important; margin-right: auto !important; }
.bs-wrap .my-auto { margin-top: auto !important; margin-bottom: auto !important; }
/* ==========================================================
   Scoped Text Align Utilities (Bootstrap-like) — .bs-wrap
   Includes: text-start/center/end + responsive variants
   Breakpoints: sm 576, md 768, lg 992, xl 1200, xxl 1400
   ========================================================== */

/* Base */
.bs-wrap .text-start  { text-align: left !important; }
.bs-wrap .text-center { text-align: center !important; }
.bs-wrap .text-end    { text-align: right !important; }

/* SM ≥ 576px */
@media (min-width: 576px) {
  .bs-wrap .text-sm-start  { text-align: left !important; }
  .bs-wrap .text-sm-center { text-align: center !important; }
  .bs-wrap .text-sm-end    { text-align: right !important; }
}

/* MD ≥ 768px */
@media (min-width: 768px) {
  .bs-wrap .text-md-start  { text-align: left !important; }
  .bs-wrap .text-md-center { text-align: center !important; }
  .bs-wrap .text-md-end    { text-align: right !important; }
}

/* LG ≥ 992px */
@media (min-width: 992px) {
  .bs-wrap .text-lg-start  { text-align: left !important; }
  .bs-wrap .text-lg-center { text-align: center !important; }
  .bs-wrap .text-lg-end    { text-align: right !important; }
}

/* XL ≥ 1200px */
@media (min-width: 1200px) {
  .bs-wrap .text-xl-start  { text-align: left !important; }
  .bs-wrap .text-xl-center { text-align: center !important; }
  .bs-wrap .text-xl-end    { text-align: right !important; }
}

/* XXL ≥ 1400px */
@media (min-width: 1400px) {
  .bs-wrap .text-xxl-start  { text-align: left !important; }
  .bs-wrap .text-xxl-center { text-align: center !important; }
  .bs-wrap .text-xxl-end    { text-align: right !important; }
}


/* ---------- Ratio utilities ---------- */
/* Pattern Bootstrap: .ratio + .ratio-16x9 etc */
.bs-wrap .ratio {
  position: relative;
  width: 100%;
}
.bs-wrap .ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio, 56.25%);
  content: "";
}
.bs-wrap .ratio > * {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

/* Common ratios (Bootstrap 5.3) */
.bs-wrap .ratio-1x1   { --bs-aspect-ratio: 100%; }
.bs-wrap .ratio-4x3   { --bs-aspect-ratio: calc(3 / 4 * 100%); }  /* 75% */
.bs-wrap .ratio-16x9  { --bs-aspect-ratio: calc(9 / 16 * 100%); } /* 56.25% */
.bs-wrap .ratio-21x9  { --bs-aspect-ratio: calc(9 / 21 * 100%); } /* ~42.857% */

/* Optional helper: make images/videos behave nicely */
.bs-wrap .ratio img,
.bs-wrap .ratio video,
.bs-wrap .ratio iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bs-wrap .visually-hidden,
.bs-wrap .visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.bs-wrap .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),
.bs-wrap .visually-hidden:not(caption) {
  position: absolute !important;
}
.bs-wrap .visually-hidden *,
.bs-wrap .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}
.bs-wrap .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}
/* ==========================================================
   Pagination (Bootstrap-like) — scoped in .bs-wrap
   ========================================================== */

.bs-wrap .bs-pagination .pagination{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.bs-wrap .bs-pagination .page-item{
  display: inline-flex;
}

.bs-wrap .bs-pagination .page-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 10px;
  text-decoration: none;
  line-height: 1;
  background: #fff;
  color: inherit;
  transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
}

/* hover / focus */
.bs-wrap .bs-pagination a.page-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
}

/* active */
.bs-wrap .bs-pagination .page-item.active .page-link{
  background: var(--e-global-color-primary, #0d6efd);
  border-color: var(--e-global-color-primary, #0d6efd);
  color: #fff;
}

/* disabled (dots) */
.bs-wrap .bs-pagination .page-item.disabled .page-link{
  opacity: .55;
  pointer-events: none;
  background: rgba(0,0,0,.04);
}

/* nicer dots */
.bs-wrap .bs-pagination .page-numbers.dots.page-link{
  min-width: 40px;
}

.category-archive {
  margin: 0 auto;
  padding: 32px 16px;
}

@media(min-width:1200px) {
  .category-archive { max-width: 1140px; }
}

.archive-header {
  margin-bottom: 24px;
}

.archive-title {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.2;
}

.archive-description {
  opacity: 0.85;
}

.grid-card {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease;
}

.grid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-media {
  aspect-ratio: 21 / 9;
  background: rgba(0,0,0,.04);
  overflow: hidden;
  margin-left: calc(-1 * var(--bs-gutter-x));
  margin-right: calc(-1 * var(--bs-gutter-x));
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img--placeholder {
  width: 100%;
  height: 100%;
}

.card-title {
  color: var(--e-global-color-primary);
  margin: 0 !important;
}

.archive-pagination {
  margin-top: 2rem;
}