/* src/components/Surface.module.css */
.Surface_outlinedSurface {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
}
.Surface_whitePanelSurface {
  border: 1px solid hsl(var(--border));
  background: #fff;
}
.Surface_whiteGlyphSurface {
  border: 1px solid hsl(var(--border));
  background: #fff;
  color: #000;
}
.Surface_cardSurface {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 2px rgb(0 0 0 / 6%);
}
.Surface_mutedSurface {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 40%);
}
.Surface_mutedPanelSurface {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--muted));
}
.Surface_radiusSm {
  border-radius: 0.375rem;
}
.Surface_radiusXs {
  border-radius: 0.25rem;
}
.Surface_radiusInset {
  border-radius: calc(var(--radius) - 2px);
}
.Surface_radiusMd {
  border-radius: 0.5rem;
}
.Surface_radiusCard {
  border-radius: var(--radius);
}
.Surface_radiusLg {
  border-radius: 0.75rem;
}
.Surface_radiusFrame {
  border-radius: 0.6rem;
}
.Surface_paddingSm {
  padding: 0.5rem;
}
.Surface_paddingMd {
  padding: 0.75rem;
}
.Surface_paddingLg {
  padding: 1rem;
}
.Surface_headerDivider {
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid hsl(var(--border));
}
.Surface_pillBase {
  border: 1px solid hsl(var(--border));
  border-radius: 9999px;
  background: #fff;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
}
.Surface_pillInteractive:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--primary));
}
.Surface_pillActive {
  background: hsl(var(--background));
  color: hsl(var(--primary));
  border-color: hsl(var(--primary));
}
.Surface_interactiveTileBase {
  border: 1px solid hsl(var(--border));
  border-radius: 0.6rem;
  background: #fff;
}
.Surface_interactiveTileHover {
  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    border-color 120ms ease;
}
.Surface_interactiveTileHover:hover {
  transform: translateY(-1px);
  border-color: hsl(var(--primary));
  box-shadow: 0 8px 18px rgb(15 23 42 / 8%);
}
.Surface_outlinedFrameSm {
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
}
.Surface_textFieldBase {
  display: flex;
  width: 100%;
  height: 2.5rem;
  border: 1px solid hsl(var(--input));
  background: #fff;
  padding: 0.5rem 0.75rem;
}
.Surface_textFieldFocus:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}
.Surface_focusRing:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}
.Surface_compactControlBase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  margin: 0;
  line-height: 1;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease;
}
.Surface_outlinedControl {
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: inherit;
}
.Surface_mutedHoverBg:hover {
  background: hsl(var(--muted));
}
.Surface_mutedHoverFg:hover {
  color: hsl(var(--foreground));
}

/* src/components/Text.module.css */
.Text_bodySm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.Text_labelSm {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.Text_mutedFg {
  color: hsl(var(--muted-foreground));
}
.Text_placeholderMuted::placeholder {
  color: hsl(var(--muted-foreground));
}
.Text_mutedBodySm {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(var(--muted-foreground));
}

/* src/app/[lang]/SiteHeader.module.css */
.SiteHeader_header {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border) / 70%);
  background: hsl(var(--background) / 80%);
}
.SiteHeader_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem;
}
.SiteHeader_primary {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
}
.SiteHeader_siteName {
  display: none;
  flex-shrink: 0;
  color: hsl(var(--foreground));
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
}
.SiteHeader_nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.25rem;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 13px;
}
.SiteHeader_navLink,
.SiteHeader_moreSummary {
  padding: 0 0.5rem;
}
.SiteHeader_navLink {
  text-decoration: none;
}
.SiteHeader_more {
  position: relative;
  display: flex;
  align-items: center;
  height: 2.25rem;
}
.SiteHeader_moreSummary {
  cursor: pointer;
  list-style: none;
}
.SiteHeader_menu {
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 0;
  z-index: 30;
  min-width: 11rem;
  padding: 0.25rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%);
}
.SiteHeader_menuLink,
.SiteHeader_menuSpacer {
  display: block;
  padding: 0.375rem 0.5rem;
}
.SiteHeader_menuLink {
  color: inherit;
  text-decoration: none;
}
@media (width >= 640px) {
  .SiteHeader_nav {
    font-size: 0.875rem;
  }
}
@media (width >= 768px) {
  .SiteHeader_primary {
    gap: 0.75rem;
  }
  .SiteHeader_siteName {
    display: inline;
  }
}

