.pzcr-page {
  background: #ffffff;
  color: #151515;
  font-family: inherit;
}

.pzcr-page *,
.pzcr-page *::before,
.pzcr-page *::after {
  box-sizing: border-box;
}

.pzcr-layout {
  display: grid;
  grid-template-columns: minmax(340px, 42%) minmax(0, 58%);
  align-items: stretch;
  width: calc(100% - clamp(28px, 5vw, 88px));
  margin-inline: auto;
}

.pzcr-story {
  min-height: 100%;
  background: #ffffff;
}

.pzcr-story-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 620px;
  padding: 14px clamp(22px, 3.8vw, 58px) 36px 0;
}

.pzcr-story-hero {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 0 42px;
}

.pzcr-story h2 {
  max-width: 590px;
  margin: 0 0 24px;
  color: #050505;
  font-size: clamp(34px, 3.5vw, 47px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.pzcr-story h2 span {
  color: #1687c8;
}

.pzcr-mobile-hero-copy {
  display: none;
}

.pzcr-story-subtitle {
  max-width: 560px;
  margin: 0 0 82px;
  color: #24242a;
  font-size: clamp(19px, 1.6vw, 25px);
  line-height: 1.25;
}

.pzcr-story-points {
  position: relative;
  display: grid;
  gap: 44px;
}

.pzcr-story-points::before {
  content: '';
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 24px;
  border-left: 1px dashed #063552;
}

.pzcr-story-point {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.pzcr-story-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #eff9ff;
  border-radius: 8px;
}

.pzcr-story-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pzcr-story-icon-empty {
  background: #eff9ff;
}

.pzcr-story-point h3 {
  margin: 0 0 14px;
  color: #063552;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 800;
  line-height: 1.15;
}

.pzcr-story-point p {
  max-width: 460px;
  margin: 0;
  color: #25272d;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.28;
}

.pzcr-story-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 560px);
  margin-top: auto;
  padding: 14px 18px;
  color: #063552;
  background: #ffffff;
  border-top: 1px solid #d8e1e8;
  /* border-bottom: 1px solid #d8e1e8; */
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
}

.pzcr-story-rating strong,
.pzcr-story-rating-star {
  color: #1687c8;
  font-weight: 800;
}

.pzcr-story-rating-star {
  font-size: 22px;
  line-height: 1;
}

.pzcr-form-area {
  padding: 16px clamp(28px, 4vw, 60px) 36px;
  background: #ffffff;
}

.pzcr-header {
  margin-bottom: 42px;
}

.pzcr-header h1 {
  margin: 0 0 18px;
  color: #050505;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  white-space: nowrap;
}

.pzcr-header h1 span,
.pzcr-label span,
.pzcr-device-copy strong span {
  color: #1687c8;
}

.pzcr-header p {
  max-width: 880px;
  margin: 0;
  color: #1e1e24;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.35;
}

.pzcr-form {
  width: 100%;
}

