@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Tiny5&display=swap');

:root,
[data-bs-theme="light"] {
  
  --brand-primary: #41980A;
  --brand-primary-hover: #347a08;
  --brand-primary-light: #f2f9f0;
  --brand-primary-border: #91cc72;
  --brand-bg-subtle: #f4f8f3;
  --brand-border: #e2ede0;
  --brand-text: #2c332b;

  
  --source-card-bg: #ffffff;
  --source-img-bg: rgba(65, 152, 10, 0.05);

  
  --bs-primary: #41980A;
  --bs-primary-rgb: 65, 152, 10;
  --bs-accent: #3b8909;
  --bs-accent-rgb: 59, 137, 9;
  --bd-primary-bg: var(--bs-primary);
  --bd-toc-color: var(--bs-primary);
  --bd-sidebar-link-bg: rgba(var(--bs-primary-rgb), 0.2);

  
  --bs-form-check-input-checked-bg-color: var(--bs-primary);
  --bs-form-check-input-checked-border-color: var(--bs-primary);
  --bs-form-check-input-indeterminate-bg-color: var(--bs-primary);
  --bs-form-check-input-indeterminate-border-color: var(--bs-primary);
  --bs-form-range-thumb-bg: var(--bs-primary);
  --bs-form-range-thumb-active-bg: var(--bs-accent);
}

[data-bs-theme="dark"] {
  
  --brand-bg-subtle: rgba(65, 152, 10, 0.15);
  --brand-border: rgba(65, 152, 10, 0.25);
  --brand-text: #e1e7e0;
  --brand-primary-light: rgba(65, 152, 10, 0.2);
  --brand-primary-border: #62c722;

  
  --source-card-bg: var(--bs-body-bg);
  --source-img-bg: rgba(65, 152, 10, 0.1);

  
  --bs-primary: #41980A;
  --bs-primary-rgb: 65, 152, 10;
  --bs-accent: #3b8909;
  --bs-accent-rgb: 59, 137, 9;
  --bd-primary-bg: var(--bs-primary);
  --bd-toc-color: var(--bs-primary);
  --bd-sidebar-link-bg: rgba(var(--bs-primary-rgb), 0.5);

  
  --bs-form-check-input-checked-bg-color: var(--bs-primary);
  --bs-form-check-input-checked-border-color: var(--bs-primary);
  --bs-form-check-input-indeterminate-bg-color: var(--bs-primary);
  --bs-form-check-input-indeterminate-border-color: var(--bs-primary);
  --bs-form-range-thumb-bg: var(--bs-primary);
  --bs-form-range-thumb-active-bg: var(--bs-accent);
}

body:not(.sb-nav-fixed) html,
body:not(.sb-nav-fixed) body,
body:not(.sb-nav-fixed) main,
body:not(.sb-nav-fixed) footer {
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.site-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
}

.site-title:link,
.site-title:visited,
.site-title:hover,
.site-title:active { 
  color: var(--bs-primary);
}

.oops {
  font-family: "Tiny5", serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.fluid-heading {
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem) !important;
}

.text-small {
  font-size: 85%;
}

.text-brand,
.text-theme {
  color: var(--brand-primary) !important;
}

[data-bs-theme="dark"] .text-brand {
  color: #62c722 !important;
}

a {
  color: var(--bs-primary);
  text-decoration: underline dotted;
}

a:hover,
a:focus {
  text-decoration-style: solid;
}

body:not(.sb-nav-fixed) textarea:focus,
body:not(.sb-nav-fixed) input[type="text"]:focus,
body:not(.sb-nav-fixed) input[type="password"]:focus,
body:not(.sb-nav-fixed) input[type="datetime"]:focus,
body:not(.sb-nav-fixed) input[type="datetime-local"]:focus,
body:not(.sb-nav-fixed) input[type="date"]:focus,
body:not(.sb-nav-fixed) input[type="month"]:focus,
body:not(.sb-nav-fixed) input[type="time"]:focus,
body:not(.sb-nav-fixed) input[type="week"]:focus,
body:not(.sb-nav-fixed) input[type="number"]:focus,
body:not(.sb-nav-fixed) input[type="email"]:focus,
body:not(.sb-nav-fixed) input[type="url"]:focus,
body:not(.sb-nav-fixed) input[type="search"]:focus,
body:not(.sb-nav-fixed) input[type="tel"]:focus,
body:not(.sb-nav-fixed) input[type="color"]:focus,
body:not(.sb-nav-fixed) .uneditable-input:focus,
body:not(.sb-nav-fixed) .form-control:focus,
body:not(.sb-nav-fixed) .form-select:focus {    
  border-color: var(--brand-primary-border);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(var(--bs-primary-rgb), 1);
  outline: 0 none;
}

