/* Style for more_info.html */

/* main page */
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: #e7e7ea;
  color: #333;
}

.info-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.subtitle {
  color: #777;
  font-style: italic;
  margin-bottom: 32px;
}

section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e0c8;
}

section:last-child {
  border-bottom: none;
}

.callout {
  background: #fffffd;
  border-left: 3px solid #e8ddbe;
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 13px;
  color: #444;
}

code {
  background: #f0ead9;
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 12px;
  color: #5a5030;
}

/* link */
a {
  color: #8a6d3b;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

a:hover {
  color: #6b5228;
}

.info-link2 {
  color: #2563eb;
  text-decoration: none;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 25px;
}

.info-link2::after {
   content: "↩";
  transition: transform 0.2s ease;
}

.info-link2:hover::after {
  transform: translateX(4px);
}

.info-link2:hover {
  text-decoration: underline;
}

/* toggle buttons */
.lang-toggle {
  font-size: 13px;
  color: #777;
}
.lang-toggle button {
  background: none;
  border: none;
  cursor: pointer;
  color: #777;
  font-size: 13px;
  padding: 0 4px;
}
.lang-toggle button.active {
  color: #1a1a1a;
  font-weight: 700;
}
