html {
  scroll-behavior: smooth;
}
.noise {
  background-image:
    radial-gradient(
      1200px 600px at 80% -10%,
      rgba(31, 138, 92, 0.12),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at -10% 10%,
      rgba(11, 18, 32, 0.06),
      transparent 60%
    );
}
.card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -12px rgba(11, 18, 32, 0.15);
  border-color: rgba(31, 138, 92, 0.35);
}
details > summary {
  list-style: none;
  cursor: pointer;
}
details > summary::-webkit-details-marker {
  display: none;
}
details[open] .chev {
  transform: rotate(180deg);
}
.chev {
  transition: transform 0.2s ease;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: #e5e7eb;
  border-radius: 9999px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #0f6d47;
  border-radius: 9999px;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #0f6d47;
}
input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #0f6d47;
  border-radius: 9999px;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #0f6d47;
}
.fade-up {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.prose-tr h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.prose-tr h3 {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose-tr p {
  color: rgba(11, 18, 32, 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.prose-tr ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: rgba(11, 18, 32, 0.75);
}
.prose-tr ul li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.prose-tr a {
  color: #0a5437;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.prose-tr strong {
  color: #0b1220;
}
