:root {
  --bg: #f8f3ea;
  --surface: rgba(255, 251, 245, 0.8);
  --surface-strong: #fffaf3;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --text: #211d1a;
  --muted: #706660;
  --line: rgba(89, 62, 37, 0.12);
  --accent: #d86f43;
  --accent-dark: #8d3b23;
  --accent-soft: #f4ddcf;
  --warm: #f1d8bc;
  --mint: #d6e7de;
  --shadow: 0 24px 80px rgba(92, 60, 31, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: auto;
  font-family: "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(240, 191, 98, 0.4), transparent 26%),
    radial-gradient(circle at 85% 12%, rgba(210, 227, 217, 0.55), transparent 22%),
    linear-gradient(180deg, #fbf7ef 0%, #f4eadc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.35;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 20px));
  min-height: calc(100vh - 20px);
  margin: 10px auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(89, 62, 37, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(240, 191, 98, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 248, 238, 0.94), rgba(255, 252, 247, 0.78));
  box-shadow: var(--shadow);
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.brand-title,
.brand-subtitle,
.compact-kicker,
.section-kicker,
.result-label {
  margin: 0;
}

.brand-title,
h1,
h2,
h3,
.breed-heading h3 {
  font-family: "Outfit", sans-serif;
}

.brand-title {
  font-size: 1rem;
  font-weight: 700;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.88rem;
}

.tab-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tab-button,
.button {
  border-radius: 999px;
  border: 1px solid rgba(89, 62, 37, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.tab-button {
  padding: 12px 18px;
}

.tab-button.is-active {
  color: white;
  background: linear-gradient(135deg, var(--accent), #c15d35);
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(216, 111, 67, 0.22);
}

.button {
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #c15d35);
  border-color: transparent;
  box-shadow: 0 16px 28px rgba(216, 111, 67, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.76);
}

.button:hover,
.tab-button:hover,
.choice-button:hover:not(:disabled),
.breed-card:hover {
  transform: translateY(-2px);
}

.button:disabled,
.choice-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.workspace {
  min-height: 0;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.tab-panel {
  display: none;
  height: 100%;
  overflow: auto;
  padding-right: 2px;
}

.tab-panel.is-active {
  display: block;
}

.identify-stage,
.secondary-shell,
.discover-shell {
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  border: 1px solid rgba(89, 62, 37, 0.05);
  background: rgba(255, 251, 246, 0.38);
  backdrop-filter: blur(10px);
}

.identify-stage {
  padding: 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
}

.compact-kicker,
.section-kicker,
.result-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.identify-stage-copy h1 {
  margin: 4px 0 0;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  max-width: 9ch;
}

.identify-stage-main {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.identify-core,
.result-stage,
.challenge-card,
.daily-card,
.catalog-mini {
  min-height: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(89, 62, 37, 0.06);
  background: rgba(255, 255, 255, 0.66);
}

.identify-core {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto auto auto;
  gap: 10px;
}

.result-stage {
  padding: 0;
  border: 0;
  background: transparent;
}

.upload-zone {
  min-height: 0;
  display: grid;
  place-items: center;
  border: 1.5px dashed rgba(89, 62, 37, 0.22);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(252, 245, 238, 0.95));
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.upload-zone.dragging {
  border-color: rgba(216, 111, 67, 0.8);
  box-shadow: inset 0 0 0 4px rgba(216, 111, 67, 0.08);
}

.upload-placeholder {
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--muted);
  padding: 24px;
}

.upload-placeholder strong {
  color: var(--text);
  font-size: 1.1rem;
}

.upload-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.compact-actions {
  justify-content: flex-start;
}

.identify-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.identify-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(89, 62, 37, 0.08);
}

.download-panel {
  padding: 12px;
  border-radius: 16px;
  background: rgba(249, 241, 233, 0.96);
  border: 1px solid rgba(89, 62, 37, 0.1);
  display: grid;
  gap: 10px;
}

.download-panel.is-analyzing {
  background: rgba(247, 236, 224, 0.98);
}

.download-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.download-file {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(89, 62, 37, 0.1);
  overflow: hidden;
}

.progress-bar {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #efb865);
  transition: width 180ms ease;
}

.progress-bar.is-busy {
  width: 100% !important;
  background:
    linear-gradient(
      90deg,
      rgba(216, 111, 67, 0.9) 0%,
      rgba(239, 184, 101, 0.95) 35%,
      rgba(216, 111, 67, 0.9) 70%,
      rgba(239, 184, 101, 0.95) 100%
    );
  background-size: 220px 100%;
  animation: busy-progress 1.2s linear infinite;
}

@keyframes busy-progress {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 220px 0;
  }
}

.compact-stats,
.speed-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.compact-stats {
  display: none;
}

.speed-card,
.result-card,
.fortune-copy,
.fortune-stats,
.fortune-panel,
.poster-preview-shell {
  border-radius: 16px;
  border: 1px solid rgba(89, 62, 37, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.speed-card {
  padding: 12px;
}

.speed-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.speed-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.18rem;
}

.result-stage {
  min-height: 0;
  overflow: auto;
}

.identify-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.result-card {
  padding: 14px;
}

.result-card h3,
.challenge-result h3,
.fortune-hero h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
}

#primaryConfidence {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.result-list,
.fortune-tips,
.browse-points,
.breed-tags {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-list {
  display: grid;
  gap: 10px;
}

.result-list li,
.fortune-tips li,
.breed-tags li {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(247, 232, 220, 0.78);
  line-height: 1.55;
}

.secondary-shell {
  padding: 14px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.secondary-head h2,
.daily-copy h2,
.catalog-head h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.challenge-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  background:
    radial-gradient(circle at top, rgba(244, 221, 207, 0.45), transparent 40%),
    rgba(255, 255, 255, 0.72);
}

.challenge-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.challenge-stage {
  display: grid;
  gap: 10px;
}

.swipe-choice-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.swipe-choice-hint span:nth-child(2) {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 232, 220, 0.92);
  color: var(--accent-dark);
}

.swipe-card-shell {
  position: relative;
  min-height: 0;
  display: grid;
}

.swipe-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #eedfcd, #f8f2ea);
  box-shadow: 0 18px 34px rgba(88, 56, 31, 0.12);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.swipe-card.is-dragging {
  transition: none;
  cursor: grabbing;
  box-shadow: 0 24px 40px rgba(88, 56, 31, 0.16);
}

.swipe-card.is-flying-left,
.swipe-card.is-flying-right {
  transition: transform 220ms ease, opacity 220ms ease;
}

.swipe-card.is-flying-left {
  transform: translateX(-120%) rotate(-14deg);
  opacity: 0;
}

.swipe-card.is-flying-right {
  transform: translateX(120%) rotate(14deg);
  opacity: 0;
}

.challenge-image {
  width: 100%;
  min-height: 0;
  height: clamp(320px, 54vh, 560px);
  object-fit: cover;
  object-position: var(--quiz-focus-x, 50%) var(--quiz-focus-y, 50%);
  transform: scale(var(--quiz-image-scale, 1));
  transform-origin: center;
  display: block;
  background: linear-gradient(180deg, #eedfcd, #f8f2ea);
  transition: transform 260ms ease;
}

.swipe-overlay {
  position: absolute;
  top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  transition: opacity 120ms ease;
  pointer-events: none;
}

.swipe-overlay-left {
  left: 18px;
  background: rgba(194, 95, 58, 0.92);
}

.swipe-overlay-right {
  right: 18px;
  background: rgba(87, 127, 101, 0.92);
}

.swipe-card.show-left .swipe-overlay-left,
.swipe-card.show-right .swipe-overlay-right {
  opacity: 1;
}

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

.challenge-options-swipe {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-button {
  min-height: 84px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(89, 62, 37, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.choice-button::before {
  display: block;
  margin-bottom: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.choice-button-left::before {
  content: "左滑";
}

.choice-button-right::before {
  content: "右滑";
}

.challenge-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.challenge-result {
  padding: 16px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.36), transparent 40%),
    rgba(247, 232, 220, 0.86);
}

.challenge-result p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.discover-shell {
  padding: 14px;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 12px;
}

.daily-card {
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr);
  gap: 16px;
}

.daily-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.daily-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.daily-meta span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(247, 232, 220, 0.8);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.daily-visual {
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #eedfcd, #f8f2ea);
}

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

.catalog-mini {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.catalog-head p:last-child {
  margin: 0;
  color: var(--muted);
}

.controls {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 12px;
}

.search-box,
.filter-box {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.search-box input,
.filter-box select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(89, 62, 37, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  padding: 13px 18px;
  font: inherit;
  outline: none;
}

.filter-box select {
  padding-right: 42px;
  background-position: right 16px center;
}

.search-box input:focus,
.filter-box select:focus {
  border-color: rgba(216, 111, 67, 0.6);
  box-shadow: 0 0 0 4px rgba(216, 111, 67, 0.12);
}

.breed-grid {
  min-height: 0;
  overflow: auto;
  column-count: 2;
  column-gap: 10px;
  padding: 2px;
}

.breed-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  break-inside: avoid;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(89, 62, 37, 0.12);
  background: var(--surface-strong);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.breed-card:hover {
  box-shadow: 0 12px 28px rgba(92, 60, 31, 0.1);
}

.breed-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eedfcd, #f8f2ea);
}

.breed-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 300ms ease;
}

.breed-card:hover .breed-image {
  transform: scale(1.04);
}

.breed-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
}

.breed-visual-meta {
  position: absolute;
  inset: auto 10px 10px 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}

.breed-origin,
.breed-region {
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: white;
}

.breed-origin {
  background: rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.breed-region {
  background: rgba(216, 111, 67, 0.76);
}

.breed-content {
  padding: 10px 12px 12px;
}

.breed-heading {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: start;
}

.breed-heading h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}

.breed-name-en,
.breed-description {
  color: var(--muted);
}

.breed-name-en {
  margin: 2px 0 0;
  font-size: 0.82rem;
}

.breed-life {
  margin: 1px 0 0;
  white-space: nowrap;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
}

.breed-description {
  margin: 10px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.breed-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.breed-tags li {
  padding: 6px 10px;
  font-size: 0.76rem;
}

.empty-state {
  padding: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(89, 62, 37, 0.18);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
}

.fortune-panel {
  margin-top: 10px;
  padding: 0;
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
}

.fortune-hero {
  --fortune-accent: #8d3b23;
  --fortune-soft: #f4ddcf;
  --fortune-dark: #211d1a;
  --fortune-card: #fffaf3;
  padding: 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(145deg, var(--fortune-soft), rgba(255, 255, 255, 0.9));
  color: var(--fortune-dark);
  display: grid;
  gap: 12px;
}

.fortune-code,
.fortune-theme-name,
.fortune-subtitle,
.fortune-copy p {
  margin: 0;
}

.fortune-code {
  display: inline-flex;
  align-self: start;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--fortune-accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
}

.fortune-subtitle,
.fortune-theme-name,
.fortune-copy p {
  line-height: 1.7;
}

.fortune-theme-name {
  color: rgba(33, 29, 26, 0.72);
}

.fortune-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10px;
}

.fortune-copy,
.fortune-stats,
.poster-preview-shell {
  padding: 0;
  border: 0;
  background: transparent;
}

.fortune-stats {
  display: grid;
  gap: 8px;
}

.fortune-stat-card {
  padding: 10px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.fortune-stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.fortune-stat-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.mini-progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(89, 62, 37, 0.08);
  overflow: hidden;
}

.mini-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #efb865);
}

.poster-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.poster-preview-shell img {
  width: 100%;
  display: block;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(33, 29, 26, 0.14);
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  .page-shell {
    width: min(100% - 20px, 100%);
    min-height: calc(100vh - 20px);
    margin: 10px auto;
  }

  .identify-stage-main,
  .discover-shell,
  .fortune-body {
    grid-template-columns: 1fr;
  }

  .controls,
  .identify-result,
  .compact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identify-stage-copy h1 {
    max-width: 10ch;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px;
    border-radius: 24px;
  }

  .identify-stage,
  .secondary-shell,
  .discover-shell {
    padding: 16px;
    border-radius: 22px;
  }

  .identify-stage-copy h1 {
    font-size: clamp(1.9rem, 11vw, 3rem);
  }

  .tab-bar,
  .identify-actions {
    width: 100%;
  }

  .tab-bar {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px; /* affordance for scrollbar if visible */
  }

  .tab-button {
    width: auto;
    flex-shrink: 0;
  }

  .button,
  .choice-button {
    width: 100%;
  }

  .controls,
  .identify-result,
  .compact-stats {
    grid-template-columns: 1fr;
  }

  .challenge-options-swipe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-head,
  .breed-heading,
  .breed-visual-meta,
  .challenge-progress {
    flex-direction: column;
    align-items: start;
  }

  .identify-core {
    grid-template-rows: minmax(240px, 1fr) auto auto auto;
  }

  .challenge-image {
    height: clamp(300px, 52vh, 420px);
  }

}

@media (max-width: 520px) {
  .breed-grid {
    column-count: 2;
    column-gap: 8px;
  }

  .breed-content {
    padding: 9px 10px 10px;
  }

  .breed-heading h3 {
    font-size: 0.96rem;
  }

  .breed-name-en,
  .breed-life {
    font-size: 0.74rem;
  }

  .breed-description {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .breed-tags li {
    padding: 5px 8px;
    font-size: 0.72rem;
  }

  .breed-origin,
  .breed-region {
    padding: 4px 8px;
    font-size: 0.62rem;
  }
}

@media (max-width: 380px) {
  .breed-grid {
    column-count: 1;
  }
}