.search-box .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.25rem rgba(65, 152, 10, 0.25);
}

.form-control-dark {
  border-color: var(--bs-gray);
}

.form-control-dark:focus {
  border-color: #fff;
  box-shadow: 0 0 0 .25rem rgba(255, 255, 255, .25);
}

body:not(.sb-nav-fixed) input, 
body:not(.sb-nav-fixed) textarea, 
body:not(.sb-nav-fixed) .form-control { 
  cursor: text !important; 
  pointer-events: auto !important; 
}

body:not(.sb-nav-fixed) select, 
body:not(.sb-nav-fixed) .form-select, 
body:not(.sb-nav-fixed) button, 
body:not(.sb-nav-fixed) .btn, 
body:not(.sb-nav-fixed) .delete-btn { 
  cursor: pointer !important; 
  pointer-events: auto !important; 
}

.form-check-input:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.form-check-input:indeterminate {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.form-check-input:focus {
  border-color: var(--brand-primary-border);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-switch .form-check-input:checked,
.form-switch .form-check-input[type=checkbox]:checked {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.form-switch .form-check-input:focus {
  border-color: var(--brand-primary-border) !important;
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2341980A'/%3e%3c/svg%3e") !important;
}

.form-switch .form-check-input:checked:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e") !important;
}

.form-range::-webkit-slider-thumb {
  background-color: var(--bs-primary);
}
.form-range::-webkit-slider-thumb:active {
  background-color: var(--bs-accent);
}
.form-range::-moz-range-thumb {
  background-color: var(--bs-primary);
}
.form-range::-moz-range-thumb:active {
  background-color: var(--bs-accent);
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.pagination .page-link {
  color: var(--bs-primary) !important;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
  color: var(--bs-accent) !important;
  z-index: 2;
}

.pagination .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25) !important;
}

.pagination .page-item.active .page-link {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
  color: #fff !important;
}

.pagination .page-item.disabled .page-link {
  color: var(--bs-secondary-color, #6c757d) !important;
}

.btn-brand,
.btn-theme {
  background-color: var(--brand-primary);
  color: #ffffff;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.25rem;
  transition: background-color 0.2s ease-in-out;
}

.btn-brand:hover, 
.btn-brand:focus,
.btn-theme:hover, 
.btn-theme:focus {
  background-color: var(--brand-primary-hover);
  color: #ffffff;
}

.btn-bd-primary {
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: var(--bs-accent);
  --bs-btn-hover-border-color: var(--bs-accent);
  --bs-btn-focus-shadow-rgb: var(--bs-primary);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: var(--bs-accent);
  --bs-btn-active-border-color: var(--bs-accent);
}

.btn-discord {
  --bs-btn-color: #fff;
  --bs-btn-bg: #7289da;
  --bs-btn-border-color: #7289da;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5b6eae;
  --bs-btn-hover-border-color: #5668a4;
  --bs-btn-focus-shadow-rgb: 114, 137, 218;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #51629b;
  --bs-btn-active-border-color: #4c5c91;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #7289da;
  --bs-btn-disabled-border-color: #7289da;
}

.btn-hover-light {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
}

.btn-hover-light:hover,
.btn-hover-light:focus {
  color: var(--bs-link-hover-color);
  background-color: var(--bs-tertiary-bg);
}

.btn-custom:hover, 
.btn-custom:focus, 
.btn-custom:active {
  color: #fff;
  background-color: #fa5252;
  border-color: #fa5252;
  box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.5);
}

.btn-outline-success {
  --bs-btn-color: #41980A;
  --bs-btn-border-color: #41980A;
  --bs-btn-hover-bg: #41980A;
  --bs-btn-hover-border-color: #41980A;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #357d08;
  --bs-btn-active-border-color: #357d08;
}

[data-bs-theme="dark"] .btn-outline-success {
  --bs-btn-color: #62b52b;
  --bs-btn-border-color: #62b52b;
  --bs-btn-hover-bg: #62b52b;
  --bs-btn-hover-border-color: #62b52b;
  --bs-btn-hover-color: #122405;
}

body:not(.sb-nav-fixed) .page-header,
body:not(.sb-nav-fixed) .qa-header {
  background-color: var(--brand-bg-subtle);
  border-bottom: 1px solid var(--brand-border);
  padding: 3.5rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.dropdown-toggle:not(:focus) {
  outline: 0;
}

.dropdown-menu-primary .dropdown-item.active,
.dropdown-menu-primary .dropdown-item:active {
  background-color: var(--bs-primary) !important; 
  color: #ffffff !important;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.sticky-nav {
  position: sticky;
  top: 2rem;
}

.nav-terms .nav-link,
.nav-disclaimer .nav-link {
  color: var(--bs-body-color);
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-left: 3px solid transparent;
  border-radius: 0;
  transition: all 0.2s ease;
}

.nav-terms .nav-link:hover,
.nav-disclaimer .nav-link:hover {
  color: var(--brand-primary);
  background-color: var(--brand-bg-subtle);
}

.nav-terms .nav-link.active,
.nav-disclaimer .nav-link.active {
  color: var(--brand-primary);
  font-weight: 600;
  border-left-color: var(--brand-primary);
  background-color: var(--brand-bg-subtle);
}

nav[data-toggle="toc"] .nav > li > a:hover,
nav[data-toggle="toc"] .nav > li > a:focus {
  color: var(--bs-primary);
  border-left: 1px solid var(--bs-primary);
}

nav[data-toggle="toc"] .nav-link.active,
nav[data-toggle="toc"] .nav-link.active:hover,
nav[data-toggle="toc"] .nav-link.active:focus {
  color: var(--bs-primary);
  border-left: 2px solid var(--bs-primary);
}

.badge-theme {
  background-color: rgba(65, 152, 10, 0.15);
  color: var(--brand-primary);
  font-weight: 600;
}

.border-green {
  --bs-border-color: #41980A;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.info-callout {
  background-color: var(--brand-bg-subtle);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.disclaimer-wrapper {
  line-height: 1.6;
}

.disclaimer-section,
.terms-section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--bs-border-color);
}

.disclaimer-section:last-child,
.terms-section:last-child {
  border-bottom: none;
}

.disclaimer-section h2,
.terms-section h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  scroll-margin-top: 2rem;
}

