.items-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  gap: 50px;
}
.items-container .item {
  width: 100%;
  height: 100%;
  min-height: 100px;
  display: flex;
  justify-content: start;
}
.items-container .item-photo {
  background-color: var(--bg-dark);
  width: 50%;
  max-width: 750px;
  max-height: 29.4117647059%;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.items-container .item-info {
  flex: 100;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.items-container .item-title {
  font-weight: bold;
  text-align: right;
  word-break: keep-all;
  color: var(--color-accent);
}
.items-container .filler {
  flex: 0 50px;
}
.items-container .flex-reverse .item-title {
  text-align: left;
}
.items-container .item-usage {
  color: #696969;
}
.items-container .item-usage div {
  color: inherit;
  font-size: inherit;
  display: inline;
  text-decoration: underline;
}

@media screen and (min-width: 1920px) {
  .items-container .item-photo {
    width: 576px;
    height: 324px;
  }
}
@media screen and (max-width: 980px) {
  .items-container {
    margin-top: 5vw;
  }
  .item-usage div {
    text-underline-offset: 2px;
  }
  .item {
    flex-direction: column;
  }
  .item .item-photo {
    --width: 80vw;
    width: var(--width);
    height: calc(var(--width) * 0.75);
  }
  .item .item-photo img {
    height: 100%;
  }
}
@media screen and (min-width: 980px) {
  .item-photo img {
    height: 100%;
  }
  .item-info li {
    font-size: calc(var(--font-standard) - 4px);
  }
  .item-usage {
    font-size: calc(var(--font-standard) - 4px);
  }
  .item-usage div {
    text-underline-offset: 5px;
  }
}

/*# sourceMappingURL=items.css.map */
