/**
 * Consistency Block Styles
 *
 * Single source of truth for block styles.
 * Used by both the editor and published sites.
 *
 * Variables used:
 * - --design-font: Font family
 * - --design-text: Text color
 * - --design-background: Background color
 * - --design-primary: Primary/accent color
 * - --design-radius: Border radius
 * - --design-border: Border color (falls back to rgba)
 * - --design-selection: Text selection highlight color
 */

/* ==========================================================================
   PUBLISHED SITE BASE STYLES
   These styles are used by published sites (not the editor)
   ========================================================================== */

/* Cross-page view transitions */
@view-transition {
  navigation: auto;
}



/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body base styles */
body {
  font-family: var(--design-font);
  line-height: 1.5;
  color: var(--design-text);
  background: var(--design-background);
  min-height: 100vh;
  margin: 0;
}

::selection {
  background: var(--design-selection, #b4d5fe);
}

/* Grid background (applied via class from design.showGrid) */
body.show-grid {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg' shape-rendering='crispEdges'%3E%3Cpath d='M10 0V20M0 9.5H20' stroke='%23000' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  background-position: center center;
}

/* Page wrapper - container for grid snapping */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: max(100vh, 1000px);
  width: 100%;
  container-type: inline-size;
  container-name: page;
}

/* ==========================================================================
   BLOCK STYLES (shared by editor and published sites)
   ========================================================================== */

/* Reset - scoped to content area only */
.content *,
.content *::before,
.content *::after {
  box-sizing: border-box;
}

/* Text elements - line-heights snap to 20px grid, text-box-trim for tight bounding boxes */
.builder-canvas__blocks h1,
.builder-canvas__blocks h2,
.builder-canvas__blocks h3,
.builder-canvas__blocks p,
.content h1,
.content h2,
.content h3,
.content p {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  margin: 0;
  text-box-trim: both;
  text-box-edge: cap alphabetic;
}

