.technology-page {
  --tech-bg: #f6f8fb;
  --tech-surface: #ffffff;
  --tech-surface-soft: #f0f4f3;
  --tech-ink: #0f1d33;
  --tech-muted: #58666f;
  --tech-border: #d8e0e3;
  --tech-border-strong: #bdc9cd;
  --tech-accent: #4f6c60;
  --tech-accent-strong: #395449;
  --tech-accent-soft: #e4ece8;
  --tech-icon-surface: #ffffff;
  --tech-warning-soft: #f8f3e7;
  --tech-warning-ink: #72591e;
  --tech-shadow: 0 5px 18px rgba(15, 29, 51, 0.045);
  min-height: 100vh;
  padding: 1.25rem 0 4.5rem;
  overflow-x: clip;
  background: var(--tech-bg);
  color: var(--tech-ink);
}

html.dark-mode .technology-page,
body.dark-mode .technology-page {
  --tech-bg: #111719;
  --tech-surface: #1a2224;
  --tech-surface-soft: #202b2d;
  --tech-ink: #eef5f5;
  --tech-muted: #b7c3c5;
  --tech-border: #354346;
  --tech-border-strong: #526164;
  --tech-accent: #9ec5b5;
  --tech-accent-strong: #c2ded3;
  --tech-accent-soft: #273936;
  --tech-warning-soft: #382f1e;
  --tech-warning-ink: #ead69d;
  --tech-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.technology-page *,
.technology-page *::before,
.technology-page *::after {
  box-sizing: border-box;
}

.technology-shell {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.technology-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.9rem;
  padding: 0;
  color: var(--tech-muted);
  font-size: 0.78rem;
  list-style: none;
}

.technology-breadcrumbs li {
  min-width: 0;
}

.technology-breadcrumbs li + li::before {
  margin-right: 0.4rem;
  color: var(--tech-border-strong);
  content: "/";
}

.technology-page a {
  color: var(--tech-accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.technology-page a:hover {
  color: var(--tech-accent);
}

.technology-page a:focus-visible,
.technology-page summary:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(79, 108, 96, 0.36);
  outline-offset: 3px;
}

.technology-page section,
.technology-page [id] {
  scroll-margin-top: 1.5rem;
}

.technology-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(270px, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  border: 1px solid var(--tech-border);
  border-radius: 12px;
  background: var(--tech-surface);
  box-shadow: var(--tech-shadow);
}

.technology-hero-copy {
  min-width: 0;
}

.technology-hub-title {
  display: flex;
  min-width: 0;
  gap: 0.9rem;
  align-items: center;
}

.technology-hub-title .technology-brand-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tech-border);
  border-radius: 10px;
  background: var(--tech-icon-surface);
  color: var(--tech-accent-strong);
}

.technology-hub-title .technology-brand-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.technology-hub-title .technology-brand-icon i {
  font-size: 1.45rem;
}

