/* Parent Scoped Root Container */
.pro-formulas-grid-component {
  width: 100%;
}

/* Card Outer Style */
.pro-formulas-grid-component .formula-card {
  background-color: #ffdcb8;
  border: 1.5px solid #f2ab7c;
  border-radius: 16px;
  padding: 18px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Header Flex */
.pro-formulas-grid-component .card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pro-formulas-grid-component .title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pro-formulas-grid-component .formula-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pro-formulas-grid-component .formula-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 2px 0;
}

/* Badges */
.pro-formulas-grid-component .formula-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 10px;
  display: inline-block;
}

.pro-formulas-grid-component .badge-blue {
  background-color: #e0f2fe;
  color: #0369a1;
}

.pro-formulas-grid-component .badge-purple {
  background-color: #f3e8ff;
  color: #6b21a8;
}

.pro-formulas-grid-component .badge-orange {
  background-color: #ffedd5;
  color: #c2410c;
}

/* Description Text */
.pro-formulas-grid-component .formula-desc {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 14px;
}

/* Inner Yellow Details Box */
.pro-formulas-grid-component .inner-example-box {
  background-color: #fff0d1;
  border: 1.5px solid #f7c873;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: #374151;
  margin-top: auto;
}

.pro-formulas-grid-component .highlight-green {
  color: #15803d;
}

.pro-formulas-grid-component .text-muted-custom {
  color: #374151;
}

/* Bottom Winning Strategy Banner */
.pro-formulas-grid-component .strategy-banner-card {
  background-color: #ffdcb8;
  border: 1.5px solid #f2ab7c;
  border-radius: 16px;
  padding: 20px 24px;
}

.pro-formulas-grid-component .banner-title {
  color: #f43f5e;
  font-size: 18px;
  font-weight: 800;
}

.pro-formulas-grid-component .banner-desc,
.pro-formulas-grid-component .banner-point {
  font-size: 13.5px;
  color: #374151;
  line-height: 1.6;
}