.pzcr-form-message {
  margin-bottom: 18px;
  padding: 13px 16px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.pzcr-form-message-success {
  color: #0b5a35;
  background: #e8f7ef;
  border: 1px solid #bfe9d0;
}

.pzcr-form-message-error {
  color: #9d1734;
  background: #fff0f3;
  border: 1px solid #f1bdc8;
}

.pzcr-section {
  margin: 0 0 18px;
  padding-block: 0;
}

.pzcr-section h2 {
  margin: 0 0 28px;
  color: #053552;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.pzcr-basic-info,
.pzcr-device-config,
.pzcr-timeline,
.pzcr-terms-section {
  margin-top: 0;
  margin-bottom: 18px;
  padding-block: 0;
}

.pzcr-basic-info h2,
.pzcr-device-config h2,
.pzcr-timeline h2,
.pzcr-terms-section h2 {
  margin-bottom: 12px;
}

.pzcr-device-config .pzcr-field-block {
  margin-top: 12px;
}

.pzcr-field-grid {
  display: grid;
  gap: 18px 40px;
}

.pzcr-field-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pzcr-field-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pzcr-field-cell {
  min-width: 0;
}

.pzcr-label {
  display: block;
  margin: 0 0 8px;
  color: #26262d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
}

.pzcr-label span,
.pzcr-device-copy strong span {
  color: #d84f6b;
}

.pzcr-input-group {
  display: flex;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  background: #f6f9ff;
  border: 1px solid #8f949c;
  border-radius: 4px;
}

.pzcr-input-icon {
  display: inline-flex;
  flex: 0 0 50px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  color: #8a9098;
  background: transparent;
}

.pzcr-input-icon::before,
.pzcr-device-icon::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.pzcr-icon-user::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4Zm0 2c-3.3 0-6 2-6 4.5V20h12v-1.5c0-2.5-2.7-4.5-6-4.5Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 12c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4Zm0 2c-3.3 0-6 2-6 4.5V20h12v-1.5c0-2.5-2.7-4.5-6-4.5Z'/%3E%3C/svg%3E");
}

.pzcr-icon-building::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 21V5.5L12 3l7 2.5V21h-5v-5h-4v5H5Zm3-11h2V8H8v2Zm0 4h2v-2H8v2Zm6-4h2V8h-2v2Zm0 4h2v-2h-2v2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 21V5.5L12 3l7 2.5V21h-5v-5h-4v5H5Zm3-11h2V8H8v2Zm0 4h2v-2H8v2Zm6-4h2V8h-2v2Zm0 4h2v-2h-2v2Z'/%3E%3C/svg%3E");
}

.pzcr-icon-phone::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.7 3.9 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.8 21 3 13.2 3 3.8c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8c1.4 2.7 3.9 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.4.6 3.7.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.8 21 3 13.2 3 3.8c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.7.1.4 0 .8-.3 1.1l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.pzcr-icon-mail::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 5h16c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1Zm8 7.7L5 8.4V17h14V8.4l-7 4.3Zm0-2.3L18.3 7H5.7l6.3 3.4Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 5h16c.6 0 1 .4 1 1v12c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V6c0-.6.4-1 1-1Zm8 7.7L5 8.4V17h14V8.4l-7 4.3Zm0-2.3L18.3 7H5.7l6.3 3.4Z'/%3E%3C/svg%3E");
}

.pzcr-icon-box::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 9 4.5v11L12 22l-9-4.5v-11L12 2Zm0 2.2L6.4 7 12 9.8 17.6 7 12 4.2ZM5 8.7v7.6l6 3v-7.6l-6-3Zm8 10.6 6-3V8.7l-6 3v7.6Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 9 4.5v11L12 22l-9-4.5v-11L12 2Zm0 2.2L6.4 7 12 9.8 17.6 7 12 4.2ZM5 8.7v7.6l6 3v-7.6l-6-3Zm8 10.6 6-3V8.7l-6 3v7.6Z'/%3E%3C/svg%3E");
}

.pzcr-icon-clock::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E");
}

.pzcr-icon-calendar::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3c.6 0 1 .4 1 1v15c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h3V2Zm12 8H5v9h14v-9ZM5 8h14V6H5v2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3c.6 0 1 .4 1 1v15c0 .6-.4 1-1 1H4c-.6 0-1-.4-1-1V5c0-.6.4-1 1-1h3V2Zm12 8H5v9h14v-9ZM5 8h14V6H5v2Z'/%3E%3C/svg%3E");
}

.pzcr-control {
  display: block;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px 12px 0;
  color: #23242a;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  font-size: 15px;
  font-family: inherit;
}

.pzcr-control::placeholder {
  color: #8b8e94;
}

.pzcr-input-group:focus-within,
.pzcr-textarea:focus {
  border-color: #1687c8;
  box-shadow: 0 0 0 0.18rem rgba(22, 135, 200, 0.15);
}

.pzcr-field-block {
  margin-top: 28px;
}

.pzcr-textarea {
  min-height: 58px;
  padding: 15px 18px;
  background: #f6f9ff;
  border: 1px solid #8f949c;
  border-radius: 4px;
  resize: vertical;
}

.pzcr-device-card {
  position: relative;
  display: block;
  width: min(323px, 100%);
  min-height: 147px;
  padding: 88px 26px 17px;
  background: #f6f9ff;
  border: 1px solid #8f949c;
  border-radius: 14px;
  cursor: pointer;
}

