.equipment {
  display: flex;
  gap: 16px;
}

.equipment__photos {
  flex: 0 1 48%;
}

.equipments__content {
  flex: 0 1 48%;
}

.equipments__content p {
  line-height: 1.5;
  margin-bottom: 8px;
}

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

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

.equipments__content a {
  text-decoration: underline;
}

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

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

.equipment__photos img {
  max-width: 100%;
  padding: 0 20px;
}

.equipment__details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.equipment__category {
  color: var(--ebony);
  font-size: 24px;
  font-weight: 700;
}

.equipment__partner a {
  max-width: 100px;
}

.equipment__partner img {
  max-width: 100%;
  min-width: 100px;
}

.equipment__description {
  margin-top: 8px;
  line-height: 1.5;
}

.equipment__gallery {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.equipment__gallery a {
  display: block;
  width: 100%;
}

.equipment__gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery {
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  .equipment {
    flex-direction: column;
  }

  .equipment__photos img {
    padding: 0;
  }
}