.builder-canvas__blocks h1,
.content h1 {
  font-family: var(--design-font, "GT America", Inter, sans-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
}

.builder-canvas__blocks h2,
.content h2 {
  font-family: var(--design-font, "GT America", Inter, sans-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
}

.builder-canvas__blocks h3,
.content h3 {
  font-family: var(--design-font, "GT America", Inter, sans-serif);
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.builder-canvas__blocks p,
.content p {
  font-family: var(--design-font, "GT America", Inter, sans-serif);
  font-size: 16px;
  line-height: 20px;
}

/* ==========================================================================
   GRID ALIGNMENT - Block heights must be multiples of 20px
   ==========================================================================
   The editor uses a 20px grid. For blocks to "sit in the grid":
   - Container width snaps to 40px increments (via container queries)
   - Block heights must be multiples of 20px
   - Gap between blocks is 20px
   ========================================================================== */

/* Header Block */
.header-block {
  width: 100%;
  min-height: 40px; /* 2 grid cells */
}

.header-block__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 40px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.header-block__logo {
  font-family: var(--design-font, inherit);
  font-size: 14px;
  font-weight: 600;
  color: var(--design-text, inherit);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  /* Flex-item z-index: shows through mobile nav overlay (z-index: 100)
     just like the burger button does. */
  z-index: 101;
}

.header-block__logo:hover {
  opacity: 0.8;
}

.header-block__nav {
  display: flex;
  align-items: center;
  gap: 20px; /* 1 grid unit */
}

.header-block__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 80px; /* 4 grid units minimum */
  box-sizing: border-box;
  padding: 10px 20px;
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--design-radius, 8px);
  background: var(--design-background, #fff);
  color: var(--design-text, #1e1e1e);
  font-family: var(--design-font, inherit);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.header-block__link:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}

.header-block__nav-item {
  transition: transform 0.15s ease-out;
}

.header-block__add-btn {
  width: 40px; /* 2 grid units */
  height: 40px;
  min-width: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--design-radius, 8px);
  background: var(--design-background, #fff);
  color: var(--design-text, #1e1e1e);
  cursor: pointer;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

.header-block__add-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}

.header-block__nav-item--dragging {
  opacity: 1;
}

.header-block__link--cta {
  background: var(--design-primary, #1e1e1e);
  color: #fff;
  color: contrast-color(var(--design-primary, #1e1e1e));
  border-color: var(--design-primary, #1e1e1e);
}

.header-block__link--cta:hover {
  opacity: 0.9;
  background: var(--design-primary, #1e1e1e);
  border-color: var(--design-primary, #1e1e1e);
}

.header-block__link--dragging {
  opacity: 1;
}

/* ---- Burger Menu (mobile navigation) ---- */

/* Hidden checkbox — CSS state toggle for published sites */
.header-block__toggle-input {
  display: none;
}

/* Burger icon — hidden by default, shown when .mobile ancestor present */
.header-block__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: none;
  z-index: 101;
}

.header-block__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--design-text, #1e1e1e);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Mobile: hide desktop nav, show burger */
.mobile .header-block__nav {
  display: none;
}
.mobile .header-block__burger {
  display: flex;
}

/* Burger → X animation (checkbox for published sites) */
.header-block__toggle-input:checked ~ .header-block__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-block__toggle-input:checked ~ .header-block__burger span:nth-child(2) {
  opacity: 0;
}
.header-block__toggle-input:checked ~ .header-block__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Burger → X animation (class for editor React state) */
.header-block__burger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-block__burger--open span:nth-child(2) {
  opacity: 0;
}
.header-block__burger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay — full-screen on published sites */
.header-block__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--design-background, #fff);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* Show overlay when checkbox checked (published sites) */
.header-block__toggle-input:checked ~ .header-block__mobile-nav {
  display: flex;
}

/* Mobile nav site title — hidden on published sites because the original
   .header-block__logo shows through the overlay via z-index: 101.
   The editor overrides display to show this element instead (chrome.css). */
.header-block__mobile-nav-title {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--design-font, inherit);
  font-size: 14px;
  font-weight: 600;
  color: var(--design-text, inherit);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  height: 40px;
  align-items: center;
}

/* Mobile nav links — larger touch targets */
.header-block__mobile-nav .header-block__link {
  font-size: 18px;
  padding: 14px 28px;
}

/* Divider Block */
.divider-block {
  width: 100%;
  padding: 9.5px 0; /* Centers 1px line in 20px height */
  min-height: 20px; /* 1 grid cell */
}

.divider-block__line {
  width: 100%;
  height: 1px;
  border: none;
  background: var(--design-border, #ccc);
  margin: 0;
}

/* Button Block */
.button-block {
  display: inline-block;
  min-height: 40px; /* 2 grid cells */
}

.button-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--design-primary, #1e1e1e);
  color: var(--design-background, #fff);
  color: contrast-color(var(--design-primary, #1e1e1e));
  border: none;
  border-radius: var(--design-radius, 8px);
  font-family: var(--design-font, inherit);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
}

.button-block__btn:hover {
  opacity: 0.9;
}

.button-block__input {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  text-align: center;
  outline: none;
  min-width: 0;
  width: 100%;
}

.button-block__editor {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.button-block__href-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.button-block__href-input {
  min-width: 220px;
  max-width: 320px;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.15));
  border-radius: 8px;
  background: var(--design-background, #fff);
  color: var(--design-text, #1e1e1e);
  font-family: var(--design-font, inherit);
  font-size: 14px;
}

.button-block__href-open {
  height: 32px;
  padding: 0 12px;
  border: none;
  border-radius: 8px;
  background: var(--design-primary, #1e1e1e);
  color: var(--design-background, #fff);
  color: contrast-color(var(--design-primary, #1e1e1e));
  font-family: var(--design-font, inherit);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.button-block__href-open:disabled {
  opacity: 0.45;
  cursor: default;
}

/* Language Picker Block */
.language-picker-block {
  display: inline-block;
  min-height: 40px; /* 2 grid cells */
}

.language-picker-block__wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--design-background, #fff);
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--design-radius, 8px);
  font-family: var(--design-font, inherit);
}

.language-picker-block__icon {
  color: var(--design-text-muted, rgba(0, 0, 0, 0.65));
  flex-shrink: 0;
}

.language-picker-block__select {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--design-text, #1e1e1e);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

.language-picker-block__select:focus {
  outline: none;
}

.language-picker-block__single-lang {
  font-size: 14px;
  font-family: var(--design-font, inherit);
  color: var(--design-text, inherit);
}

.language-picker-block--single .language-picker-block__wrapper {
  cursor: default;
}

/* Footer Block */
.footer-block {
  width: 100%;
  border-top: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
  margin-top: auto;
  min-height: 120px; /* 6 grid cells */
}

.footer-block__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.footer-block__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-block__brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--design-text, #1e1e1e);
}

.footer-block__nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-block__link {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--design-text-muted, rgba(0, 0, 0, 0.65));
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease-in-out;
}

.footer-block__link:hover {
  color: var(--design-text, #1e1e1e);
}

.footer-block__bottom {
  padding-top: 20px;
  border-top: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
}

.footer-block__copyright {
  font-size: 0.875rem;
  color: var(--design-text-muted, rgba(0, 0, 0, 0.65));
}

/* Table Block */
.table-block {
  width: 100%;
  border-radius: var(--design-radius, 8px);
  overflow: hidden;
  min-height: 80px; /* 4 grid cells */
}

.table-block__table {
  width: 100%;
  border-collapse: collapse;
}

.table-block__head {
  background: var(--design-muted, #f5f5f5);
}

.table-block__cell {
  border: 1px solid var(--design-border, #e5e5e5);
  padding: 0 16px;
  height: 40px; /* 2 grid cells */
  text-align: left;
  font-family: var(--design-font, inherit);
  color: var(--design-text, #1e1e1e);
  line-height: 40px;
  box-sizing: border-box;
}

.table-block__head .table-block__cell {
  font-weight: 600;
  background: var(--design-muted, #f5f5f5);
}

/* Gallery Block */
.gallery-block {
  width: 100%;
}

.gallery-block__grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns, 3), minmax(0, 1fr));
  gap: 20px; /* 1 grid cell */
}

.gallery-block__empty {
  background: rgba(0, 0, 0, 0.03);
  height: 200px; /* 10 grid cells */
  border-radius: var(--design-radius, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--design-text-muted, rgba(0, 0, 0, 0.65));
}

.gallery-block__item {
  position: relative;
  height: 200px; /* 10 grid cells */
  border-radius: var(--design-radius, 8px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

.gallery-block__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-block__controls {
  margin-top: 10px;
}

.gallery-block__add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px; /* 2 grid cells */
  padding: 0 14px;
  border-radius: var(--design-radius, 8px);
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
  background: var(--design-background, #fff);
  color: var(--design-text, #1e1e1e);
  font-family: var(--design-font, inherit);
  font-size: 0.875rem;
  cursor: pointer;
  user-select: none;
}

.gallery-block__remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  line-height: 28px;
  font-size: 18px;
}

/* Accordion Block */
.accordion-block {
  width: 100%;
}

.accordion-block__items {
  display: flex;
  flex-direction: column;
}

.accordion-block__item {
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.1));
  border-radius: var(--design-radius, 8px);
  overflow: hidden;
  background: var(--design-background, #fff);
}

.accordion-block__item:not(:last-child) {
  margin-bottom: 20px; /* 1 grid cell */
}

.accordion-block__summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 12px; /* 40px total with line-height */
  min-height: 40px; /* 2 grid cells */
  font-family: var(--design-font, inherit);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  color: var(--design-text, #1e1e1e);
}

.accordion-block__summary::-webkit-details-marker {
  display: none;
}

.accordion-block__summary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-block__title {
  flex: 1;
  min-width: 0;
}

.accordion-block__title--editable {
  cursor: text;
}

.accordion-block__title--placeholder {
  color: var(--muted-foreground, rgba(0, 0, 0, 0.5));
}

.accordion-block__title-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  color: inherit;
  padding: 0;
}

.accordion-block__remove-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  line-height: 28px;
  font-size: 18px;
  flex: 0 0 auto;
  margin-left: 12px;
}

.accordion-block__panel {
  border-top: 1px solid var(--design-border, rgba(0, 0, 0, 0.08));
  padding: 20px; /* 1 grid cell */
}

.accordion-block__text {
  margin: 0;
  color: var(--design-text, #1e1e1e);
  font-family: var(--design-font, inherit);
  font-size: 12px;
  line-height: 20px;
  white-space: pre-wrap;
}

.accordion-block__text--editable {
  cursor: text;
}

.accordion-block__text--placeholder {
  color: var(--muted-foreground, rgba(0, 0, 0, 0.5));
}

.accordion-block__content-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--design-font, inherit);
  font-size: 12px;
  line-height: 20px;
  color: var(--design-text, #1e1e1e);
  resize: vertical;
  padding: 0;
}

.accordion-block__add-btn {
  margin-top: 20px; /* 1 grid cell */
  height: 40px; /* 2 grid cells */
  padding: 0 14px;
  border-radius: var(--design-radius, 8px);
  border: 1px solid var(--design-border, rgba(0, 0, 0, 0.12));
  background: var(--design-background, #fff);
  color: var(--design-text, #1e1e1e);
  font-family: var(--design-font, inherit);
  font-size: 12px;
  cursor: pointer;
}

/* Content container */
.content {
  position: relative;
  flex: 1;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

/* Default 20px gap between adjacent blocks (per-element margin-top
   allows individual overrides via inline style for custom gaps) */
.content > * + * {
  margin-top: 20px;
}

.content > * {
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

/* Container queries - shrink content in 40px increments to align with grid */
@container page (max-width: 1040px) {
  .content {
    max-width: 960px;
  }
}
@container page (max-width: 1000px) {
  .content {
    max-width: 920px;
  }
}
@container page (max-width: 960px) {
  .content {
    max-width: 880px;
  }
}
@container page (max-width: 920px) {
  .content {
    max-width: 840px;
  }
}
@container page (max-width: 880px) {
  .content {
    max-width: 800px;
  }
}
@container page (max-width: 840px) {
  .content {
    max-width: 760px;
  }
}
@container page (max-width: 800px) {
  .content {
    max-width: 720px;
  }
}
@container page (max-width: 760px) {
  .content {
    max-width: 680px;
  }
}
@container page (max-width: 720px) {
  .content {
    max-width: 640px;
  }
}
@container page (max-width: 680px) {
  .content {
    max-width: 600px;
  }
}
@container page (max-width: 640px) {
  .content {
    max-width: 560px;
  }
}
@container page (max-width: 600px) {
  .content {
    max-width: 520px;
  }
}
@container page (max-width: 560px) {
  .content {
    max-width: 480px;
  }
}
@container page (max-width: 520px) {
  .content {
    max-width: 440px;
  }
}
@container page (max-width: 480px) {
  .content {
    max-width: 400px;
  }
}
@container page (max-width: 440px) {
  .content {
    max-width: 360px;
  }
}
@container page (max-width: 400px) {
  .content {
    max-width: 320px;
  }
}
@container page (max-width: 360px) {
  .content {
    max-width: 280px;
  }
}
@container page (max-width: 320px) {
  .content {
    max-width: 240px;
  }
}
@container page (max-width: 280px) {
  .content {
    max-width: 200px;
  }
}

/* Typography — see scoped rules at top (.builder-canvas__blocks / .content) */

/* Image placeholder */
.image-placeholder {
  background: rgba(0, 0, 0, 0.03);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--design-text-muted, rgba(0, 0, 0, 0.65));
  border-radius: var(--design-radius, 8px);
}

/* Consistency badge */
.c-badge {
  position: sticky;
  bottom: 20px;
  align-self: flex-start;
  margin-top: auto;
  margin-left: -8px;
  z-index: 10;
}

.c-badge__trigger {
  display: block;
  cursor: pointer;
  text-decoration: none;
  line-height: 0;
}

.c-badge__logo {
  width: 75px;
  height: 75px;
  color: var(--design-text, #1e1e1e);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-badge__trigger:hover .c-badge__logo {
  transform: scale(1.08);
}

/* Dropdown menu — opens above the badge */
.c-badge__options {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 180px;
  padding: 4px 0;
  background: var(--design-background, #fff);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s 0.15s;
}

.c-badge:hover .c-badge__options,
.c-badge:focus-within .c-badge__options,
.c-badge--open .c-badge__options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.c-badge__option {
  display: block;
  padding: 8px 12px;
  font-family: var(--design-font, inherit);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--design-text, #1e1e1e);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.1s;
}

.c-badge__option:hover {
  background: rgba(0, 0, 0, 0.05);
}

.c-badge__separator {
  height: 1px;
  margin: 4px 0;
  background: rgba(0, 0, 0, 0.1);
}

.c-badge__option--upgrade {
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--design-text-muted, rgba(0, 0, 0, 0.5));
  font-size: 12px;
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .c-badge__options {
    transition: none;
  }

  .c-badge__logo {
    transition: none;
  }
}
