.tech-list {
  background: linear-gradient(180deg, #fafaff 0%, #f7f7fc 100%);
  padding: 60px 0 0;
  border-top: 1px solid #ececf3;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.tech-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 50, 0.05);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.tech-card h3 a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
}

.tech-card p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tech-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.2s ease;
}




.tech {
  background: linear-gradient(180deg, #fafaff 0%, #f7f7fc 100%);
}

.tech-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  padding: 60px 0 40px;
  text-align: center;
  margin-bottom: 0; /* убираем белую полосу */
}

.tech h1 {
  text-align: center;

}

.tech p {
  text-align: center;
  color: #555;
}

/* Сетка, как в кейсах */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.tech-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 350px;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 50, 0.08);
}


.tech-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.tech-card p {
  font-size: 16px;
  color: #555;
  min-height: 50px;
}

/* Кнопка “Смотреть кейсы →” */
.tech-card a {
  display: inline-block;
  margin-top: 15px;
  color: #e91e63;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tech-card a:hover {
  color: #ff4081;
}


.tech-title-with-icon .tech-icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.tech-title-with-icon {
  display: flex;
  align-items: center;
  gap: 10px; /* чуть больше — лучше смотрится при больших иконках */
}
.tech-card h3 {
  line-height: 1.2;
}
.tech-hero p {
  text-align: left !important;
}

.single-tech .tech-cases {
  padding-top: 0 !important;
}
