:root {
  --paper: #fbf6eb;
  --paper-2: #f6eee0;
  --card: #ffffff;
  --ink: #1f0d14;
  --ink-2: #4a2a34;
  --muted: #8a756e;
  --muted-2: #b8a9a2;
  --line: #ede3d3;
  --line-2: #f1e9d9;
  --brand: #3a1320;
  --brand-2: #5a1e31;
  --brand-3: #7a2a44;
  --success-bg: #dff2e0;
  --success-ink: #17542a;
  --shadow:
    0 2px 16px rgba(58, 19, 32, .06),
    0 1px 2px rgba(58, 19, 32, .08);
  --shadow-lg:
    0 12px 40px rgba(58, 19, 32, .10),
    0 2px 8px rgba(58, 19, 32, .08);
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  margin: 0;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 246, 235, .9);
  backdrop-filter: saturate(180%) blur(14px);
}

.topbar-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.crest-image {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  color: var(--ink);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 17px;
  line-height: 1.1;
}

.brand-text small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.signout {
  padding: 9px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 700;
  transition:
    transform .18s ease,
    color .18s ease,
    border-color .18s ease;
}

.signout:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.wrap {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.welcome {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      120% 180% at 10% -20%,
      #7a2a44 0%,
      var(--brand) 55%,
      #1f0d14 100%
    );
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.welcome::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      60% 60% at 70% 20%,
      rgba(255, 255, 255, .1) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.welcome-main,
.welcome-side {
  position: relative;
  z-index: 1;
}

.welcome-main {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 5px;
  height: 5px;
  display: inline-block;
  border-radius: 50%;
  background: #ffd6a8;
  box-shadow:
    0 0 0 4px rgba(255, 214, 168, .18);
}

.welcome h1 {
  max-width: 24ch;
  margin-bottom: 12px;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.05;
}

.email {
  max-width: 100%;
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
}

.welcome-side {
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.welcome-side span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.welcome-side strong {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 20px;
  letter-spacing: .02em;
  overflow-wrap: anywhere;
}

.welcome-side small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, .66);
  font-size: 12px;
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.stat-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 4px;
  color: var(--ink);
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  font-size: 22px;
  font-weight: 600;
}

.stat-score {
  font-family:
    Inter,
    system-ui,
    sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--brand);
}

.section {
  margin-top: 36px;
}

