/* WHY WE EXIST — agency problem cards */
/* Icons: Lucide (ISC) — https://lucide.dev */


#why .prob-cards {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

@media (min-width: 860px) {
  #why .prob-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

#why .prob-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 24px 28px;
  border-radius: 20px;
  border: 1px solid rgba(72, 118, 108, 0.55);
  background: linear-gradient(165deg, rgba(18, 22, 26, 0.98) 0%, rgba(8, 10, 12, 0.99) 100%);
  overflow: hidden;
}

#why .prob-card__badge {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(170, 220, 200, 0.95);
  background: rgba(28, 58, 48, 0.85);
  border: 1px solid rgba(72, 118, 108, 0.45);
}

#why .prob-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

#why .prob-card__title {
  flex: 1;
  min-width: 0;
  font-size: clamp(22px, 4.8vw, 28px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: #fff;
}

#why .prob-card__icon {
  flex: none;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

#why .prob-card__icon-img {
  width: 56px;
  height: 56px;
  display: block;
  object-fit: contain;
}

#why .prob-card__rule {
  height: 0;
  margin-bottom: 20px;
  border: none;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
}

#why .prob-card__desc {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
}

/* 첫 카드 하이라이트 (디자인 시안) */
#why .prob-card--spotlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(77, 141, 255, 0.75);
  border-left: 1px solid rgba(77, 141, 255, 0.75);
  border-radius: 20px 0 0 0;
  pointer-events: none;
}

#why .prob-card--spotlight::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4d8dff;
  box-shadow: 0 0 14px 5px rgba(77, 141, 255, 0.65);
  pointer-events: none;
}

@media (max-width: 859px) {
  #why .prob-card {
    padding: 22px 20px 24px;
  }

  #why .prob-card__icon {
    width: 56px;
    height: 56px;
  }

  #why .prob-card__icon-img {
    width: 48px;
    height: 48px;
  }
}