/* src/components/ui/card.module.css */
.card_card {
  border-radius: var(--radius);
}
.card_header {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding: 1.5rem;
}
.card_title {
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}
.card_content {
  padding: 0 1.5rem 1.5rem;
}

/* src/components/ui/button.module.css */
.button_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  white-space: nowrap;
  transition:
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    opacity 150ms ease;
}
.button_button:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.button_variantDefault {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.button_variantDefault:hover {
  opacity: 0.9;
}
.button_variantGhost {
  background: transparent;
  color: inherit;
}
.button_variantLink {
  background: transparent;
  color: hsl(var(--primary));
  text-underline-offset: 4px;
}
.button_variantLink:hover {
  text-decoration: underline;
}
.button_sizeDefault {
  height: 2.5rem;
  padding: 0.5rem 1rem;
}
.button_sizeSm {
  height: 2.25rem;
  padding: 0 0.75rem;
}

/* src/components/ui/input.module.css */
.input_input {
  font-size: 1rem;
  line-height: 1.25rem;
}
.input_input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.input_input::file-selector-button {
  border: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (width >= 768px) {
  .input_input {
    font-size: 0.875rem;
  }
}

/* src/components/ui/OverlayChrome.module.css */
.OverlayChrome_backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgb(0 0 0 / 50%);
}
.OverlayChrome_headerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.OverlayChrome_titleBase {
  margin: 0;
  font-weight: 600;
}

/* src/components/ui/Modal.module.css */
.Modal_overlay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 1rem;
}
.Modal_dialog {
  display: flex;
  width: 100%;
  max-width: 48rem;
  max-height: 85vh;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%);
}
.Modal_header {
  flex-shrink: 0;
}
.Modal_title {
  font-size: 1.125rem;
}
.Modal_body {
  min-height: 0;
  overflow: auto;
}

/* src/components/SectionDivider.module.css */
.SectionDivider_dividerTop {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(var(--border));
}
.SectionDivider_compactDividerTop {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(var(--border));
}

/* src/components/SearchFormPanel.module.css */
.SearchFormPanel_root {
  width: 100%;
}
.SearchFormPanel_card {
  height: 100%;
}
.SearchFormPanel_examplesHelp {
  margin-bottom: 0.5rem;
}
.SearchFormPanel_examplesActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.SearchFormPanel_helpTrigger {
  margin-top: 0.75rem;
}
.SearchFormPanel_tabBar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.SearchFormPanel_section {
  margin-top: 0.5rem;
}
.SearchFormPanel_srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.SearchFormPanel_label {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.SearchFormPanel_footer {
  display: flex;
  justify-content: flex-start;
}

/* src/components/DataTable.module.css */
.DataTable_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
}
.DataTable_table th,
.DataTable_table td {
  padding: 0.45rem 0.6rem;
  vertical-align: top;
  border-bottom: 1px solid hsl(var(--border));
}
.DataTable_table th + th,
.DataTable_table td + td {
  border-left: 1px solid hsl(var(--border));
}
.DataTable_table th {
  text-align: left;
  background: hsl(var(--muted));
  font-weight: 600;
}
.DataTable_table thead th:first-child {
  border-top-left-radius: 0.6rem;
}
.DataTable_table thead th:last-child {
  border-top-right-radius: 0.6rem;
}
.DataTable_table tbody tr:last-child td {
  border-bottom: 0;
}

/* src/components/ui/Drawer.module.css */
.Drawer_drawer {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  max-height: 85vh;
  overflow: auto;
  border-radius: 0.75rem 0.75rem 0 0;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
}
.Drawer_title {
  font-size: 1rem;
}

/* src/components/MobileFormDrawer.module.css */
.MobileFormDrawer_fallbackSummary {
  width: 100%;
  cursor: pointer;
  list-style: none;
  justify-content: center;
}
.MobileFormDrawer_fallbackSummary::-webkit-details-marker {
  display: none;
}
.MobileFormDrawer_fallbackContent {
  margin-top: 0.75rem;
}
.MobileFormDrawer_trigger {
  width: 100%;
  justify-content: center;
}

