/* SecurityTalent 1.9.80 — native EasySocial story cards for managed content. */
.st-social-content-card {
  display: grid;
  grid-template-columns: minmax(96px, 168px) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
  margin: .75rem 0;
  border: 1px solid rgba(9, 74, 84, .16);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(8, 48, 59, .08);
  color: #0b3440;
}

.st-social-content-card__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  background: #0c4652;
}

.st-social-content-card__body {
  align-self: center;
  padding: 1.25rem 1.25rem 1.25rem 0;
}

[dir="rtl"] .st-social-content-card__body {
  padding: 1.25rem 0 1.25rem 1.25rem;
}

.st-social-content-card__eyebrow {
  display: block;
  margin-bottom: .45rem;
  color: #078c91;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.st-social-content-card h3 {
  margin: 0 0 .55rem;
  color: #082f3c;
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  line-height: 1.2;
}

.st-social-content-card p {
  margin: 0 0 .9rem;
  color: #516d75;
  line-height: 1.6;
}

.st-social-content-card__cta {
  color: #b94e25;
  font-weight: 800;
  text-decoration: none;
}

.st-social-content-card__cta:hover,
.st-social-content-card__cta:focus-visible {
  color: #8d3518;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .st-social-content-card {
    grid-template-columns: 1fr;
  }

  .st-social-content-card__image {
    max-height: 220px;
  }

  .st-social-content-card__body,
  [dir="rtl"] .st-social-content-card__body {
    padding: 0 1rem 1.15rem;
  }
}