.pzcr-device-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pzcr-device-icon {
  position: absolute;
  top: 21px;
  left: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: #1687c8;
  border-radius: 4px;
}

.pzcr-device-icon::before {
  width: 24px;
  height: 24px;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 13h4l2.2-7 4.2 13 2.6-8h5v2h-3.5l-3.2 10L9.2 7 8.5 15H3v-2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 13h4l2.2-7 4.2 13 2.6-8h5v2h-3.5l-3.2 10L9.2 7 8.5 15H3v-2Z'/%3E%3C/svg%3E");
}

.pzcr-device-copy {
  display: block;
  padding: 0;
}

.pzcr-device-copy strong {
  display: block;
  color: #151515;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.pzcr-device-copy small {
  display: block;
  margin-top: 6px;
  color: #7d8289;
  font-size: 13px;
  line-height: 1.25;
}

.pzcr-device-check {
  position: absolute;
  top: 21px;
  right: 25px;
  width: 28px;
  height: 28px;
  border: 2px solid #7c7f86;
  background: #ffffff;
}

.pzcr-device-card input:checked ~ .pzcr-device-check {
  background: #1687c8;
  border-color: #1687c8;
  box-shadow: inset 0 0 0 5px #ffffff;
}

.pzcr-terms-box {
  padding: 26px 28px;
  background: #f6f9ff;
  border: 1px solid #8f949c;
  border-radius: 14px;
}

.pzcr-terms-box ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  list-style-position: outside;
  color: #181a21;
  font-size: 15px;
  line-height: 1.5;
}

.pzcr-terms-box li {
  display: list-item;
}

.pzcr-acknowledge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 38px;
  color: #151515;
  font-size: 17px;
  line-height: 1.45;
}

.pzcr-acknowledge input {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  margin: 0;
  accent-color: #1687c8;
}

.pzcr-field-error {
  display: none;
  margin: 7px 0 0;
  color: #9d1734;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.pzcr-field-error-visible {
  display: block;
}

.pzcr-input-group-invalid,
.pzcr-device-card-invalid,
.pzcr-field-invalid.pzcr-textarea {
  border-color: #d84f6b;
}

.pzcr-acknowledge input[aria-invalid='true'] {
  outline: 2px solid #d84f6b;
  outline-offset: 2px;
}

.pzcr-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.pzcr-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(230px, 100%);
  min-height: 49px;
  padding: 11px 28px;
  color: #ffffff;
  background: #1687c8;
  border: 0;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.pzcr-submit-btn:hover,
.pzcr-submit-btn:focus {
  color: #ffffff;
  background: #0d75ad;
}

.pzcr-submit-btn:disabled,
.pzcr-submit-btn-loading {
  cursor: not-allowed;
  opacity: 0.75;
}

@media (max-width: 1199px) {
  .pzcr-layout {
    grid-template-columns: minmax(300px, 40%) minmax(0, 60%);
  }

  .pzcr-form-area {
    padding-right: 28px;
    padding-left: 28px;
  }
}

@media (max-width: 991px) {
  .pzcr-layout {
    grid-template-columns: 1fr;
  }

  .pzcr-story {
    min-height: 0;
  }

  .pzcr-story-inner {
    height: auto;
    max-width: 520px;
    margin: 0 auto;
    padding: 24px 22px 10px;
  }

  .pzcr-story-hero {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: auto;
  }

  .pzcr-story-subtitle {
    margin-bottom: 42px;
  }

  .pzcr-story-points {
    gap: 30px;
  }

  .pzcr-story-rating {
    margin-top: 42px;
    margin-right: auto;
    margin-left: auto;
  }

  .pzcr-form-area {
    padding: 34px 22px 46px;
  }
}