.link-card {
  background-color: var(--bs-card-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  color: var(--bs-body-color);
  display: block;
}

.link-card:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 12px rgba(65, 152, 10, 0.15);
  transform: translateY(-2px);
  color: var(--brand-primary);
}

.source-card {
  background-color: var(--source-card-bg);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  border-color: rgba(65, 152, 10, 0.2);
}

.source-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 .5rem 1rem rgba(65, 152, 10, 0.15) !important;
  border-color: rgba(65, 152, 10, 0.4);
}

.book-img-wrapper {
  background-color: var(--source-img-bg);
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.icon-shape {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background-color: var(--bs-body-bg);
  border-color: var(--bs-border-color) !important;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0.5rem 1.5rem rgba(65, 152, 10, 0.2) !important;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #edf3eb;
  color: var(--brand-primary);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.category-card:hover .icon-circle {
  background-color: var(--brand-primary);
  color: #ffffff !important;
  transform: scale(1.08);
}

[data-bs-theme="dark"] .category-card {
  background-color: var(--bs-tertiary-bg);
}

[data-bs-theme="dark"] .icon-circle {
  background-color: rgba(65, 152, 10, 0.2);
  color: #62c722;
}

.contact-card {
  background-color: var(--brand-bg-subtle);
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
}

.accordion {
  --bs-accordion-active-bg: rgba(var(--bs-primary-rgb), 0.9);
  --bs-accordion-btn-focus-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(var(--bs-primary-rgb), 1);
  --bs-accordion-active-color: #fff;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
}

.accordion-item {
  border: 1px solid var(--brand-border);
  border-radius: 0.75rem !important;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.accordion-button {
  font-weight: 600;
  color: var(--brand-text);
  background-color: var(--bs-body-bg);
  padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
  color: var(--brand-primary);
  background-color: var(--brand-bg-subtle);
  box-shadow: inset 0 -1px 0 var(--brand-border);
}

.accordion-button:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.25rem rgba(65, 152, 10, 0.2);
}

.accordion-button::after {
  filter: grayscale(1) opacity(0.7);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(48%) sepia(85%) saturate(542%) hue-rotate(57deg) brightness(92%) contrast(92%);
}

[data-bs-theme="dark"] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708 z'/%3e%3c/svg%3e");
}

.featurette-divider {
  margin: 5rem 0;
}

.featurette-heading {
  font-family: "Open Sans", sans-serif;
  letter-spacing: -.05rem;
}

.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  user-select: none;
}

