.text-page {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(min-content, auto);
  counter-reset: caption;
}
@media only screen and (max-width: 600px) {
  .text-page {
    grid-template-columns: 1fr;
  }
}
.article-page-title {
  font-family: "Heliotrope 4 Regular", serif;
  font-size: 1.8rem;
  margin: 3rem 0 2rem 0;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .article-page-title {
    font-size: 1.7rem;
    margin: 1.5rem 0;
  }
}
.article-subtitle {
  border-left: 4px solid olivedrab;
  font-family: "Adelphi PE", sans-serif;
  font-size: 1.4rem;
  margin: 2rem auto;
  padding: 0.75rem;
  max-width: 35rem;
  width: 100%;
  box-sizing: border-box;
}
@media only screen and (max-width: 600px) {
  .article-subtitle {
    font-size: 1.3rem;
    margin: 1.2rem 0;
  }
}
.text-page p {
  font-family: "Heliotrope 4 Regular", serif;
  font-size: 1.4rem;
  line-height: 1.4;
  max-width: 35rem;
  margin: 0 auto;
}
.text-page p + p {
  margin-top: 1.2rem;
}
.language-dropdown {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.language-dropdown label {
  font-family: "Adelphi PE", sans-serif;
  font-size: 1rem;
  color: #333;
}
.language-select {
  font-family: "Heliotrope 4 Regular", serif;
  font-size: 1rem;
  padding: 0.5rem;
  border: 2px solid olivedrab;
  border-radius: 4px;
  background-color: white;
  cursor: pointer;
  min-width: 120px;
}
.language-select:focus {
  outline: none;
  border-color: #6b8e23;
  box-shadow: 0 0 0 2px rgba(107, 142, 35, 0.2);
}
@media only screen and (max-width: 600px) {
  .language-dropdown {
    position: static;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .language-select {
    font-size: 0.9rem;
    min-width: 100px;
  }
}
/*# sourceMappingURL=articles.css.map */