.literature-container {
  display: flex;
  background-color: #ebebee;
  border-radius: 30px;
}
.brochure-container,
.spec-container {
  display: flex;
}
img.literature-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}
.downloadable-pdfs {
  padding: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
a#downloadlookbook,
a#downloadspecsheet,
a#downloadinstructions,
a#downloadwarranty {
  background: linear-gradient(to bottom, #ebebee 0%, #ebebee 50%, #333f48 50%, #333f48 100%);
  background-size: 100% 200%;
  color: #333f48;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 28px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
a#downloadlookbook:hover,
a#downloadspecsheet:hover,
a#downloadinstructions:hover,
a#downloadwarranty:hover {
  background-position: 0 100%;
  color: #ffffff;
  transform: translateY(-1px);
}
@media screen and (min-width: 1px) and (max-width: 900px) {
  .literature-container,
  .brochure-container,
  .spec-container {
    flex-direction: column;
  }
  .literature-container {
    padding: 30px;
  }
  .downloadable-pdfs {
    gap: 8px;
  }
}
@media screen and (min-width: 901px) and (max-width: 9000px) {
  .literature-container {
    flex-direction: row;
  }
  .brochure-container,
  .spec-container {
    flex-direction: column;
  }
  .literature-container {
    padding: 20px 40px;
  }
}