/* Shared technology sections for IT Solutions and its service pages. */
.entry-content .service-technologies {
  background: linear-gradient(130deg, #07111f, #0b2844);
  color: #fff;
}
.service-technologies .section-heading { max-width: 900px; }
.service-technologies .section-heading .eyebrow { color: #18dfc0; }
.service-technologies .section-heading h2 { color: #fff; }
.service-technologies .section-heading p { color: #c6d4e4; }
.service-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.service-tech-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 26px;
  border: 1px solid #dce6ee;
  border-radius: 8px;
  background: #fff;
  color: #07111f;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-tech-card:hover,
.service-tech-card:focus-within {
  transform: translateY(-4px);
  border-color: #18dfc0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}
.service-tech-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #0b2844;
  color: #18dfc0;
  font-size: .8rem;
  font-weight: 700;
}
.service-tech-card h3 {
  margin: 0 0 10px;
  color: #07111f;
  font-size: 1.25rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.service-tech-card p { margin: 0 0 18px; color: #526176; line-height: 1.65; }
.service-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-tech-tags li {
  margin: 0;
  padding: 7px 10px;
  max-width: 100%;
  border: 1px solid #d6e5ed;
  border-radius: 8px;
  background: #f0f7fa;
  color: #123551;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.service-tech-link { margin-top: 18px; color: #084b69; font-weight: 700; text-underline-offset: 4px; }
.service-tech-link:hover { color: #071f3d; }
.service-tech-link:focus-visible { outline: 2px solid #087f91; outline-offset: 4px; }
.service-technologies .service-tech-note {
  max-width: 920px;
  margin: 24px auto 0;
  color: #c6d4e4;
  font-size: .88rem;
  line-height: 1.65;
  text-align: center;
}
@media (max-width: 960px) { .service-tech-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .service-tech-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-tech-card { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .service-tech-card { transition: none; }
  .service-tech-card:hover, .service-tech-card:focus-within { transform: none; }
}
