/* Main container */
.tabbed-content-container {
  background: #f0f0f0;
}

.tabbed-content {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 1rem;
}

.commercial-hardware-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.table-commercial-hardware {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 auto 2rem auto;
  border: 1px solid #ccc;
}

/* Image container */
.commercial-hardware-img-container {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
}

.commercial-hardware-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  display: block;
}

.commercial-text-container {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.commercial-text-container h2 {
    text-align:center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1f5175;
}

.commercial-text-container p {
  margin-bottom: 1rem;
  color: var(--tabbed-content-paragraph);
  line-height: 1.6;
  text-align:justify;
}

.com-info-bold span {
  font-weight:bold;
}

.com-info-italic {
    font-style:italic;
}

.commercial-hardware-note p {
    line-height:1.6rem;
}

.commercial-hardware-note span {
    font-weight:bold;
}

.commercial-hardware-note p {
    font-weight:bold;
}

/* Desktop layout (enhancement) */
@media (min-width: 981px) {
  .commercial-hardware-container {
    gap: 0;
  }

  .commercial-text-container h2 {
    text-align:left;
  }

  .commercial-text-container p {
    text-align:left;
  }

  .table-commercial-hardware {
    flex-direction: row;
    max-width: 1200px;
    align-items: stretch;
    height:400px;
  }

  .commercial-hardware-img-container,
  .commercial-text-container {
    width: 50%;
  }
}
