.sb-pv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.sb-pv-card {
  background: #f1f1f1;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 30px;
  border-bottom: 9px solid #D2B13D;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 30px;
}

.sb-pv-card h3 {
  color: #07165f;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 700;
}

.sb-pv-small-content {
  color: #111;
  font-size: 17px;
  line-height: 1.45;
}

.sb-pv-small-content p {
  margin: 0 0 22px;
}

.sb-pv-small-content ul {
  margin: 0;
  padding-left: 22px;
}

.sb-pv-open-modal,
.sb-pv-modal-btn {
  background: #292568;
  color: #fff;
  border: none;
  text-align: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease;
  width: 100%;
  display: inline-block;
}

.sb-pv-open-modal:hover,
.sb-pv-modal-btn:hover {
  background: #D2B13D;
  color: #fff;
}

.sb-pv-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.sb-pv-modal.is-active {
  display: block;
}

.sb-pv-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.sb-pv-modal-box {
  position: relative;
  background: #fff;
  max-width: 900px;
  width: calc(100% - 40px);
  max-height: 85vh;
  overflow-y: auto;
  margin: 7vh auto;
  padding: 40px;
  border-radius: 8px;
  z-index: 2;
}

.sb-pv-close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 34px !important;
  line-height: 1;
  cursor: pointer;
  color: #07165f;
}

.sb-pv-modal-box h2 {
  color: #07165f;
  margin-top: 0;
  margin-bottom: 20px;
  font-size:26px;
}

.sb-pv-main-content,
.sb-pv-credentials {
  font-size: 17px;
  line-height: 1.55;
  color: #111;
}

.sb-pv-credentials {
  margin-top: 25px;
}

.sb-pv-modal-btn {
  width: auto;
  margin-top: 25px;
  min-width: 180px;
}

body.sb-pv-modal-open {
  overflow: hidden;
}

.sb-pv-main-content ul {
  column-count: 1;
  gap: 40px;
  margin-bottom: 30px;
}

.sb-pv-main-content ul li {

}

@media (max-width: 1024px) {
  .sb-pv-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
}

@media (max-width: 680px) {
  .sb-pv-grid {
      grid-template-columns: 1fr;
  }

  .sb-pv-card {
      min-height: auto;
  }

  .sb-pv-modal-box {
      padding: 30px 22px;
  }
}