.technology-hero {
  position: relative;
}

.technology-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.technology-hero__subtitle {
  font-size: var(--font-size-lg);
}

.technology-hero__meta {
  flex-wrap: wrap;
}

.technology-hero__image-wrapper {
  padding: var(--space-4);
}

.technology-hero__image {
  border-radius: var(--radius-md);
}

.technology-hero__specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.technology-hero__spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  background-color: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--color-border-subtle);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.technology-section-header h2 {
  margin-bottom: var(--space-3);
}

.technology-grid {
  align-items: stretch;
}

.technology-card {
  height: 100%;
}


.technology-smarthome__layout,
.technology-design__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.technology-safety__grid,
.technology-ui__features,
.technology-mobile__grid,
.technology-smarthome__highlights,
.technology-materials__grid,
.technology-cert__grid,
.technology-support__grid {
  align-items: stretch;
}

.technology-smarthome__image,
.technology-design__image {
  padding: var(--space-4);
}

.technology-smarthome__img,
.technology-design__img {
  border-radius: var(--radius-md);
}

.technology-materials__grid .card,
.technology-cert__grid .card {
  height: 100%;
}

.technology-support__layout {
  max-width: var(--container-max-width);
  margin-inline: auto;
}

.technology-support__cta {
  flex-wrap: wrap;
}

.technology-support__secondary-links {
  flex-wrap: wrap;
  font-size: var(--font-size-sm);
}

@media (max-width: 1024px) {
  .technology-hero__layout {
    grid-template-columns: 1fr;
  }

  .technology-safety__layout,
  .technology-ui__layout,
  .technology-mobile__layout,
  .technology-smarthome__layout,
  .technology-design__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .technology-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .technology-support__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