.bd-mode-toggle {
  z-index: 1000;
}

.bd-mode-toggle .dropdown-item:hover,
.bd-mode-toggle .dropdown-item:focus,
.bd-mode-toggle .dropdown-item.active {
  background-color: var(--brand-primary); 
  color: #ffffff;
}

.bd-mode-toggle .dropdown-menu .active .bi {
  display: block !important;
}

.img-book {
  width: auto;
  max-height: 220px;
  min-height: 180px;
  height: 16vw;
  object-fit: contain;
}

.mission-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-media img {
  width: 85%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}

.draggable-item { 
  cursor: grab; 
  transition: background-color 0.15s ease; 
}

.draggable-item:active { 
  cursor: grabbing; 
}

.sortable-ghost {
  opacity: 0.35;
  background-color: var(--brand-primary-light) !important;
  border: 2px dashed var(--brand-primary-border) !important;
}

.source-thumbnail {
  width: 40px;
  height: 55px;
  object-fit: cover;
  border-radius: 4px;
}

.sub-category-list {
  min-height: 10px;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  border-left: 3px solid var(--brand-primary);
  list-style: none;
}

.w-220px { width: 220px; }
.w-280px { width: 280px; }
.w-340px { width: 340px; }
.opacity-10 { opacity: .1; }

@media (min-width: 40em) {
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }

  .col-md-7 p {
    font-size: clamp(0.9rem, 0.8rem + 0.3vw, 1.1rem);
  }

  .mission-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 1.5rem;
    align-items: center;
  }

  .mission-media {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mission-media img {
    height: auto;
    max-height: 85%;
    width: auto;
    max-width: 85%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: top;
    flex-shrink: 1;
    min-height: 0;
  }

  .mission-media .mission-caption {
    flex-shrink: 0;
  }
}

@media (min-width: 992px) {
  /* Article page layout uses Bootstrap's own row/col-lg-3/col-lg-9 grid
     (see learn.php) for the sidebar/content split - it already handles
     symmetric gutters correctly, so this just adds sticky positioning to
     the sidebar column instead of reimplementing width math ourselves. */
  .bd-sidebar {
    position: sticky;
    top: 1rem;
    display: block !important;
    height: calc(100vh - 2rem);
    overflow-y: auto;
  }
}

/* Wikipedia-style "Contents" box, rendered inside the article body and
   floated to the right so body text wraps beside it on larger screens. */
.wiki-toc {
  max-width: 100%;
  margin: 0 0 1.5rem;
  padding: 0.85rem 1.25rem;
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--brand-border);
  border-radius: 0.5rem;
}

@media (min-width: 992px) {
  .wiki-toc {
    float: right;
    width: 260px;
    margin: 0 0 1rem 1.5rem;
  }

  /* Keeps the floated box contained within the article body instead of
     spilling into the cards/nav that follow it. */
  .article-content::after {
    content: "";
    display: table;
    clear: both;
  }
}

.wiki-toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.wiki-toc-toggle {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brand-primary);
  cursor: pointer;
}

.wiki-toc-toggle:hover {
  text-decoration: underline;
}

.wiki-toc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.wiki-toc-list .wiki-toc-sublist {
  margin: 0.3rem 0 0;
  padding-left: 1.5rem;
  list-style: none;
}

.wiki-toc-list .nav-item {
  margin-bottom: 0.3rem;
}

.wiki-toc-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.wiki-toc-caret {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  width: 1rem;
  color: var(--bs-secondary-color);
  cursor: pointer;
}

.wiki-toc-caret:hover {
  color: var(--brand-primary);
}

.wiki-toc-caret-spacer {
  display: inline-block;
  width: 1rem;
  flex-shrink: 0;
}

.wiki-toc-list .nav-link {
  display: inline;
  padding: 0;
  color: var(--bs-body-color);
  text-decoration: none;
}

.wiki-toc-list .nav-link:hover,
.wiki-toc-list .nav-link:focus {
  color: var(--bs-primary);
  text-decoration: underline;
}

