/* Technical Specs styles */
.specs-grid {
  column-count: 2;
  column-gap: 1.5rem;
  width: 100%;
}
.spec-item {
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.spec-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.spec-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.spec-content {
  flex-grow: 1;
}
p.content-text.titlets,
p.content-text.contentts {
  font-size: 14px;
  text-align: left;
  text-wrap-style: balance;
}
@media screen and (min-width: 1px) and (max-width: 320px) {
  .specs-grid {
    column-count: 1;
  }
  .spec-item {
    flex-direction: column;
  }
  p.content-text.titlets,
  p.content-text.contentts {
    text-align: center;
  }
}
@media screen and (min-width: 321px) and (max-width: 375px) {
  .specs-grid {
    column-count: 1;
  }
  .spec-item {
    flex-direction: row;
  }
  p.content-text.titlets,
  p.content-text.contentts {
    text-align: left;
  }
}
@media screen and (min-width: 376px) and (max-width: 425px) {
  .specs-grid {
    column-count: 1;
  }
  .spec-item {
    flex-direction: row;
  }
  p.content-text.titlets,
  p.content-text.contentts {
    text-align: left;
  }
}
@media screen and (min-width: 426px) and (max-width: 767px) {
  .specs-grid {
    column-count: 1;
  }
  .spec-item {
    flex-direction: row;
  }
  p.content-text.titlets,
  p.content-text.contentts {
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .specs-grid {
    column-count: 1;
  }
  .spec-item {
    flex-direction: row;
  }
  p.content-text.titlets,
  p.content-text.contentts {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .spec-item {
    height: 70px;
  }
}
@media screen and (min-width: 1441px) and (max-width: 2560px) {
  .spec-item {
    height: 70px;
  }
}
@media screen and (min-width: 2561px) {
  .spec-item {
    height: 70px;
  }
}