.contentWrapper,
.limited-width {
	max-width: 1200px;
	margin: 1em auto 0 auto;
	min-height: 0 !important;
}

h1 {
	text-align: center;
	margin-top: 1em;
}

/* Random image styling */
.random-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--darker-primary-color);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  margin: 1em auto 1.5em auto;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.random-image:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Article styling */
#article {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

#article h2 {
  font-size: 1.85rem; 
  margin-bottom: 1.5rem;
  color: var(--darker-primary-color);
  font-weight: bold;
  line-height: 1.2;
  padding-top: 0;
}

#article h3 {
  font-size: 22px;
  margin-bottom: 1rem;
  color: var(--darker-primary-color);
  font-weight: 600;
  line-height: 1.3;
  padding-top: 0;
}

#article p {
  font-size: 1rem;
  line-height: 1.7; 
  margin-bottom: 1.5rem;
  color: var(--dark);
}

#article ul {
  margin-left: 2rem; 
  margin-bottom: 1.5rem;
  list-style-type: disc; 
}

#article ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

#article a {
  color: var(--primary-color); 
  text-decoration: none;
  font-weight: 500; 
}

#article a:hover {
  text-decoration: underline; 
  color: var(--accentuation-color); 
}

#article strong {
  color: #222;
  font-weight: 600;
}