.technology-eyebrow,
.technology-section-kicker,
.technology-content-type {
  margin: 0 0 0.45rem;
  color: var(--tech-accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.technology-hero h1 {
  max-width: 21ch;
  margin: 0;
  color: var(--tech-ink);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.technology-hero-copy > p:not(.technology-eyebrow):not(.technology-reviewed) {
  max-width: 68ch;
  margin: 0.8rem 0 0;
  color: var(--tech-muted);
  font-size: clamp(0.94rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

.technology-reviewed,
.technology-material-date {
  margin: 0.85rem 0 0;
  color: var(--tech-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.technology-reviewed i {
  margin-right: 0.25rem;
  color: var(--tech-accent-strong);
}

.technology-hero-snapshot,
.technology-index-guide {
  min-width: 0;
  padding: 1.1rem;
  border: 1px solid var(--tech-border);
  border-radius: 10px;
  background: var(--tech-surface-soft);
}

.technology-hero-snapshot h2,
.technology-index-guide-title {
  margin: 0 0 0.85rem;
  color: var(--tech-ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.technology-hero-snapshot dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
}

.technology-hero-snapshot dl > div {
  min-width: 0;
  padding: 0 0.7rem;
  border-left: 1px solid var(--tech-border);
}

.technology-hero-snapshot dl > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.technology-hero-snapshot dl > div:last-child {
  padding-right: 0;
}

.technology-hero-snapshot dt,
.technology-hero-snapshot dd {
  display: block;
}

.technology-hero-snapshot dt {
  min-height: 2.15rem;
  color: var(--tech-muted);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
}

.technology-hero-snapshot dd {
  margin: 0.25rem 0 0;
  color: var(--tech-ink);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.technology-supply-status {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0.9rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--tech-border);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
}

.technology-supply-status.is-supplied {
  color: var(--tech-accent-strong);
}

.technology-supply-status.is-growing {
  color: var(--tech-warning-ink);
}

.technology-snapshot-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.technology-index-guide ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-index-guide li {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.55rem;
  align-items: start;
  color: var(--tech-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.technology-index-guide i {
  color: var(--tech-accent-strong);
  font-size: 0.9rem;
}

.technology-intent-nav {
  display: flex;
  gap: 0.35rem;
  max-width: 100%;
  margin: 0.9rem 0;
  padding: 0.45rem;
  overflow-x: auto;
  border: 1px solid var(--tech-border);
  border-radius: 10px;
  background: var(--tech-surface);
  box-shadow: var(--tech-shadow);
  scrollbar-width: thin;
  overscroll-behavior-inline: contain;
}

.technology-intent-nav a {
  display: inline-flex;
  min-height: 42px;
  flex: 0 0 auto;
  gap: 0.42rem;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--tech-border);
  border-radius: 999px;
  color: var(--tech-muted);
  background: var(--tech-surface-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.technology-intent-nav a:hover {
  border-color: var(--tech-accent);
  background: var(--tech-accent-soft);
  color: var(--tech-accent-strong);
}

.technology-intent-nav i {
  color: var(--tech-accent-strong);
  font-size: 0.82rem;
}

.technology-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(270px, 3fr);
  gap: 1.1rem;
  align-items: start;
}

.technology-main-column {
  min-width: 0;
}

.technology-panel,
.technology-stats-card,
.technology-experience-card,
.technology-actions-card {
  padding: clamp(1.15rem, 2.4vw, 1.65rem);
  border: 1px solid var(--tech-border);
  border-radius: 11px;
  background: var(--tech-surface);
  box-shadow: var(--tech-shadow);
}

.technology-panel + .technology-panel,
.technology-sidebar-sticky > * + * {
  margin-top: 0.85rem;
}

.technology-panel h2,
.technology-stats-card h2,
.technology-experience-card h2 {
  margin: 0 0 0.85rem;
  color: var(--tech-ink);
  font-size: clamp(1.22rem, 2.2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.technology-panel p {
  color: var(--tech-muted);
  line-height: 1.65;
}

.technology-overview-panel > p:last-child {
  margin-bottom: 0;
}

.technology-intent-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0 1.25rem;
  align-items: center;
}

.technology-intent-panel h2,
.technology-intent-panel > p:not(.technology-intent-evidence) {
  grid-column: 1;
}

.technology-intent-panel > p:not(.technology-intent-evidence) {
  margin-bottom: 0;
}

.technology-intent-panel .technology-intent-evidence {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.technology-sidebar {
  min-width: 0;
}

.technology-sidebar-sticky {
  position: sticky;
  top: 1.25rem;
}

.technology-stats-card dl {
  margin: 0;
}

.technology-stats-card dl > div {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.66rem 0;
  border-bottom: 1px solid var(--tech-border);
}

.technology-stats-card dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.technology-stats-card dt {
  color: var(--tech-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.technology-stats-card dd {
  margin: 0;
  color: var(--tech-ink);
  font-size: 1rem;
  font-weight: 800;
}

.technology-experience-card ul,
.technology-related-list,
.technology-chip-list,
.technology-growing-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-experience-card li,
.technology-related-list li,
.technology-growing-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.62rem 0;
  border-bottom: 1px solid var(--tech-border);
  color: var(--tech-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.technology-experience-card li:last-child,
.technology-related-list li:last-child,
.technology-growing-list li:last-child {
  border-bottom: 0;
}

.technology-actions-card {
  display: grid;
  gap: 0.55rem;
}

.technology-primary-action,
.technology-secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--tech-accent-strong);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.technology-page .technology-primary-action {
  background: var(--tech-accent-strong);
  color: var(--tech-surface);
}

.technology-page .technology-primary-action:hover {
  border-color: var(--tech-accent);
  background: var(--tech-accent);
  color: var(--tech-surface);
}

.technology-secondary-action {
  background: transparent;
  color: var(--tech-accent-strong);
}

.technology-secondary-action:hover {
  background: var(--tech-accent-soft);
  text-decoration: none;
}

.technology-section-heading {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.technology-section-heading h2,
.technology-section-heading p {
  margin-bottom: 0;
}

.technology-total-badge,
.technology-category-count {
  display: inline-flex;
  min-width: 2rem;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.58rem;
  border: 1px solid var(--tech-border);
  border-radius: 999px;
  background: var(--tech-accent-soft);
  color: var(--tech-accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.technology-developer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.technology-content-list {
  display: grid;
  gap: 0;
}

.technology-developer-card,
.technology-content-list article {
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--tech-border);
  border-radius: 9px;
  background: var(--tech-surface-soft);
}

.technology-developer-card {
  display: flex;
  flex-direction: column;
}

.technology-developer-card:only-child {
  grid-column: 1 / -1;
}

.technology-content-list article {
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}

.technology-content-list article:last-child {
  border-bottom-width: 1px;
}

.technology-developer-identity {
  display: flex;
  min-width: 0;
  gap: 0.8rem;
  align-items: center;
}

.technology-developer-identity > div {
  min-width: 0;
}

.technology-developer-identity img,
.technology-avatar-fallback {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 1px solid var(--tech-border);
  border-radius: 9px;
}

.technology-developer-identity img {
  object-fit: cover;
}

.technology-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tech-accent-soft);
  color: var(--tech-accent-strong);
  font-size: 1.25rem;
  font-weight: 800;
}

.technology-developer-card h3,
.technology-project-card h3,
.technology-content-list h3 {
  margin: 0;
  color: var(--tech-ink);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.technology-developer-identity p,
.technology-card-evidence,
.technology-contact-rate,
.technology-project-meta,
.technology-content-list p {
  margin: 0.3rem 0 0;
  color: var(--tech-muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.technology-availability {
  display: inline-flex;
  gap: 0.32rem;
  align-items: center;
  margin-top: 0.35rem;
  color: var(--tech-accent-strong);
  font-size: 0.7rem;
  font-weight: 800;
}

.technology-availability::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--tech-accent);
  content: "";
}

.technology-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.technology-chip-list li {
  min-width: 0;
  padding: 0.28rem 0.5rem;
  border: 1px solid var(--tech-border);
  border-radius: 999px;
  background: var(--tech-surface);
  color: var(--tech-muted);
  font-size: 0.68rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.technology-chip-list a {
  text-decoration: none;
}

.technology-text-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: auto;
  padding-top: 0.55rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.technology-contact-rate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.technology-intent-evidence {
  display: inline-flex;
  max-width: 13rem;
  gap: 0.35rem;
  margin: 0;
  padding: 0.58rem 0.72rem;
  border: 1px solid var(--tech-border);
  border-radius: 7px;
  background: var(--tech-accent-soft);
  color: var(--tech-accent-strong);
  font-size: 0.76rem;
  line-height: 1.35;
}

.technology-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.technology-project-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--tech-border);
  border-radius: 9px;
  background: var(--tech-surface-soft);
}

.technology-project-card > img,
.technology-project-image-fallback {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-items: center;
  justify-content: center;
  background: var(--tech-accent-soft);
}

.technology-project-card > img {
  height: auto;
  object-fit: cover;
}

.technology-project-image-fallback {
  flex-direction: column;
  gap: 0.4rem;
  color: var(--tech-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

.technology-project-image-fallback i {
  font-size: 1.5rem;
}

.technology-project-body {
  padding: 0.9rem;
}

.technology-project-body > p:not(.technology-project-meta) {
  display: -webkit-box;
  margin: 0.45rem 0 0;
  overflow: hidden;
  color: var(--tech-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.technology-project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.6rem;
}

.technology-project-links a,
.technology-project-meta a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 750;
}

.technology-content-list article h3 {
  margin-bottom: 0.25rem;
}

.technology-content-list .technology-content-type {
  margin: 0 0 0.3rem;
}

.technology-faq-list details {
  border-top: 1px solid var(--tech-border);
}

.technology-faq-list details:last-child {
  border-bottom: 1px solid var(--tech-border);
}

.technology-faq-list summary {
  min-height: 48px;
  padding: 0.8rem 2rem 0.8rem 0;
  color: var(--tech-ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
}

.technology-faq-list details p {
  margin: 0;
  padding: 0 0 0.9rem;
  font-size: 0.82rem;
}

.technology-empty-panel {
  padding: 1.25rem;
  border: 1px dashed var(--tech-border-strong);
  border-radius: 9px;
  background: var(--tech-surface-soft);
}

.technology-empty-panel h2,
.technology-empty-panel h3 {
  margin: 0 0 0.45rem;
  color: var(--tech-ink);
  font-size: 1.05rem;
}

.technology-empty-panel p {
  max-width: 60ch;
  margin: 0 0 0.8rem;
  font-size: 0.82rem;
}

.technology-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.technology-pagination a,
.technology-pagination span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  font-size: 0.78rem;
}

.technology-index-hero {
  margin-bottom: 1rem;
}

.devhub-technology-index-intro {
  grid-template-columns: minmax(0, 1.8fr) minmax(270px, 0.8fr);
  padding: clamp(1.15rem, 2.3vw, 1.65rem);
}

.devhub-technology-index-intro h1 {
  font-size: clamp(1.9rem, 3.6vw, 2.65rem);
}

.devhub-technology-index-intro .technology-index-guide {
  padding: 0.85rem 0.95rem;
}

.devhub-technology-index-intro .technology-index-guide-title {
  margin-bottom: 0.6rem;
}

.devhub-technology-index-intro .technology-index-guide ul {
  gap: 0.42rem;
}

.devhub-technology-index-directory {
  margin-top: 0.85rem;
  overflow: hidden;
  border: 1px solid var(--tech-border);
  border-radius: 10px;
  background: var(--tech-surface);
  box-shadow: var(--tech-shadow);
}

.devhub-technology-index-directory-header {
  display: flex;
  gap: 1rem;
  align-items: end;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--tech-border);
}

.devhub-technology-index-directory-header h2 {
  margin: 0;
  color: var(--tech-ink);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.devhub-technology-index-total {
  flex: 0 0 auto;
  color: var(--tech-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.devhub-technology-index-growing-note {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--tech-border);
  background: var(--tech-warning-soft);
  color: var(--tech-warning-ink);
  font-size: 0.75rem;
  line-height: 1.45;
}

.devhub-technology-index-growing-note i {
  flex: 0 0 auto;
  margin-top: 0.08rem;
}

.devhub-technology-index-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
  color: var(--tech-ink);
}

.devhub-technology-index-col-name {
  width: 43%;
}

.devhub-technology-index-col-metric {
  width: 19%;
}

.devhub-technology-index-col-action {
  width: 19%;
}

.devhub-technology-index-table thead th {
  padding: 0.68rem 0.9rem;
  border-bottom: 1px solid var(--tech-border-strong);
  background: var(--tech-surface-soft);
  color: var(--tech-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-align: left;
  text-transform: uppercase;
}

.devhub-technology-index-table thead th:nth-child(2),
.devhub-technology-index-table thead th:nth-child(3) {
  text-align: right;
}

.devhub-technology-index-category-row th {
  padding: 0.55rem 0.9rem;
  border-top: 1px solid var(--tech-border-strong);
  border-bottom: 1px solid var(--tech-border);
  background: var(--tech-accent-soft);
  color: var(--tech-accent-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-align: left;
}

.devhub-technology-index-category:first-of-type .devhub-technology-index-category-row th {
  border-top: 0;
}

.devhub-technology-index-category-heading {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.devhub-technology-index-category-count {
  color: var(--tech-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.devhub-technology-index-row > th,
.devhub-technology-index-row > td {
  min-width: 0;
  height: 62px;
  padding: 0.52rem 0.9rem;
  border-bottom: 1px solid var(--tech-border);
  background: var(--tech-surface);
  vertical-align: middle;
  transition: background-color 120ms ease;
}

.devhub-technology-index-category .devhub-technology-index-row:last-child > * {
  border-bottom: 0;
}

.devhub-technology-index-row:hover > * {
  background: var(--tech-surface-soft);
}

.devhub-technology-index-identity {
  display: flex;
  min-width: 0;
  gap: 0.7rem;
  align-items: center;
}

.devhub-technology-index-identity .technology-brand-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tech-border);
  border-radius: 8px;
  background: var(--tech-icon-surface);
  color: var(--tech-accent-strong);
}

.devhub-technology-index-identity .technology-brand-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.devhub-technology-index-identity .technology-brand-icon i {
  font-size: 1.05rem;
}

.devhub-technology-index-identity a {
  min-width: 0;
  color: var(--tech-ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.devhub-technology-index-identity a:hover {
  color: var(--tech-accent-strong);
  text-decoration: underline;
}

.devhub-technology-index-metric {
  color: var(--tech-muted);
  font-size: 0.76rem;
  line-height: 1.3;
  text-align: right;
}

.devhub-technology-index-metric-value {
  display: block;
  color: var(--tech-ink);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.devhub-technology-index-metric-note {
  display: block;
  margin-top: 0.12rem;
  color: var(--tech-warning-ink);
  font-size: 0.64rem;
}

.devhub-technology-index-action {
  text-align: right;
}

.devhub-technology-index-action a {
  display: inline-flex;
  min-height: 42px;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-end;
  color: var(--tech-accent-strong);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.devhub-technology-index-action a:hover span {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .technology-hero,
  .technology-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-hero {
    align-items: start;
  }

  .technology-index-guide {
    display: grid;
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
    gap: 1rem;
    align-items: start;
  }

  .technology-index-guide-title {
    margin: 0;
  }

  .technology-sidebar-sticky {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    position: static;
  }

  .technology-sidebar-sticky > * + * {
    margin-top: 0;
  }

  .technology-material-date {
    grid-column: 1 / -1;
  }

}

@media (max-width: 767.98px) {
  .technology-developer-list,
  .technology-project-grid,
  .technology-sidebar-sticky {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-material-date {
    grid-column: auto;
  }

  .technology-intent-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-intent-panel h2,
  .technology-intent-panel > p:not(.technology-intent-evidence),
  .technology-intent-panel .technology-intent-evidence {
    grid-column: 1;
    grid-row: auto;
  }

  .technology-intent-panel .technology-intent-evidence {
    margin-top: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .technology-page {
    padding-top: 0.75rem;
  }

  .technology-shell {
    width: min(100% - 1rem, 1200px);
  }

  .technology-hero,
  .technology-panel,
  .technology-stats-card,
  .technology-experience-card,
  .technology-actions-card {
    border-radius: 9px;
  }

  .technology-index-guide {
    display: block;
  }

  .technology-index-guide-title {
    margin-bottom: 0.75rem;
  }

  .technology-hero-snapshot dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .technology-hero-snapshot dl > div {
    padding: 0 0.45rem;
  }

  .technology-related-list li {
    gap: 0.2rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .devhub-technology-index-directory {
    border-radius: 9px;
  }

  .devhub-technology-index-directory-header {
    gap: 0.35rem;
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem;
  }

  .devhub-technology-index-growing-note {
    padding: 0.62rem 0.8rem;
  }

  .devhub-technology-index-table,
  .devhub-technology-index-table tbody,
  .devhub-technology-index-table tr,
  .devhub-technology-index-table th,
  .devhub-technology-index-table td {
    display: block;
    width: 100%;
  }

  .devhub-technology-index-table colgroup {
    display: none;
  }

  .devhub-technology-index-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .devhub-technology-index-category-row th {
    padding: 0.52rem 0.8rem;
  }

  .devhub-technology-index-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1rem;
    padding: 0.75rem 0.8rem 0.65rem;
    border-bottom: 1px solid var(--tech-border);
    background: var(--tech-surface);
  }

  .devhub-technology-index-category .devhub-technology-index-row:last-child {
    border-bottom: 0;
  }

  .devhub-technology-index-row > th,
  .devhub-technology-index-row > td {
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .devhub-technology-index-row:hover > * {
    background: transparent;
  }

  .devhub-technology-index-technology,
  .devhub-technology-index-action {
    grid-column: 1 / -1;
  }

  .devhub-technology-index-metric {
    text-align: left;
  }

  .devhub-technology-index-metric::before {
    display: block;
    margin-bottom: 0.14rem;
    color: var(--tech-muted);
    content: attr(data-label);
    font-size: 0.64rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .devhub-technology-index-metric-note {
    max-width: 18ch;
  }

  .devhub-technology-index-action {
    padding-top: 0.15rem !important;
    border-top: 1px solid var(--tech-border) !important;
    text-align: left;
  }

  .devhub-technology-index-action a {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 359.98px) {
  .technology-hero-snapshot dl {
    grid-template-columns: minmax(0, 1fr);
  }

  .technology-hero-snapshot dl > div,
  .technology-hero-snapshot dl > div:first-child,
  .technology-hero-snapshot dl > div:last-child {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.45rem 0;
    border-top: 1px solid var(--tech-border);
    border-left: 0;
  }

  .technology-hero-snapshot dl > div:first-child {
    border-top: 0;
  }

  .technology-hero-snapshot dt {
    min-height: 0;
  }

  .technology-hero-snapshot dd {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .technology-page *,
  .technology-page *::before,
  .technology-page *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }
}