/* src/features/formResultsShell.module.css */
.formResultsShell_shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.formResultsShell_resultsPane {
  min-width: 0;
}
.formResultsShell_desktopOnly {
  display: none;
}
.formResultsShell_mobileOnly {
  display: block;
}
@media (width >= 768px) {
  .formResultsShell_shell {
    display: grid;
    grid-template-columns: minmax(20rem, 24rem) minmax(0, 1fr);
    align-items: flex-start;
    gap: 1rem;
  }
  .formResultsShell_desktopOnly {
    display: block;
  }
  .formResultsShell_mobileOnly {
    display: none;
  }
  .formResultsShell_desktopSticky {
    position: sticky;
    top: 1rem;
  }
}

/* src/components/Skeleton.module.css */
.Skeleton_pulseBlock {
  background: hsl(var(--muted));
  animation: Skeleton_pulse 1.5s ease-in-out infinite;
}
@keyframes Skeleton_pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

/* src/components/LoadingArticle.module.css */
.LoadingArticle_chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.LoadingArticle_chip {
  width: 4rem;
  height: 4rem;
}
.LoadingArticle_footerBar {
  width: 12rem;
  height: 2rem;
}

/* src/components/Pager.module.css */
.Pager_root {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.Pager_side {
  width: 5rem;
  text-align: center;
}
.Pager_placeholder {
  display: inline-block;
  width: 100%;
}
.Pager_status {
  width: 10rem;
  text-align: center;
}
.Pager_link {
  width: 100%;
  padding: 0 0.75rem;
  color: inherit;
}
@media (width >= 640px) {
  .Pager_root {
    gap: 1rem;
  }
}

/* src/components/IdsFindResponseView.module.css */
.IdsFindResponseView_results {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.IdsFindResponseView_resultChar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 50px;
  width: 64px;
  height: 64px;
  line-height: 55px;
  text-align: center;
  overflow: clip;
}
.IdsFindResponseView_resultLink {
  display: block;
  color: #111;
  text-decoration: none;
  transition:
    opacity 120ms ease,
    transform 120ms ease,
    filter 120ms ease;
}
.IdsFindResponseView_resultLink[data-pending=true] {
  opacity: 0.55;
  filter: saturate(0.7);
}

/* src/components/MultiInput.module.css */
.MultiInput_root {
  display: grid;
  gap: 0.5rem;
}
.MultiInput_input {
  font-size: 1rem;
}
@media (width >= 768px) {
  .MultiInput_input {
    font-size: 0.875rem;
  }
}

/* src/features/mojidata/MojidataPageShell.module.css */
.MojidataPageShell_main {
  padding: 0 1rem;
  padding-bottom: max(26vh, 10rem);
}

/* src/components/LoadingMojidataArticle.module.css */
.LoadingMojidataArticle_heading {
  width: 12rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
}
.LoadingMojidataArticle_summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.LoadingMojidataArticle_glyph {
  width: 120px;
  height: 120px;
}
.LoadingMojidataArticle_meta {
  display: grid;
  gap: 0.5rem;
}
.LoadingMojidataArticle_metaLine {
  height: 1rem;
}
.LoadingMojidataArticle_metaLineWide {
  height: 1rem;
  width: 10rem;
}
.LoadingMojidataArticle_metaLineNarrow {
  height: 1rem;
  width: 7rem;
}
.LoadingMojidataArticle_body {
  display: grid;
  gap: 0.5rem;
}
.LoadingMojidataArticle_bodyLine {
  height: 1rem;
}
.LoadingMojidataArticle_bodyLineFull {
  height: 1rem;
  width: 100%;
}
.LoadingMojidataArticle_bodyLineWide {
  height: 1rem;
  width: 92%;
}
.LoadingMojidataArticle_bodyLineMedium {
  height: 1rem;
  width: 78%;
}
.LoadingMojidataArticle_message {
  margin: 0.75rem 0 0;
}

/* src/app/[lang]/mojidata/[char]/MojidataResponseView.module.css */
.MojidataResponseView_response {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.MojidataResponseView_response > h2 {
  margin-bottom: 0.2rem;
}
.MojidataResponseView_response > h3 {
  margin-top: 0.65rem;
  padding-top: 0.8rem;
  border-top: 1px solid hsl(var(--border));
}
.MojidataResponseView_response figure {
  margin: 0;
}
.MojidataResponseView_response pre {
  margin: 0;
  overflow: auto;
  max-height: 32rem;
  font-size: 0.88rem;
  line-height: 1.5;
}
.MojidataResponseView_response ul,
.MojidataResponseView_response ol {
  padding-left: 1.25rem;
}
.MojidataResponseView_response ul {
  list-style: disc;
}
.MojidataResponseView_response ol {
  list-style: decimal;
}
.MojidataResponseView_summaryWrap {
  position: relative;
}
.MojidataResponseView_summaryActions {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
}
.MojidataResponseView_summaryGrid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  padding-right: 7rem;
}
.MojidataResponseView_summaryGlyphCol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.MojidataResponseView_summaryKv {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.93rem;
}
.MojidataResponseView_summaryRow {
  display: grid;
  grid-template-columns: 6.2rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.18rem 0;
}
.MojidataResponseView_summaryRow dt {
  margin: 0;
  font-weight: 600;
}
.MojidataResponseView_summaryRow dd {
  margin: 0;
}
.MojidataResponseView_summaryBadgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}
.MojidataResponseView_badge {
  display: inline-block;
  padding: 0.05rem 0.45rem;
  font-size: 0.72rem;
}
.MojidataResponseView_contentGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.MojidataResponseView_contentMain {
  min-width: 0;
  line-height: 1.75;
  --rich-text-list-indent: 1.25rem;
}
.MojidataResponseView_contentMain h2 {
  margin-top: 1.35rem;
  margin-bottom: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid hsl(var(--border));
  font-size: 1.35rem;
}
.MojidataResponseView_contentMain > h2:first-child {
  margin-top: 0.25rem;
  padding-top: 0;
  border-top: 0;
}
.MojidataResponseView_contentMain h3 {
  margin-top: 1.15rem;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}