.section-head {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-head p {
  margin: 0 0 6px;
  color: var(--brand-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: 28px;
}

.count {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.course-list {
  display: grid;
  gap: 16px;
}

.course {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  box-shadow: var(--shadow);
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.course:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.course-top {
  padding: 26px 28px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.course-title-block {
  min-width: 0;
}

.code {
  margin-bottom: 12px;
  padding: 5px 10px;
  display: inline-flex;
  border: 1px solid #f2d7e0;
  border-radius: 999px;
  background: #f9e8ee;
  color: var(--brand-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.course-top h3 {
  color: var(--ink);
  font-size: clamp(25px, 2.7vw, 34px);
  line-height: 1.05;
}

.badge-paid {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  border: 1px solid #c7eac9;
  border-radius: 999px;
  background: var(--success-bg);
  color: var(--success-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
}

.badge-paid::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffcf6;
}

.fact {
  min-width: 0;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact:nth-child(3n) {
  border-right: 0;
}

.fact:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.fact dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.fact dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.fact dd.mono {
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Consolas,
    monospace;
  font-size: 13px;
  letter-spacing: .01em;
}

.certificate-status {
  color: var(--muted) !important;
  font-weight: 500 !important;
}

.copy {
  margin-left: 6px;
  padding: 2px 8px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  vertical-align: middle;
}

.copy:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.course-bottom {
  padding: 18px 24px 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background:
    linear-gradient(
      180deg,
      #fff 0%,
      #fffbf3 100%
    );
}

.progress-wrap {
  min-width: 280px;
  padding: 14px 16px;
  flex: 1 1 340px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.progress-head {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.progress-head span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.progress-head strong {
  font-size: 14px;
}

.track {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f2e9da;
}

.fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--brand),
      var(--brand-3)
    );
  transition:
    width .9s cubic-bezier(.16, 1, .3, 1);
}

.meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}

.meta b {
  color: var(--ink-2);
}

.history {
  margin-top: 12px;
  padding-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px dashed var(--line);
}

.history-title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.chip {
  padding: 6px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}

.chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-3);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 46px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition:
    transform .18s ease,
    background .18s ease,
    color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow:
    0 4px 14px rgba(58, 19, 32, .22);
}

.btn-primary:hover {
  background: var(--brand-2);
  transform: translateY(-1px);
  box-shadow:
    0 8px 20px rgba(58, 19, 32, .28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--brand);
  background: #fffefb;
  color: var(--brand);
}

.btn-disabled {
  border: 1px dashed var(--line);
  background: #fff;
  color: var(--muted);
  cursor: default;
}

.empty {
  padding: 36px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  text-align: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, .22);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition:
    opacity .28s ease,
    transform .28s cubic-bezier(.16, 1, .3, 1);
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tick {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
}

.student-password-modal-open {
  overflow: hidden;
}

.student-password-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  padding: 1rem;
  display: grid;
  place-items: center;
  background: rgba(22, 10, 14, .82);
  backdrop-filter: blur(6px);
}

.student-password-modal {
  width: min(100%, 620px);
  max-height: calc(100vh - 2rem);
  padding: clamp(1.6rem, 5vw, 3.5rem);
  overflow-y: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 35px 100px rgba(0, 0, 0, .4);
}

.password-eyebrow {
  margin: 0 0 .6rem;
  color: var(--brand-3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.student-password-modal h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1;
}

.password-intro {
  margin-bottom: 1.5rem;
  color: var(--ink-2);
}

.student-password-modal form {
  display: grid;
  gap: 1.1rem;
}

.student-password-modal label {
  display: grid;
  gap: .5rem;
}

.student-password-modal label span {
  color: var(--brand-3);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.student-password-modal input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.student-password-modal form > button {
  min-height: 56px;
  padding: .9rem 1rem;
  border: 0;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  letter-spacing: .04em;
  cursor: pointer;
}

.student-password-rules {
  padding: 1rem;
  border-radius: 12px;
  background: var(--paper-2);
}

.student-password-rules ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.student-form-error {
  margin-bottom: 1.2rem;
  padding: 1rem;
  border-left: 5px solid #b82929;
  background: #fff0ed;
  color: #7e1717;
}

.student-form-error ul {
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 860px) {
  .welcome {
    align-items: stretch;
    flex-direction: column;
  }

  .welcome-side {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
  }

  .fact:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .fact:nth-child(2n) {
    border-right: 0;
  }

  .fact:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .course-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .progress-wrap {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .wrap {
    padding: 18px 16px 60px;
  }

  .topbar-inner {
    padding: 12px 16px;
  }

  .brand-text small {
    display: none;
  }

  .signout {
    padding: 9px 12px;
  }

  .welcome {
    padding: 24px 20px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-top {
    padding: 22px 20px 18px;
    flex-direction: column;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(3n),
  .fact:nth-child(2n),
  .fact:nth-last-child(-n + 3),
  .fact:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .course-bottom {
    padding: 16px;
  }

  .actions {
    display: grid;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .count {
    white-space: normal;
  }
}

@media print {
  .topbar,
  .actions,
  .copy,
  .toast {
    display: none !important;
  }
}


/* FIRST BCI REAL DASHBOARD LOGO */

.crest-image {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* FBCI-AVAILABLE-COURSES-STYLES */

.available-course-section {
  margin-top: 34px;
}

.catalog-description {
  max-width: 850px;
  margin: 18px 0 22px;
  color: #6e5b55;
  font-size: 15px;
  line-height: 1.7;
}

.catalog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.catalog-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #541227;
  background: #541227;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.catalog-primary-action:hover,
.catalog-primary-action:focus-visible {
  border-color: #6b1932;
  background: #6b1932;
}

@media (max-width: 700px) {
  .catalog-primary-action {
    width: 100%;
  }
}


/* FBCI-SIGNUP-TOKEN-STYLES */

.signup-wrap {
  max-width: 980px;
}

.signup-introduction {
  margin-bottom: 28px;
}

.signup-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: #6e5b55;
  font-size: 16px;
  line-height: 1.75;
}

.signup-section {
  padding: 32px;
}

.signup-form {
  display: grid;
  gap: 24px;
}

.signup-grid {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.signup-grid label {
  display: grid;
  gap: 8px;
}

.signup-grid label > span {
  color: #541227;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signup-grid input {
  width: 100%;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid #d9cbc2;
  background: #fff;
  color: #251a17;
  font: inherit;
}

.signup-grid input:focus {
  border-color: #8e6c2f;
  outline: 2px solid
    rgba(142, 108, 47, 0.14);
}

.signup-wide {
  grid-column: 1 / -1;
}

.password-rules {
  padding: 14px 16px;
  border-left: 3px solid #8e6c2f;
  background: #f7f1e8;
  color: #65544d;
  font-size: 13px;
  line-height: 1.6;
}

.signup-errors {
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid #b73434;
  background: #fff5f5;
  color: #7f2020;
}

.signup-errors ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.signup-submit {
  border: 0;
  cursor: pointer;
}

.signup-login-link {
  margin: 0;
  color: #6e5b55;
}

.signup-login-link a {
  color: #541227;
  font-weight: 800;
}

.public-signup-prompt {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e1d6ce;
  text-align: center;
}

.public-signup-prompt a {
  color: #541227;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.public-signup-prompt small {
  color: #786760;
}

@media (max-width: 720px) {
  .signup-section {
    padding: 22px 18px;
  }

  .signup-grid {
    grid-template-columns: 1fr;
  }

  .signup-wide {
    grid-column: auto;
  }
}


/* FBCI-COURSE-TOKEN-REDEMPTION-STYLES */

.dashboard-enrollment-notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border: 1px solid #5d8d64;
  background: #f2faf3;
  color: #315b37;
  font-weight: 700;
  line-height: 1.55;
}

.dashboard-enrollment-notice-error {
  border-color: #b73434;
  background: #fff5f5;
  color: #7f2020;
}

.catalog-token-form {
  display: grid;
  grid-template-columns:
    minmax(190px, 1fr) auto;
  gap: 10px;
  width: min(100%, 620px);
  padding: 16px;
  border: 1px solid #dfd1c8;
  background: #fbf8f5;
}

.catalog-token-form label {
  display: grid;
  gap: 6px;
}

.catalog-token-form label span {
  color: #541227;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-token-form input {
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid #cfbeb3;
  background: #fff;
  color: #251a17;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-token-button {
  align-self: end;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #8e6c2f;
  background: #fff;
  color: #541227;
  cursor: pointer;
  font-weight: 900;
}

.catalog-token-button:hover,
.catalog-token-button:focus-visible {
  background: #8e6c2f;
  color: #fff;
}

.catalog-token-form small {
  grid-column: 1 / -1;
  color: #74635d;
  line-height: 1.5;
}

.signup-grid label small {
  color: #74635d;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 680px) {
  .catalog-token-form {
    grid-template-columns: 1fr;
  }

  .catalog-token-button {
    width: 100%;
  }

  .catalog-token-form small {
    grid-column: auto;
  }
}

