.opportunity-summary {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid #d8c9a8;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 235, 0.98), rgba(248, 243, 232, 0.96)),
    #fffaf0;
  box-shadow: 0 14px 34px rgba(16, 31, 51, 0.055);
}

.opportunity-summary-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.opportunity-summary-kicker {
  color: #936816;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.opportunity-summary h2 {
  margin-top: 4px;
  color: #0b2341;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.35;
}

.opportunity-summary-period {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid #dbcda9;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #756445;
  font-size: 11px;
  font-weight: 900;
}

.opportunity-summary-message {
  margin-top: 8px;
  color: #58636f;
  font-size: 14px;
  line-height: 1.75;
}

.opportunity-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.opportunity-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(201, 139, 29, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.opportunity-card-label {
  color: #6c6049;
  font-size: 11px;
  font-weight: 900;
}

.opportunity-card-value {
  margin-top: 5px;
  color: #0b2341;
  font-size: clamp(25px, 2.8vw, 36px);
  font-weight: 900;
  line-height: 1.15;
}

.opportunity-card-sub {
  margin-top: 6px;
  color: #707780;
  font-size: 11px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .opportunity-summary {
    padding: 18px;
  }

  .opportunity-summary-head {
    flex-direction: column;
  }

  .opportunity-summary-grid {
    grid-template-columns: 1fr;
  }
}