.MojidataResponseView_contentMain h4 {
  margin-top: 0.9rem;
  margin-bottom: 0.35rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.97rem;
}
@media (width >= 1024px) {
  .MojidataResponseView_contentGrid {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }
}
@media (width <= 767px) {
  .MojidataResponseView_summaryActions {
    position: static;
    margin-bottom: 0.35rem;
  }
  .MojidataResponseView_summaryGrid {
    grid-template-columns: 1fr;
    justify-items: start;
    padding-right: 0;
  }
  .MojidataResponseView_summaryGrid > div:first-child {
    justify-self: center;
  }
  .MojidataResponseView_summaryGlyphCol {
    align-items: center;
  }
  .MojidataResponseView_summaryBadgeRow {
    justify-content: center;
  }
  .MojidataResponseView_summaryRow {
    grid-template-columns: 1fr;
    gap: 0.08rem;
  }
}

/* src/components/MojidataDeferredVariants.module.css */
.MojidataDeferredVariants_actions {
  margin-top: 0.75rem;
}
.MojidataDeferredVariants_toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  font-size: 0.88rem;
}

/* src/components/MojidataComparison.module.css */
.MojidataComparison_comparison {
  display: flex;
  flex-flow: row wrap;
  gap: 0.65rem;
}
.MojidataComparison_figureCard {
  margin: 0;
  min-width: 132px;
  padding: 0.5rem;
  border-radius: 0.7rem;
}
.MojidataComparison_figureCard > figcaption {
  margin: 0;
  padding: 0;
  border-bottom: 0;
  font-size: 0.88rem;
  line-height: 1.35;
}
.MojidataComparison_frame {
  margin-top: 0.45rem;
}
.MojidataComparison_variantsComparison {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.65rem;
}
.MojidataComparison_variantsFigureCard {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.MojidataComparison_variantsFigureCard > figcaption {
  min-height: 4.5rem;
  overflow: visible;
  margin-bottom: 0.45rem;
  padding-bottom: 0.45rem;
}
.MojidataComparison_variantFrame {
  margin-top: auto;
}
.MojidataComparison_variantsFigureCard > figcaption > div {
  margin-top: 0.1rem;
}

/* src/components/MojiJohoChar.module.css */
.MojiJohoChar_mojiJoho {
  font-family:
    Mojidata-IPAmjMincho,
    Mojidata-AdobeNotDef,
    serif;
}
.MojiJohoChar_displayModeControl {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: -0.2rem 0 1rem;
  font-size: 0.9rem;
}
.MojiJohoChar_button {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.MojiJohoChar_buttonActive {
  border-color: #0a67c7;
  background: #edf5ff;
  color: #0a67c7;
}

/* src/components/MojidataCharFrame.module.css */
.MojidataCharFrame_char {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0.25rem 0 0;
  font-size: 100px;
  width: 120px;
  height: 120px;
  text-align: center;
  overflow: clip;
}
.MojidataCharFrame_char.MojidataCharFrame_charLink,
.MojidataCharFrame_kdpvChar.MojidataCharFrame_charLink {
  border-color: #88f;
}
.MojidataCharFrame_charLink a {
  display: block;
  width: fit-content;
  color: #000;
  text-decoration: none;
}
.MojidataCharFrame_glyphwiki img,
.MojidataCharFrame_char > img {
  display: block;
  padding: 5px;
}
.MojidataCharFrame_rawChar {
  display: inline-block;
  height: 100px;
  line-height: 100px;
}
.MojidataCharFrame_kdpvChar {
  flex-shrink: 0;
  margin: 0.25rem 0 0;
  padding: 0 0.7rem;
  font-size: 100px;
  width: fit-content;
  height: 120px;
  line-height: 110px;
}
.MojidataCharFrame_sourceHanSerif {
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifJP,
    Mojidata-SourceHanSerifSC,
    Mojidata-SourceHanSerifTC,
    Mojidata-SourceHanSerifKR,
    serif;
}
.MojidataCharFrame_sourceHanSerif:lang(ja) {
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifJP,
    serif;
}
.MojidataCharFrame_sourceHanSerif:lang(ko) {
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifKR,
    serif;
}
.MojidataCharFrame_sourceHanSerif:lang(zh-CN) {
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifSC,
    serif;
}
.MojidataCharFrame_sourceHanSerif:lang(zh-TW) {
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifTC,
    serif;
}
.MojidataCharFrame_sourceHanSerif:lang(zh-HK) {
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifHK,
    serif;
}

/* src/components/MojidataPermalinkButton.module.css */
.MojidataPermalinkButton_button {
  margin-left: 0.5rem;
  padding: 0.1rem 0.55rem;
  font-size: 0.74rem;
}
@media (width <= 767px) {
  .MojidataPermalinkButton_button {
    margin-left: 0;
    padding: 0.08rem 0.5rem;
    font-size: 0.7rem;
  }
}

/* src/components/MojidataSectionNav.module.css */
.MojidataSectionNav_sidebar {
  display: none;
}
.MojidataSectionNav_nav {
  display: flex;
  gap: 0.45rem;
}
.MojidataSectionNav_mobile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
}
.MojidataSectionNav_link {
  display: inline-block;
  flex: 0 0 auto;
  padding: 0.2rem 0.65rem;
  white-space: nowrap;
  font-size: 0.8rem;
}
.MojidataSectionNav_active {
  font-weight: 600;
}
.MojidataSectionNav_mobileLink {
  padding: 0.4rem 0.55rem;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
@media (width <= 420px) {
  .MojidataSectionNav_mobile {
    grid-template-columns: 1fr;
  }
}
@media (width >= 1024px) {
  .MojidataSectionNav_sidebar {
    position: sticky;
    top: 1rem;
    display: block;
  }
  .MojidataSectionNav_mobile {
    display: none;
  }
  .MojidataSectionNav_sidebarNav {
    flex-direction: column;
    gap: 0.4rem;
    padding-right: 0.4rem;
  }
  .MojidataSectionNav_sidebarLink {
    padding: 0.35rem 0.55rem;
  }
}

/* src/components/ArticleCard.module.css */
.ArticleCard_card {
  border-radius: var(--radius);
}

/* src/components/RichText.module.css */
.RichText_richText p,
.RichText_richText li {
  color: hsl(var(--foreground));
}
.RichText_richText ul,
.RichText_richText ol {
  padding-left: var(--rich-text-list-indent, 1.25rem);
}
.RichText_richText ul {
  list-style: disc;
}
.RichText_richText ol {
  list-style: decimal;
}
.RichText_richText a {
  color: hsl(var(--primary));
  text-underline-offset: 2px;
}
.RichText_richText a:hover {
  text-decoration-thickness: 2px;
}

/* src/components/PerfDebugPanel.module.css */
.PerfDebugPanel_summary {
  cursor: pointer;
}
.PerfDebugPanel_metrics {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.75rem;
  margin-top: 0.75rem;
}
.PerfDebugPanel_metricRow {
  display: contents;
}

/* src/app/[lang]/layout.module.css */
.layout_page {
  width: min(calc(100% - 2rem), 68rem);
  margin: 1rem auto;
}
.layout_stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* src/app/[lang]/fonts.css */
@font-face {
  font-family: Mojidata-SourceHanSerif;
  src: local("Source Han Serif"), local("Noto Serif CJK");
  ascent-override: calc(100% - 100% * 120 / 1000);
  descent-override: calc(100% * 120 / 1000);
}
@font-face {
  font-family: Mojidata-SourceHanSerifSC;
  src: local("Source Han Serif SC"), local("Noto Serif CJK SC");
  ascent-override: calc(100% - 100% * 120 / 1000);
  descent-override: calc(100% * 120 / 1000);
}
@font-face {
  font-family: Mojidata-SourceHanSerifTC;
  src: local("Source Han Serif TC"), local("Noto Serif CJK TC");
  ascent-override: calc(100% - 100% * 120 / 1000);
  descent-override: calc(100% * 120 / 1000);
}
@font-face {
  font-family: Mojidata-SourceHanSerifHK;
  src: local("Source Han Serif HK"), local("Noto Serif CJK HK");
  ascent-override: calc(100% - 100% * 120 / 1000);
  descent-override: calc(100% * 120 / 1000);
}
@font-face {
  font-family: Mojidata-SourceHanSerifJP;
  src: local("Source Han Serif JP"), local("Noto Serif CJK JP");
  ascent-override: calc(100% - 100% * 120 / 1000);
  descent-override: calc(100% * 120 / 1000);
}
@font-face {
  font-family: Mojidata-SourceHanSerifKR;
  src: local("Source Han Serif KR"), local("Noto Serif CJK KR");
  ascent-override: calc(100% - 100% * 120 / 1000);
  descent-override: calc(100% * 120 / 1000);
}
@font-face {
  font-family: Mojidata-IPAmjMincho;
  src: local("IPAmjMincho");
  ascent-override: calc(100% - 100% * 246 / 2048);
  descent-override: calc(100% * 246 / 2048);
}
@font-face {
  font-family: Mojidata-AdobeNotDef;
  src: url("./AND-Regular-QFKVVI3Y.woff2") format("woff2");
  font-display: swap;
}

/* src/app/[lang]/theme.css */
:root {
  --background: 210 33% 97%;
  --foreground: 217 30% 17%;
  --card: 0 0% 100%;
  --card-foreground: 217 30% 17%;
  --primary: 210 90% 41%;
  --primary-foreground: 0 0% 100%;
  --muted: 210 24% 93%;
  --muted-foreground: 215 16% 35%;
  --border: 214 26% 88%;
  --input: 214 26% 88%;
  --ring: 210 90% 41%;
  --radius: 0.75rem;
}

/* src/app/[lang]/base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  text-size-adjust: 100%;
}
html,
body {
  min-height: 100%;
  background-color: #f3f5f8 !important;
}
body {
  margin: 0;
  min-height: 100vh;
  line-height: 1.5;
  font-family:
    Mojidata-SourceHanSerif,
    Mojidata-SourceHanSerifJP,
    Mojidata-SourceHanSerifSC,
    Mojidata-SourceHanSerifTC,
    Mojidata-SourceHanSerifKR,
    var(--font-cjksymbols),
    serif;
  color: #1f2a3a;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
menu,
ol,
ul {
  margin: 0;
  padding: 0;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}
a {
  color: inherit;
  text-decoration: inherit;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
  height: auto;
}
small {
  font-size: 80%;
}

/* crawl-spa/styles.css */
body {
  background-color: hsl(var(--background));
}
#app {
  min-height: 100vh;
}
