.cat-albom {
    display: grid;
    flex-wrap: wrap;
    gap: 10px;
    grid-template-columns: repeat(6, 1fr);
}

.section__cat {
  margin: 20px 0;
}

.cat-image img {
  width: 400px;
  height: auto;
  display: flex;
  border-radius: 15px;
  padding-bottom: 5px;
}

.cat__text {
  margin-top: 40px;
  line-height: 140%;
}

h3 {
  margin-block-end: 0;
  margin-inline-start: 0;
  font-size: 1.5em;
  display: inline-block;
}


/* RUTUBE PLAYER */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  margin: 20px auto;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}