/* help-center.css - page-specific styling for the help center page */

.page-help-center .our-resources {
  padding-top: 60px;
  background: #ffffff;
}

.page-help-center .our-resources > .container {
  width: calc(100% - 40px);
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.page-help-center .our-resources h1,
.page-help-center .our-resources h2,
.page-help-center .resource-entry h3,
.page-help-center .resource-entry h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
}

.page-help-center .our-resources h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 45px;
  color: #0f193b;
}

.page-help-center .our-resources h2 {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #5f6578;
}

.page-help-center .resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.page-help-center .resource-entry {
  position: relative;
  width: 340px;
  height: 199px;
  box-sizing: border-box;
  padding: 30px 30px 40px;
  border: 1px solid #dce1eb;
  border-radius: 6px;
  background: #ffffff;
}

.page-help-center .resource-entry > a {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.page-help-center .resource-entry .help-center-icon-wrap {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 36px;
  min-width: 36px;
  max-width: 36px;
  height: 36px;
  min-height: 36px;
  max-height: 36px;
  flex: 0 0 36px;
  line-height: 0;
  vertical-align: top;
  overflow: hidden;
}

.page-help-center .resource-entry .help-center-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  flex: 0 0 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: top left;
}

.page-help-center .help-center-icon-hover {
  opacity: 0;
}

.page-help-center .resource-entry:hover .help-center-icon-default,
.page-help-center .resource-entry:focus-within .help-center-icon-default {
  opacity: 0;
}

.page-help-center .resource-entry:hover .help-center-icon-hover,
.page-help-center .resource-entry:focus-within .help-center-icon-hover {
  opacity: 1;
}

.page-help-center .highlighter {
  position: absolute;
  left: 0;
  top: 30px;
  width: 3px;
  height: 40px;
}

.page-help-center .highl-color-1 { background: #7297ff; }
.page-help-center .highl-color-2 { background: #ffc834; }
.page-help-center .highl-color-3 { background: #fc8855; }
.page-help-center .highl-color-4 { background: #83d298; }
.page-help-center .highl-color-5 { background: #ff5858; }
.page-help-center .highl-color-6 { background: #47c2ff; }

.page-help-center .resource-entry h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #0f193b;
}

.page-help-center .resource-entry h4 {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #5f6578;
}

.page-help-center .new-blue-arrow {
  display: none;
  width: 16px;
  height: 12px;
  flex: 0 0 auto;
}

.page-help-center .resource-entry:hover h3,
.page-help-center .resource-entry:focus-within h3 {
  color: #3064f9;
}

.page-help-center .resource-entry:hover .new-blue-arrow,
.page-help-center .resource-entry:focus-within .new-blue-arrow {
  display: block;
}

@media (max-width: 1079px) {
  .page-help-center .our-resources {
    padding-top: 60px;
  }

  .page-help-center .our-resources > .container {
    width: min(100%, 375px);
    max-width: 375px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .page-help-center .our-resources h1 {
    font-size: 26px;
    line-height: 33px;
  }

  .page-help-center .our-resources h2 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 18px;
  }

  .page-help-center .resource-grid {
    margin-top: 40px;
    gap: 20px;
  }

  .page-help-center .resource-entry {
    width: 100%;
    height: auto;
  }

  .page-help-center .resource-entry h4 {
    line-height: 18px;
  }
}
