.tech-doc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 32px;
}

.tech-doc-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #222;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid #e1e4e8;
  transition: all .2s ease;
}

.tech-doc-tab:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.tech-doc-tab.active {
  background: #004f9f;
  color: #fff;
  border-color: #004f9f;
}

@media (max-width: 640px) {
  .tech-doc-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .tech-doc-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .tech-doc-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;

    margin: 0 -16px 28px;
    padding: 4px 16px 12px;

    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .tech-doc-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .tech-doc-tabs::-webkit-scrollbar {
    display: none;
  }
}
.brochure-group-label {
  grid-column: 1 / -1;
  margin: 12px 0 -6px;
  font-size: 14px;
  font-weight: 800;
  color: #004f9f;
  letter-spacing: .02em;
}



/* Hide PDF / file size tablet without changing HTML */
.brochure-meta {
  display: none !important;
}

/* Keep download button clean */
.brochure-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Rotate/change the download arrow so it points down */
.brochure-download::after {
  content: "↓" !important;
  transform: none !important;
}



