@-webkit-keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.pd-icon-card-grid {
  padding: 1rem 0;
}
.pd-icon-card-grid__title {
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--color-moonlit-ocean-900);
  font-family: var(--skin-body-font);
}
.pd-icon-card-grid__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.pd-icon-card-grid__cards > .experience-component {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 0.667rem);
          flex: 1 1 calc(33.333% - 0.667rem);
  min-width: 280px;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .pd-icon-card-grid__cards > .experience-component {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 0.5rem);
            flex: 1 1 calc(50% - 0.5rem);
    min-width: 240px;
  }
}
@media (max-width: 768.98px) {
  .pd-icon-card-grid__cards > .experience-component {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-width: 0;
  }
}

:not(.pd-icon-card-grid__cards) > [class*=iconCard] + [class*=iconCard] {
  margin-top: 1rem;
}

.pd-icon-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--color-moonlit-ocean-200);
  border-radius: 0.75rem;
  background: color-mix(in srgb, var(--color-moonlit-ocean-400) 5%, transparent);
  text-decoration: none;
  color: inherit;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  height: 100%;
  width: 100%;
  cursor: default;
}
.pd-icon-card:hover, .pd-icon-card:focus {
  border-color: var(--color-moonlit-ocean-500);
  background-color: color-mix(in srgb, var(--color-moonlit-ocean-500) 10%, transparent);
  text-decoration: none;
  color: inherit;
  outline: none;
}
.pd-icon-card__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
}
.pd-icon-card__icon-img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pd-icon-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.pd-icon-card__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-moonlit-ocean-900, #1a202c);
  text-transform: uppercase;
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
  font-family: var(--skin-body-font);
}
.pd-icon-card__subtitle {
  margin: 0.125rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--color-moonlit-ocean-400, #6b7280);
  text-align: left;
}

a.pd-icon-card {
  cursor: pointer;
}
