.we-ka{
  background: #f3f4f6;
  padding: 70px 0;
}

.we-ka__inner{
  width: var(--container);
  margin: 0 auto;
}

.we-ka__head{
  margin: 0 auto 30px;
  text-align: left;
}

.we-ka__title{
  margin: 0 0 18px;
  font-weight: 900;
}

.we-ka__intro{
   font-size: 1.1em;
   line-height: 1.6;
}

.we-ka__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 60px;
  margin-top: 30px;
}

.we-ka-card{
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  border: 1px solid #e7e9ee;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.we-ka-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.we-ka-card__title{
  font-weight: 800;
  margin-bottom: 14px;
  color: #111;
  margin-top: 0;
}

.we-ka-card__text{
  line-height: 1.65;
  color: #444;
  margin: 0 0 18px;
}

.we-ka-card__btn{
  display: inline-block;
  background: #0B1B71;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  transition: 0.2s;
  text-decoration: none;
  margin-block-start: auto;
}

.we-ka-card__btn:hover{
  background: #082F89;
}

@media (max-width: 900px){
  .we-ka__grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .we-ka__head{
    margin-bottom: 24px;
  }
}