.wiki-toc-list .nav-link.active {
  color: var(--bs-primary);
  font-weight: 600;
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
.cc-page-header { background-color: var(--brand-bg-subtle) !important; border-bottom: 1px solid var(--brand-border) !important; }

.cc-calc-card { border: 1px solid var(--brand-border) !important; }
.cc-calc-card .card-header { background-color: var(--brand-primary); color: #fff; }

.cc-result {
  background-color: var(--brand-bg-subtle);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 0.75rem 0.75rem 0;
  padding: 1.25rem;
  text-align: left;
}

.cc-result-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.2;
}
[data-bs-theme="dark"] .cc-result-value { color: #62c722; }

.cc-result-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--brand-border);
}
.cc-result-stat:last-child { border-bottom: none; }
.cc-result-stat-label { color: var(--bs-secondary-color); }
.cc-result-stat-value { font-weight: 700; color: var(--brand-primary); font-size: 1.15rem; }
[data-bs-theme="dark"] .cc-result-stat-value { color: #62c722; }

.cc-result-notes {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
  color: var(--bs-secondary-color);
  font-size: 0.9rem;
}
.cc-result-notes li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.4rem;
}
.cc-result-notes li::before {
  content: "\2022";
  color: var(--brand-primary);
  position: absolute;
  left: 0;
}
.cc-result-notes li:last-child { margin-bottom: 0; }

.dc-page-header { background-color: var(--brand-bg-subtle) !important; border-bottom: 1px solid var(--brand-border) !important; }

#dc-food-rows .dc-row { border: 1px solid var(--brand-border); border-radius: 0.75rem; padding: 0.75rem; }
#dc-food-rows .dc-row + .dc-row { margin-top: 0.75rem; }

.dc-facts-card .card-header { background-color: var(--brand-primary); color: #fff; }

.dc-facts-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--brand-border); }
.dc-facts-row:last-child { border-bottom: none; }
.dc-facts-row.dc-sub { padding-left: 1.25rem; color: var(--bs-secondary-color); font-size: 0.92rem; }
.dc-facts-label { font-weight: 600; }
.dc-facts-row.dc-sub .dc-facts-label { font-weight: 400; }

