.yp-panels {
  padding: 16px 0 8px;
  margin: 30px;
}

.yp-panels__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.yp-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 30px 26px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
}

.yp-card__title {
  margin: 0 0 6px;
  font-size: clamp(18px, 2.1vw, 18px);
  color: #1f2a37;
}

.yp-card__lead {
  font-size: 14px;
  margin: 0 0 12px;
  color: #4b5563;
  max-width: 60ch;
}

.yp-card__rule {
  height: 1px;
  background: rgba(0, 0, 0, .1);
  margin: 8px 0 14px;
}

.yp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.yp-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.yp-bullet {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}


.yp-item__text {
  font-size: 14px;
  margin: 0;
  color: #1f2937;
  line-height: 1.45;
}

.yp-item__text strong {
  font-weight: 700;
}

/* Highlight box inside left card */
.yp-card__highlight {
  background: #ffffff;
  border: 2px solid rgba(1, 157, 244, 0.12);
  padding: 18px 20px;
  border-radius: 10px;
  margin-top: 18px;
}
.highlight-title {
  margin: 0 0 6px 0;
  font-size: 1rem;
  color: #0b2739;
  font-weight: 700;
}
.highlight-text {
  margin: 0;
  color: #566067;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 960px) {
  .yp-panels__container {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.highlight-title {
  margin: 0 0 8px 0;
  font-size: 1rem;
}
.highlight-text {
  margin: 0;
  color: #566067;
  font-size: 0.95rem;
  line-height: 1.4;
}