@import "https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Barlow Condensed, sans-serif;
  font-style: italic;
  background-color: #ff9b37;
  color: #1a1a1a;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
.dumb-main {
  min-height: 100vh;
  overflow-x: hidden;
}
.hero-section {
  width: 100%;
  background-color: #ff9b37;
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  height: clamp(280px, 44vw, 620px);
  overflow: hidden;
}
.hero-banner {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}
.ca-bar {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 2.5rem;
  gap: 1rem;
  flex-wrap: nowrap;
}
.ca-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.ca-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ca-address {
  color: #ffffffe6;
  font-family: monospace;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  word-break: break-all;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy-btn {
  background: #ffffff26;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 8px;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.18s;
  flex-shrink: 0;
}
.ca-copy-btn:hover {
  background: #ffffff47;
}
.ca-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.ca-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff26;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.ca-social-btn:hover {
  background: #ff9b37;
  color: #fff;
  transform: scale(1.1);
}
.ca-social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(1);
  display: block;
}
@media (max-width: 600px) {
  .ca-bar {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  .ca-label {
    font-size: 0.8rem;
  }
  .ca-address {
    font-size: 0.72rem;
    letter-spacing: 0;
    word-break: normal;
  }
  .ca-copy-btn {
    padding: 0.25rem 0.4rem;
  }
  .ca-social-btn {
    width: 26px;
    height: 26px;
  }
  .ca-social-icon {
    width: 14px;
    height: 14px;
  }
}
.bandana-divider {
  width: 100%;
  overflow: hidden;
  background-color: #cc1e1e;
  padding: 0.45rem 0;
  box-shadow: 0 3px 12px #0000002e;
  position: relative;
  display: flex;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.bandana-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
}
.bandana-text {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  -webkit-user-select: none;
  user-select: none;
}
@keyframes marquee-left {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-50%);
  }
}
@keyframes marquee-right {
  0% {
    transform: translate(-50%);
  }
  to {
    transform: translate(0);
  }
}
.animate-marquee-left {
  animation: marquee-left 22s linear infinite;
}
.animate-marquee-right {
  animation: marquee-right 22s linear infinite;
}
.about-section {
  background: #fff;
  width: 100%;
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-bg-coin {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #ff9b37;
  opacity: 0.07;
  pointer-events: none;
}
.about-bg-coin-2 {
  position: absolute;
  left: -80px;
  top: 20%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #cc1e1e;
  opacity: 0.06;
  pointer-events: none;
}
.about-inner {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.about-inner-split {
  max-width: 1000px;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
}
.about-text-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.about-lore {
  text-align: left;
}
.about-char-col {
  flex: 0 0 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}
.about-char-img {
  width: 100%;
  max-width: 260px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}
.section-label {
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #cc1e1e;
  background: #cc1e1e14;
  padding: 0.65rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(204, 30, 30, 0.18);
}
.section-label-lg {
  font-size: 1.85rem;
  letter-spacing: 0.15em;
  padding: 0.65rem 2rem;
}
.about-section .section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.1;
}
.about-section .section-title span {
  color: #ff9b37;
}
.about-lore {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 620px;
  text-align: left;
}
.about-lore p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: #000;
  line-height: 1.75;
}
.about-highlight {
  color: #ff9b37;
}
.about-lore .about-highlight {
  color: #d4700a;
  font-weight: 700;
}
.about-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  font-style: italic;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.65;
  max-width: 620px;
  border-left: 4px solid #cc1e1e;
  padding-left: 1.25rem;
  text-align: left;
}
.about-sub {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  text-align: center;
  line-height: 1.7;
  max-width: 540px;
}
.tokenomics-section {
  background: #ff9b37;
  width: 100%;
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tokenomics-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.tokenomics-inner {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.tokenomics-section .section-label {
  background: #ffffff26;
  color: #fff;
  border-color: #ffffff40;
}
.tokenomics-section .section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  width: 100%;
}
.token-card {
  background: #fff;
  border-radius: 24px;
  padding: 2.25rem 1.75rem;
  flex: 1 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 32px #00000024;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}
.token-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cc1e1e, #ff9b37);
}
.token-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px #0003;
}
.token-icon {
  font-size: 2.75rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.token-pixel-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  image-rendering: pixelated;
}
.token-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #cc1e1e;
}
.token-value {
  font-size: 1.25rem;
  font-weight: 500;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: -0.02em;
}
.howtobuy-section {
  background: #fff;
  width: 100%;
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.howtobuy-section:before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #ff9b37;
  opacity: 0.06;
  pointer-events: none;
}
.howtobuy-inner {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.howtobuy-inner-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}
.howtobuy-text-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.steps-grid-col {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  width: 100%;
}
.howtobuy-char-col {
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.howtobuy-char-img {
  width: 420px;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.13));
}
@media (max-width: 820px) {
  .howtobuy-inner-split {
    flex-direction: column;
    align-items: center;
  }
  .steps-grid-col {
    width: 100%;
  }
  .howtobuy-char-col {
    width: 100%;
    justify-content: center;
    order: 2;
  }
  .howtobuy-text-col {
    order: 1;
  }
  .howtobuy-char-img {
    width: 260px;
  }
}
.howtobuy-section .section-label {
  background: #cc1e1e14;
  color: #cc1e1e;
  border-color: #cc1e1e2e;
}
.howtobuy-section .section-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  text-align: center;
  line-height: 1.1;
}
.howtobuy-section .section-title span {
  color: #ff9b37;
}
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  width: 100%;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.step-num-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
  margin-bottom: -18px;
}
.step-card {
  background: #cc1e1e;
  border: none;
  border-radius: 16px;
  padding: 1.5rem 1.75rem 1.1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 28px #0000002e;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px #00000042;
}
.step-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}
.step-desc {
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffffeb;
  text-align: center;
  line-height: 1.55;
}
.pfp-section {
  background: #ff9b37;
  width: 100%;
  padding: 5rem 1.5rem 5.5rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pfp-section-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1;
}
.pfp-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(0, 0, 0, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.pfp-inner {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.pfp-label-tag {
  background: #ffffff2e !important;
  color: #fff !important;
  border-color: #ffffff4d !important;
}
.pfp-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.pfp-section-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffffd1;
  text-align: center;
}
.merch-slideshow {
  background: #fff;
  border-radius: 28px;
  padding: 1.5rem;
  width: 100%;
  box-shadow: 0 12px 48px #0000002e;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.merch-slide-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
}
.merch-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.merch-slide-active {
  opacity: 1;
}
.merch-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #00000059;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.18s;
  line-height: 1;
}
.merch-arrow:hover {
  background: #0009;
}
.merch-arrow-left {
  left: 0.5rem;
}
.merch-arrow-right {
  right: 0.5rem;
}
.merch-dots {
  display: flex;
  gap: 0.5rem;
}
.merch-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.merch-dot-active {
  background: #cc1e1e;
  transform: scale(1.25);
}
.merch-shop-btn {
  display: inline-block;
  background: #cc1e1e;
  color: #fff;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 6px 24px #00000038;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}
.merch-shop-btn:hover {
  background: #a81818;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px #0000004d;
}
.pfp-generator {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 12px 48px #0000002e;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pfp-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 2px 16px #00000014 inset;
}
.pfp-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.pfp-cursor-grab {
  cursor: grab;
}
.pfp-dragging {
  cursor: grabbing !important;
}
.pfp-upload-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #f5841f14;
  border: 2.5px dashed #ff9b37;
  border-radius: 18px;
  color: #ff9b37;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
  font-family: inherit;
}
.pfp-upload-overlay:hover {
  background: #f5841f24;
  border-color: #cc1e1e;
  color: #cc1e1e;
}
.pfp-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pfp-slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pfp-label {
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  white-space: nowrap;
  min-width: 110px;
}
.pfp-slider {
  flex: 1;
  appearance: none;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, #cc1e1e, #ff9b37);
  outline: none;
  cursor: pointer;
}
.pfp-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ff9b37;
  box-shadow: 0 2px 8px #00000026;
  cursor: grab;
}
.pfp-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
}
.pfp-slider-tilt {
  background: linear-gradient(90deg, #ff9b37, #e0e0e0 50%, #cc1e1e);
}
.pfp-slider-tilt::-webkit-slider-thumb {
  border-color: #888;
}
.pfp-slider-val {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  min-width: 38px;
  text-align: right;
}
.pfp-buttons {
  display: flex;
  gap: 0.75rem;
}
.pfp-btn {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s;
  letter-spacing: 0.01em;
}
.pfp-btn:hover {
  transform: translateY(-2px);
}
.pfp-btn:active {
  transform: translateY(0);
}
.pfp-btn-secondary {
  background: #f4f4f4;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}
.pfp-btn-secondary:hover {
  background: #eaeaea;
  box-shadow: 0 4px 16px #00000014;
}
.pfp-btn-primary {
  background: linear-gradient(135deg, #cc1e1e, #ff9b37);
  color: #fff;
  box-shadow: 0 4px 16px #f5841f66;
}
.pfp-btn-primary:hover {
  box-shadow: 0 8px 24px #f5841f80;
}
.pfp-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.pfp-btn-x {
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  box-shadow: 0 4px 16px #00000040;
}
.pfp-btn-x:hover {
  background: #222;
  box-shadow: 0 8px 24px #00000059;
}
.pfp-hint {
  font-size: 0.95rem;
  font-weight: 500;
  color: #999;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .pfp-section-row {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .pfp-inner {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  .pfp-section {
    padding: 3.5rem 1rem 4rem;
  }
  .pfp-generator {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }
  .pfp-buttons {
    flex-direction: column;
  }
}
.disclaimer-section {
  background: #fff;
  width: 100%;
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
}
.disclaimer-inner {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.disclaimer-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.1;
}
.disclaimer-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: center;
  max-width: 560px;
}
.disclaimer-label {
  font-size: 1rem;
  color: #ff9b37;
  background: #ff9b371a;
  border-color: #ff9b374d;
  padding: 0.45rem 1.4rem;
}
.disclaimer-body p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.7;
}
.footer-bar {
  background: #1a1a1a;
  color: #ffffff73;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1.5rem;
}
.footer-bar strong {
  color: #ff9b37;
}
@media (max-width: 600px) {
  .hero-section {
    padding: 1.25rem 1rem 1rem;
  }
  .hero-inner {
    border-radius: 18px;
    height: auto;
  }
  .hero-banner {
    border-radius: 18px;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .about-section,
  .tokenomics-section,
  .howtobuy-section {
    padding: 3.5rem 1.25rem;
  }
  .about-inner-split {
    flex-direction: column;
    align-items: center;
  }
  .about-text-col {
    align-items: center;
  }
  .about-lore {
    text-align: center;
  }
  .about-char-col {
    flex: 0 0 auto;
    width: 100%;
    max-width: 220px;
  }
  .about-char-img {
    max-width: 200px;
    margin: 0 auto;
  }
  .token-card,
  .step-card {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .bandana-text {
    font-size: 0.9rem;
  }
  .about-quote {
    font-size: 1rem;
  }
  .section-label,
  .section-label-lg {
    font-size: 1.15rem;
    padding: 0.5rem 1.25rem;
    white-space: nowrap;
  }
}