.dc-vitc-notice {
  background-color: rgba(197, 57, 41, 0.1);
  border: 1px solid rgba(197, 57, 41, 0.35);
  color: #c53929;
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
[data-bs-theme="dark"] .dc-vitc-notice { color: #ff8a95; }

.dc-ratio-row { border-radius: 0.5rem; padding: 0.6rem 0.9rem; margin-top: 0.75rem; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--brand-border) !important; background-color: var(--brand-bg-subtle) !important; }

.dc-ratio-row.dc-ratio-good { background-color: rgba(11, 128, 67, 0.12) !important; border-color: rgba(11, 128, 67, 0.35) !important; }
.dc-ratio-row.dc-ratio-good .dc-facts-label, .dc-ratio-row.dc-ratio-good #dc-ratio { color: #0b8043 !important; }
.dc-ratio-row.dc-ratio-caution { background-color: rgba(180, 95, 6, 0.12) !important; border-color: rgba(180, 95, 6, 0.35) !important; }
.dc-ratio-row.dc-ratio-caution .dc-facts-label, .dc-ratio-row.dc-ratio-caution #dc-ratio { color: #b45f06 !important; }
.dc-ratio-row.dc-ratio-alert { background-color: rgba(197, 57, 41, 0.12) !important; border-color: rgba(197, 57, 41, 0.35) !important; }
.dc-ratio-row.dc-ratio-alert .dc-facts-label, .dc-ratio-row.dc-ratio-alert #dc-ratio { color: #c53929 !important; }

.dc-flag-notice {
  background-color: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: #916200;
  border-radius: 0.5rem;
  padding: 0.6rem 0.9rem;
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
[data-bs-theme="dark"] .dc-flag-notice { color: #ffc107; }

#sf-filters-card { background-color: var(--bs-tertiary-bg); }

#sf-table-wrap { overflow: auto; max-height: 75vh; scrollbar-gutter: stable; }

#sf-table { width: 100%; }
#safeFoodsRoot.advanced #sf-table { min-width: 900px; }

#sf-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--bs-primary);
  color: var(--bs-white, #fff);
  box-shadow: inset 0 -2px 0 var(--brand-border, #dee2e6);
}
#sf-table th { white-space: nowrap; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; user-select: none; }
#sf-table thead th, #sf-table thead th small, #sf-table thead th .fw-normal { color: var(--bs-white, #fff) !important; }
#sf-table thead th small { opacity: 0.85; }
#sf-table th.sortable { cursor: pointer; }
#sf-table th.sortable:hover { text-decoration: underline; }
#sf-table th .sort-arrow { display: inline-block; opacity: 0.55; font-size: 0.7rem; margin-left: 3px; transition: transform 0.15s ease; }
#sf-table th.sort-active .sort-arrow { opacity: 1; }
#sf-table th.sort-active.sort-desc .sort-arrow { transform: rotate(180deg); }

#sf-table tbody tr.sf-row-toggle:nth-of-type(4n+3) > td {
  background-color: rgba(25, 135, 84, 0.05) !important;
  background-color: color-mix(in srgb, var(--brand-primary) 8%, transparent) !important;
}
#sf-table tbody tr.sf-detail-row:nth-of-type(4n) > td {
  background-color: rgba(25, 135, 84, 0.05) !important;
  background-color: color-mix(in srgb, var(--brand-primary) 8%, transparent) !important;
}

.sf-adv-col { display: none; }
#safeFoodsRoot.advanced .sf-adv-col { display: table-cell; }
#safeFoodsRoot.advanced .sf-basic-col { display: none; }

.sf-row-toggle { cursor: pointer; }
.sf-detail-row { cursor: pointer; }
#sf-table tbody tr.sf-row-toggle:hover > td { background-color: var(--brand-bg-subtle) !important; }
.sf-detail-row td { border-top: none !important; }
#sf-table tbody tr.sf-row-toggle.expanded > td { border-bottom: none !important; }
.sf-nutrient-pill { background-color: var(--bs-body-bg); border: 1px solid var(--brand-border); border-radius: 0.5rem; padding: 0.35rem 0.6rem; font-size: 0.82rem; }
.sf-meta-line { font-size: 1.1rem; font-weight: 600; color: var(--bs-body-color); line-height: 1.4; }
.sf-badge-good { background-color: var(--brand-primary-light) !important; color: var(--brand-primary) !important; border: 1px solid var(--brand-primary-border) !important; }
.sf-badge-caution { background-color: rgba(255, 193, 7, 0.15) !important; color: #916200 !important; border: 1px solid rgba(255, 193, 7, 0.4) !important; }
[data-bs-theme="dark"] .sf-badge-caution { color: #ffc107 !important; }
.sf-badge-alert { background-color: rgba(220, 53, 69, 0.12) !important; color: #b02a37 !important; border: 1px solid rgba(220, 53, 69, 0.35) !important; }
[data-bs-theme="dark"] .sf-badge-alert { color: #ff8a95 !important; }
.sf-badge-muted { background-color: rgba(108, 117, 125, 0.12) !important; color: #495057 !important; border: 1px solid rgba(108, 117, 125, 0.35) !important; }
[data-bs-theme="dark"] .sf-badge-muted { color: #adb5bd !important; }
.sf-name-flags .badge { font-size: 0.7rem; font-weight: 500; }

.sf-meta-label { color: var(--bs-secondary-color); font-weight: 600; }
.sf-notes:not(:empty) {
  color: var(--brand-primary);
  padding: 0.65rem 0;
}
.sf-row-toggle .fa-chevron-down { transition: transform 0.15s ease; }

@media (max-width: 575.98px) {
  #sf-table th, #sf-table td { padding: 0.5rem 0.5rem; }
  #sf-table th { font-size: 0.68rem; }
  #sf-table td { font-size: 0.85rem; }
  .sf-nutrient-pill { font-size: 0.78rem; padding: 0.3rem 0.5rem; }
}
.sf-row-toggle .fa-chevron-down.rotate-180 { transform: rotate(180deg); }

.uf-page-header {
  background-color: rgba(255, 193, 7, 0.08) !important;
  border-bottom: 1px solid rgba(255, 193, 7, 0.25) !important;
}

#uf-table-scroll { overflow: auto; max-height: 75vh; scrollbar-gutter: stable; }

#unsafeFoodsTable thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--bs-warning);
  color: #664400;
  box-shadow: inset 0 -2px 0 var(--brand-border, #dee2e6);
}
#unsafeFoodsTable th { white-space: nowrap; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; }
#unsafeFoodsTable tbody tr.uf-row-alt > td {
  background-color: rgba(255, 193, 7, 0.06) !important;
}
#unsafeFoodsTable tbody tr.uf-has-notes.uf-expanded > td {
  border-bottom: none !important;
}
#unsafeFoodsTable tbody tr.uf-notes-row > td {
  border-top: none !important;
  padding-top: 0 !important;
}
#unsafeFoodsTable td { vertical-align: top; }
@media (min-width: 768px) {
  #unsafeFoodsTable .uf-name-col { width: 220px; }
}

#unsafeFoodsTable tbody tr.uf-has-notes { cursor: pointer; }
#unsafeFoodsTable tbody tr.uf-notes-row { cursor: pointer; }
.uf-chevron { font-size: 0.7em; transition: transform 0.15s ease; opacity: 0.6; }
tr.uf-expanded .uf-chevron { transform: rotate(180deg); }

.uf-notes {
  color: var(--bs-secondary-color);
  font-size: 0.88rem;
  margin-top: 0.4rem;
}

.pl-badge-pass { background-color: var(--brand-primary-light); color: var(--brand-primary); border: 1px solid var(--brand-primary-border); }
.pl-badge-fail { background-color: rgba(220, 53, 69, 0.12); color: #b02a37; border: 1px solid rgba(220, 53, 69, 0.35); }
[data-bs-theme="dark"] .pl-badge-fail { color: #ff8a95; }
.pl-concern { background-color: rgba(220, 53, 69, 0.1); color: #b02a37; border: 1px solid rgba(220, 53, 69, 0.25); font-size: 0.72rem; }
[data-bs-theme="dark"] .pl-concern { color: #ff8a95; }
#pl-table-wrap { overflow-x: auto; }
#pl-table { min-width: 760px; }
#pl-table th { white-space: nowrap; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--bs-secondary-color); cursor: pointer; user-select: none; }
#pl-table th.sortable:hover { color: var(--brand-primary); }
#pl-table th .sort-arrow { opacity: 0.35; font-size: 0.7rem; margin-left: 3px; }
#pl-table th.sort-active .sort-arrow { opacity: 1; }
.pl-row-toggle { cursor: pointer; }
.pl-row-toggle:hover { background-color: var(--brand-bg-subtle); }
.pl-detail-row td { background-color: var(--brand-bg-subtle); border-top: none; }
.pl-analysis-pill { background-color: var(--bs-body-bg); border: 1px solid var(--brand-border); border-radius: 0.5rem; padding: 0.35rem 0.6rem; font-size: 0.82rem; }
.pl-ingredients { max-height: 140px; overflow-y: auto; }

.transition-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color) !important;
}

.transition-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0.5rem 1.5rem rgba(65, 152, 10, 0.2) !important;
}

[data-bs-theme="dark"] .transition-card {
  background-color: var(--bs-tertiary-bg);
}

.bd-layout,
.bd-article-main {
  min-width: 0;
}

.article-content {
  min-width: 0;
  width: 100%;
  max-width: none !important;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article-content * {
  min-width: 0;
}

.article-content a {
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article-content img,
.article-content iframe,
.article-content video {
  max-width: 100%;
  height: auto;
}

/* Contain floated article images (see .float-start/.float-end below) so
   they don't bleed past the end of the article body into the author card
   or other content that follows. */
.article-content::after {
  content: "";
  display: table;
  clear: both;
}

.article-content figure.float-start,
.article-content figure.float-end {
  max-width: 50%;
}

@media (max-width: 576px) {
  .article-content figure.float-start,
  .article-content figure.float-end {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
  }
}

.article-content pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-content code {
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-content h1 {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--brand-border);
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

.article-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

.article-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

.article-content h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--bs-body-color);
}

.article-content h4,
.article-content h5,
.article-content h6 {
  margin-top: 1.5rem;
}

.article-content h1:first-child,
.article-content h2:first-child,
.article-content h3:first-child,
.article-content h4:first-child,
.article-content h5:first-child,
.article-content h6:first-child {
  margin-top: 0;
}

.vote-group { isolation: isolate; }
.bg-success-subtle-hover:hover:not(:disabled) { background-color: var(--brand-primary-light) !important; color: var(--brand-primary) !important; }
.bg-secondary-subtle-hover:hover:not(:disabled) { background-color: var(--bs-secondary-bg-subtle) !important; color: var(--bs-body-color) !important; }
.js-vote-form[data-vote="up"] .js-vote-btn.active-vote { background-color: var(--brand-primary-light) !important; color: var(--brand-primary) !important; }
.js-vote-form[data-vote="down"] .js-vote-btn.active-vote { background-color: var(--bs-secondary-bg-subtle) !important; color: var(--bs-body-color) !important; }
.js-vote-form.voted-locked .js-vote-btn { pointer-events: none; }

.dropdown-toggle { outline: 0; }
.btn-toggle {
  padding: .25rem .5rem;
  font-weight: 600;
  color: var(--bs-emphasis-color);
  background-color: transparent;
}
.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform .35s ease;
  transform-origin: .5em 50%;
}

[data-bs-theme="dark"] .btn-toggle::before {
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28255,255,255,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(var(--bs-emphasis-color-rgb), .85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.25rem;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: var(--bd-sidebar-link-bg);
  color: var(--bs-emphasis-color) !important;
}

/* Header search bar + nav toggler
   Scoped to <header> so it only affects the top search/hamburger controls,
   not .form-control or .navbar-toggler elsewhere on the site.
*************************************************************/
header .search-form .form-control,
header form[role="search"] .form-control {
  border-color: var(--brand-primary-border);
}

header .search-form .form-control:focus,
header form[role="search"] .form-control:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

header .navbar-toggler {
  border-width: 1px !important;
  border-color: var(--brand-primary-border) !important;
  transition: background-color .15s ease, border-color .15s ease;
}

header .navbar-toggler:hover {
  background-color: var(--brand-bg-subtle);
  border-color: var(--brand-primary-hover) !important;
}

header .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(65, 152, 10, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

header .navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgb(65, 152, 10)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Article body images (from TinyMCE) - moved out of inline styles since
   HTMLPurifier was silently stripping the object-fit property from the
   saved content's style attribute, causing images to stretch instead of
   crop. Classes survive purification reliably; inline styles didn't.

   This is now one of two selectable "Fit" styles from the editor's Image
   Layout dialog (the other is .gpcn-img-natural below). It intentionally
   does NOT use !important on width, so a Bootstrap width utility
   (.w-25/.w-50/.w-75/.w-100 - all !important) applied alongside it wins
   and sizes the image; without one, it still defaults to the original
   full-width cropped banner look. */
.gpcn-article-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* "Natural" fit style: shows the whole image at its own aspect ratio
   instead of cropping to a fixed banner height. Combined with img-fluid
   (max-width:100%; height:auto) this just scales responsively. */
.gpcn-img-natural {
  height: auto;
}

.gpcn-article-caption {
  display: block;
  margin-top: 0.6rem;
  font-style: italic;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Alt text (and therefore the caption) is optional. An image left without
   one gets an empty figcaption in the saved HTML - hide it rather than
   showing a blank italic line with its own top margin. */
.gpcn-article-caption:empty {
  display: none;
}

/* "Thumbnail" frame - Bootstrap's own .img-thumbnail only borders the
   <img>, so a caption below it sits outside that border. This wraps the
   whole <figure> (image + caption) in one bordered box instead, matching
   the classic Bootstrap thumbnail/card look where the caption reads as
   part of the frame rather than a separate line underneath it. */
.gpcn-figure-thumbnail {
  padding: 0.25rem;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.375rem;
}

.gpcn-figure-thumbnail img {
  border-radius: calc(0.375rem - 1px);
}

.gpcn-figure-thumbnail .gpcn-article-caption {
  margin-top: 0.4rem;
  padding: 0 0.25rem 0.25rem;
}

/* Brand-colored data table, for nutrition/comparison tables pasted into
   article content. Swap in place of Bootstrap's default "table-primary"
   (which uses Bootstrap's blue theme color, not the site's brand green).
   Uses classes only (not inline styles) since HTMLPurifier strips style
   attributes from saved article content but keeps classes. */
.table-brand thead tr {
  background-color: var(--brand-bg-subtle);
}

.table-brand thead th {
  color: var(--bs-body-color);
  border-bottom: 2px solid var(--brand-primary);
}

.table-brand tbody tr:hover {
  --bs-table-hover-bg: var(--brand-bg-subtle);
}

/* Quick-access brand-colored callout box, for pointing readers to related
   tools/pages from within article content (e.g. "see our Safe Food list").
   Bootstrap's own alert-primary doesn't work for this - its color comes
   from precompiled "subtle" shade variables baked in at Bootstrap's build
   time, which don't follow the --bs-primary/--bs-primary-rgb overrides
   above. This uses the same --brand-bg-subtle/--brand-border tokens
   already used elsewhere on the site instead. */
.alert-bg-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: var(--brand-bg-subtle);
  border: 1px solid var(--brand-border);
  border-radius: 0.5rem;
  color: var(--bs-body-color);
}

.alert-bg-primary a {
  color: var(--brand-primary);
  font-weight: 600;
}
