
/* General markdown layout */
#spa-content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#spa-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#spa-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937; /* neutral-dark */
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#spa-content p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

#spa-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
  margin: 1rem auto;
  color: #4B5563;
}

#spa-content li {
  margin-bottom: 0.5rem;
}

#spa-content a {
  color: #2563EB;
  text-decoration: underline;
}


#spa-content img {
  max-width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}


#spa-content a.spa-link {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

#spa-content a.spa-link:hover {
  background-color: #111827;
}

.lang-btn.active {
  background-color: black;
  color: white;
}

.spa-link.active,
.spa-link-mobile.active {
  font-weight: bold;
  text-decoration: underline;
  color: black;
}

