.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);
}
/* Dark mode Product Literature - Centered */
/* Responsive behavior */
div#dark-mode {
  background-color: #333f48;
  padding: 30px 0 60px;
}
h2.centered.content-title {
  text-align: center;
}
.btn-brochures-container.centered-buttons {
  display: flex;
  justify-content: center;
}
.centered.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
p.centred.content-text.title-contact {
  text-align: center;
  font-weight: 600;
}
p.c-text.centered.content-text.des-contact {
  text-align: center;
  max-width: 900px;
  padding: 20px 0;
}
@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;
  }
  p.centred.content-text.title-contact {
    padding: 0;
    margin: 0 0 5px;
}
  p.c-text.centered.content-text.des-contact {
    padding: 5px 0;
  }
}
@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;
  }
}