/* Public Form Cards + Icons Hotfix */
.type-grid {
  gap: 14px;
}

.type-card {
  min-height: 148px;
  padding: 18px;
  border-radius: 24px;
}

.type-card b {
  font-size: 15px;
  letter-spacing: -.02em;
  margin-bottom: 9px;
}

.type-card span:not(.type-icon) {
  font-size: 12.5px;
  line-height: 1.5;
}

.type-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  margin-bottom: 15px;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
}

.type-icon::before,
.type-icon::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}

/* Mail envelope */
.type-card:nth-child(1) .type-icon::before {
  width: 18px;
  height: 13px;
  left: 12px;
  top: 14px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 4px;
}

.type-card:nth-child(1) .type-icon::after {
  width: 12px;
  height: 12px;
  left: 15px;
  top: 11px;
  border-left: 2px solid rgba(255,255,255,.95);
  border-bottom: 2px solid rgba(255,255,255,.95);
  transform: rotate(-45deg);
  border-radius: 2px;
}

/* Device / IT issue */
.type-card:nth-child(2) .type-icon::before {
  width: 16px;
  height: 20px;
  left: 13px;
  top: 10px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 4px;
}

.type-card:nth-child(2) .type-icon::after {
  width: 6px;
  height: 2px;
  left: 18px;
  top: 31px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
}

/* Security shield */
.type-card:nth-child(3) .type-icon::before {
  width: 17px;
  height: 20px;
  left: 12.5px;
  top: 10px;
  border: 2px solid rgba(255,255,255,.95);
  border-radius: 9px 9px 12px 12px;
  clip-path: polygon(50% 0,100% 18%,88% 78%,50% 100%,12% 78%,0 18%);
}

.type-card:nth-child(3) .type-icon::after {
  width: 2px;
  height: 10px;
  left: 20px;
  top: 15px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
}

/* Other */
.type-card:nth-child(4) .type-icon::before {
  width: 4px;
  height: 4px;
  left: 11px;
  top: 19px;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
  box-shadow: 8px 0 0 rgba(255,255,255,.95), 16px 0 0 rgba(255,255,255,.95);
}

@media (max-width: 880px) {
  .type-card {
    min-height: 120px;
  }
}
