/**
 * Industry Card Widget
 * From: industries.html
 * Prefix: .nw-ind-
 */

.nw-ind-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nw-ind-card:hover {
  border-color: rgba(17, 181, 228, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.nw-ind-card__header {
  padding: 32px;
  border-bottom: 1px solid var(--color-border);
}

.nw-ind-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 181, 228, 0.1);
  color: #11B5E4;
  border-radius: 12px;
  margin-bottom: 20px;
}

.nw-ind-card__icon svg {
  width: 36px;
  height: 36px;
}

.nw-ind-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #0a0f1a;
  margin-bottom: 12px;
  margin-top: 0;
}

.nw-ind-card__description {
  font-size: 16px;
  line-height: 1.6;
  color: #64625a;
  margin: 0;
}

.nw-ind-card__content {
  padding: 32px;
  flex: 1;
}

.nw-ind-focus__title {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  margin-top: 0;
}

.nw-ind-focus__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nw-ind-focus__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nw-ind-focus__item-icon {
  width: 20px;
  height: 20px;
  color: #11B5E4;
  flex-shrink: 0;
  margin-top: 2px;
}

.nw-ind-focus__item-icon svg {
  width: 100%;
  height: 100%;
}

.nw-ind-focus__item-text {
  font-size: 15px;
  line-height: 1.6;
  color: #64625a;
  margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .nw-ind-card__header,
  .nw-ind-card__content {
    padding: 24px;
  }
  
  .nw-ind-card__icon {
    width: 56px;
    height: 56px;
  }
  
  .nw-ind-card__icon svg {
    width: 28px;
    height: 28px;
  }
  
  .nw-ind-card__title {
    font-size: 18px;
  }
}
