.vco-wrap.bg-blue {
  background: linear-gradient(90deg, #05164D 0%, #0C33B3 100%);
}

.vco-wrap.bg-blue .vco-eyebrow {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.vco-wrap.bg-blue h2 {
  color: #ffffff !important;
}

.vco-wrap.bg-blue p {
  color: #bdb7b7 !important;
}

.vco-wrap {
  background: #fafafa;
  color: var(--vco-heading);
}

.vco-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #b45309;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.vco-wrap h2 {
  margin-bottom: 10px;
}

.vco-wrap p {
  margin-bottom: 48px;
}

.vco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .vco-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .vco-grid {
    grid-template-columns: 1fr;
  }
}
.vco-card {
  background: #ffffff;
  border: 1.5px solid #e4e4e7;
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}

.vco-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #FFAD00;
  opacity: 0;
  transition: opacity 0.22s;
}

.vco-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.12);
  transform: translateY(-3px);
}

.vco-card:hover::after {
  opacity: 1;
}

.vco-cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.vco-cat-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vco-cat-name {
  font-size: 13px;
  font-weight: 700;
  color: #3f3f46;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vco-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vco-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4f4f5;
  border: 1.5px solid #e4e4e7;
  color: #3f3f46;
  font-size: 12.5px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 8px;
  transition: border-color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.vco-chip:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
}

.vco-chip img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  opacity: 0.8;
  flex-shrink: 0;
}

.vco-init {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #FFAD00;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

/*# sourceMappingURL=tech-stacks-v2.css.map */
