/* Technologies — pages/research/technologies.php */

.tech-block {
  margin-bottom: 2.5rem;
}

.tech-block__heading {
  font-size: 1.15rem;
  color: var(--wine-dark, #59102f);
  border-bottom: 2px solid var(--line-wine, #e3c3d3);
  padding-bottom: .5rem;
  margin: 0 0 1.1rem;
  display: flex;
  align-items: baseline;
  gap: .6rem;
  flex-wrap: wrap;
}

.tech-block__note {
  font-size: .8rem;
  font-weight: 400;
  color: #777;
}

.tech-new {
  display: inline-block;
  background: var(--wine, #7a1442);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .15rem .5rem;
  border-radius: 999px;
  vertical-align: middle;
}

/* --- patent table --- */

.tech-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line, #e2e2e2);
  border-radius: 8px;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.tech-table caption {
  caption-side: bottom;
}

.tech-table thead th {
  background: var(--wine, #7a1442);
  color: #fff;
  text-align: left;
  font-weight: 700;
  padding: .7rem 1rem;
}

.tech-table tbody td {
  padding: .8rem 1rem;
  border-top: 1px solid var(--line, #e2e2e2);
  vertical-align: top;
  line-height: 1.55;
}

.tech-table tbody tr:nth-child(even) {
  background: var(--surface-2, #f5f5f5);
}

.tech-table tbody td:first-child {
  font-weight: 700;
  color: var(--wine-dark, #59102f);
  width: 3.5rem;
}

.tech-table a {
  color: var(--wine, #7a1442);
  font-weight: 600;
  text-decoration: underline;
}

/* --- field technologies list --- */

.tech-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.tech-card {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  background: var(--surface, #fff);
  border: 1px solid var(--line, #e2e2e2);
  border-left: 5px solid var(--wine, #7a1442);
  border-radius: 6px;
  padding: .85rem 1.1rem;
  box-shadow: 0 1px 2px rgba(122, 20, 66, .06);
  transition: box-shadow .2s ease, transform .2s ease;
}

.tech-card:hover {
  box-shadow: 0 4px 14px rgba(122, 20, 66, .14);
  transform: translateY(-1px);
}

.tech-card__num {
  flex: 0 0 auto;
  min-width: 1.9rem;
  height: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wine-tint, #f7e9f0);
  color: var(--wine-dark, #59102f);
  font-weight: 800;
  font-size: .82rem;
  border-radius: 50%;
}

.tech-card__body {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  min-width: 0;
}

.tech-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink, #1c1c1c);
  line-height: 1.4;
}

.tech-card__meta {
  font-size: .78rem;
  color: #777;
}

.tech-card__desc {
  font-size: .85rem;
  color: #444;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .tech-card { flex-direction: column; }
}
