.article,
.gallery {
  max-width: 800px;
  margin: auto;
}

.gallery {
  padding-top: 0;
}

.article__image {
  width: 100%;
  margin-bottom: 16px;
}

.article__image img {
  max-width: 100%;
}

.article__text p {
  margin-bottom: 8px;
}

.article__text ul,
.article__text ol {
  list-style: initial;
}

.article__text h1,
.article__text h2,
.article__text h3,
.article__text h4,
.article__text h5,
.article__text h6 {
  text-align: center;
  margin-bottom: 16px;
}

.article__text li {
  margin-bottom: 8px;
}

.article__text iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.article__text a {
  text-decoration: underline;
}

/* Categories */

.categories {
  margin-bottom: 16px;
}

.categories__link {
  border-radius: 10px;
  border: 1px solid var(--polynesiumBleu);;
  padding: 5px;
  background-color: var(--polynesiumBleu);
  color: var(--antiFlashWhite);
  transition: 0.2s;
}

.categories__link:hover {

  background-color: var(--antiFlashWhite);
  color: var(--polynesiumBleu);
}

/* Gallery */

#my-gallery {
  display: grid;
  gap: 10px; /* Расстояние между иконками */
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

#my-gallery a {
  display: block;
  width: 100%;
}

#my-gallery img {
  width: 100%;
  height: auto;
  display: block;
}