@media (max-width: 767px) {
  .pzcr-layout {
    width: calc(100% - 20px);
  }

  .pzcr-story {
    background: #dff4ff;
  }

  .pzcr-story-inner {
    max-width: none;
    padding: 12px 10px 16px;
    align-items: center;
    text-align: left;
  }

  .pzcr-story-hero {
    width: min(84%, 330px);
    margin: 0 auto 12px;
  }

  .pzcr-story h2,
  .pzcr-story-subtitle,
  .pzcr-story-points,
  .pzcr-story-rating {
    display: none;
  }

  .pzcr-mobile-hero-copy {
    display: block;
    width: 100%;
    max-width: 420px;
  }

  .pzcr-mobile-hero-copy h1 {
    margin: 0 0 8px;
    color: #063552;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .pzcr-mobile-hero-copy h1 span {
    color: #1687c8;
  }

  .pzcr-mobile-hero-copy p {
    margin: 0;
    color: #1e1e24;
    font-size: 12px;
    line-height: 1.45;
  }

  .pzcr-story h2 {
    font-size: 31px;
  }

  .pzcr-story-point {
    gap: 20px;
  }

  .pzcr-story-point p {
    font-size: 16px;
  }

  .pzcr-header {
    display: none;
  }

  .pzcr-section {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pzcr-section h2 {
    margin-top: 0 !important;
    margin-bottom: 4px !important;
    font-size: 17px;
  }

  .pzcr-field-grid-two,
  .pzcr-field-grid-three {
    grid-template-columns: 1fr;
  }

  .pzcr-label {
    margin-top: 0 !important;
    margin-bottom: 2px;
    font-size: 13px;
    line-height: 1.25;
  }

  .pzcr-form-area {
    padding: 0;
  }

  .pzcr-form-message {
    margin-bottom: 12px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .pzcr-field-grid {
    gap: 4px;
  }

  .pzcr-field-cell {
    margin-bottom: 6px;
  }

  .pzcr-basic-info,
  .pzcr-device-config,
  .pzcr-timeline,
  .pzcr-terms-section {
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .pzcr-device-config .pzcr-field-block {
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .pzcr-field-block {
    margin-top: 4px;
    margin-bottom: 6px;
  }

  .pzcr-input-group {
    min-height: 44px;
  }

  .pzcr-input-icon {
    flex-basis: 38px;
  }

  .pzcr-input-icon::before,
  .pzcr-device-icon::before {
    width: 15px;
    height: 15px;
  }

  .pzcr-control {
    min-height: 42px;
    padding: 9px 10px 9px 0;
    font-size: 12px;
  }

  .pzcr-device-card {
    display: block;
    width: min(323px, 100%);
    min-height: 147px;
    padding: 88px 26px 17px;
    border-radius: 14px;
  }

  .pzcr-device-icon {
    top: 21px;
    left: 27px;
    width: 38px;
    height: 38px;
  }

  .pzcr-device-icon::before {
    width: 24px;
    height: 24px;
  }

  .pzcr-device-copy {
    padding: 0;
  }

  .pzcr-device-copy strong {
    font-size: 16px;
  }

  .pzcr-device-copy small {
    margin-top: 6px;
    font-size: 13px;
  }

  .pzcr-device-check {
    top: 21px;
    right: 25px;
    width: 28px;
    height: 28px;
  }

  .pzcr-terms-box {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .pzcr-terms-box ul {
    padding-left: 14px;
    font-size: 10px;
    line-height: 1.55;
  }

  .pzcr-field-error {
    margin-top: 4px;
    font-size: 11px;
  }

  .pzcr-acknowledge {
    gap: 10px;
    margin-top: 12px;
    font-size: 11px;
  }

  .pzcr-acknowledge input {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }

  .pzcr-submit-wrap {
    margin-top: 10px;
  }

  .pzcr-submit-btn {
    width: min(260px, 72%);
    min-height: 43px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .pzcr-layout {
    width: calc(100% - 16px);
  }

  .pzcr-story-inner {
    padding-right: 8px;
    padding-left: 8px;
  }

  .pzcr-story-hero {
    margin-bottom: 10px;
  }

  .pzcr-form-area {
    padding-right: 0;
    padding-left: 0;
  }

  .pzcr-input-icon {
    flex-basis: 36px;
  }

  .pzcr-mobile-hero-copy h1 {
    font-size: 18px;
  }

  .pzcr-mobile-hero-copy p {
    font-size: 11px;
  }
}
