@charset "utf-8";

.hardwareSection {
  font-size: 2em;
  font-variant: small-caps;
  font-weight: normal;
  line-height: 1em;
  color: #15c035;
}

.hardwareUpdate {
  font-size: 0.75em;
  font-style: italic;
  line-height: 1.25em;
  margin-bottom: 12px;
  color: #808080;
}

.hardwareList {
  width: 100%;
  max-width: none;
}

.hardwareList hr {
  height: 1px;
  background-color: #333333;
  margin-bottom: 50px;
}

.hardwareRow {
  display: grid;
  grid-template-columns: 300px 1fr;
  column-gap: 12px;
  align-items: start;
  margin-bottom: 8px;
}

.hardwareRow img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;
  border: 2px solid #808080;
}

.hardwareCat {
  font-size: 0.9em;
  line-height: 1em;
  font-weight: bold;
  color: #808080;
}

.hardwareTitle {
  font-size: 1.5em;
  font-variant: small-caps;
  font-weight: bold;
  line-height: 1em;
  color: #15c035;
}

@media (max-width: 600px) {
  .hardwareRow {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .hardwareRow img {
    width: 75%;
    height: auto;
    max-width: 300px;
    justify-self: start;
    margin-top: 30px;
  }
}
