.de-cards *{ 
  font-family: Poppins, sans-serif !important; 
}

.de-cards__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(60px, 5vw, 120px); 24px;
}

.de-cards__title {
  margin: 0 0 50px;
  font-size: clamp(25px, 3.4vw, 40px) !important;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 700;
  color: var(--de-blue);
}

.de-cards__desc {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  color: #374151;
  font-size: 16px;
  line-height: 1.7;
}

.de-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.de-cards__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 32px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.de-cards__item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.de-cards__item-title {
  margin: 0 0 28px;
  font-size: clamp(20px, 2vw, 24px) !important;
  font-weight: 600;
  line-height: 1.3;
  color: var(--de-black);
}

.de-cards__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--de-purple);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.de-cards__cta:hover {
  gap: 14px;
}

.de-cards__cta-arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.de-cards__cta:hover .de-cards__cta-arrow {
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .de-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .de-cards__grid {
    grid-template-columns: 1fr;
  }

  .de-cards__item {
    padding: 28px 24px;
  }
}
