/* ============ CONTENT WITH CARDS ============ */
.content-with-cards {
  background: #fff;
  padding: 64px 0 80px;
}

.content-with-cards__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 16px;
  align-items: start;
}

.content-with-cards__text p {
  font-size: 14.9px;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 16px;
}

.content-with-cards__text p strong {
  font-weight: 700;
}

/* Signs box */
.content-with-cards__signs {
  background: #faebff;
  border-radius: 16px;
  padding: 24px;
}

.content-with-cards__signs-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--purple-deep);
  margin-bottom: 16px;
}

.content-with-cards__signs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-with-cards__signs-list .check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.4px;
  line-height: 1.625;
  color: #404057;
}

.content-with-cards__signs-list .check-icon {
  width: 20px;
  height: 20px;
  background: var(--red-btn);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Sidebar info cards */
.content-with-cards__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-with-cards__card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-top-width: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
}

.content-with-cards__card--purple { border-top-color: #e8c9ff; }
.content-with-cards__card--blue   { border-top-color: var(--blue); }
.content-with-cards__card--red    { border-top-color: var(--red-light); }
.content-with-cards__card--green  { border-top-color: var(--green); }
.content-with-cards__card--orange { border-top-color: var(--orange-accent); }

.content-with-cards__card-icon {
  font-size: 20px;
  margin-bottom: 16px;
}

.content-with-cards__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--purple-text);
  margin-bottom: 8px;
}

.content-with-cards__card-desc {
  font-size: 13.6px;
  line-height: 1.625;
  color: var(--text-body);
}

@media (max-width: 860px) {
  .content-with-cards__layout {
    grid-template-columns: 1fr;
  }
}
