/* Time-sensitive market guidance, shown before a match is selected and again
   beside the kickoff time in the detail hero. */
.market-timing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 780px;
  margin: -8px 0 20px;
  padding: 11px 13px;
  border: 1px solid rgba(239, 198, 108, .28);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: #d7e3da;
  background: rgba(239, 198, 108, .07);
  font-size: 13px;
  line-height: 1.6;
}

.market-timing-note strong,
.detail-timing-note strong {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 12px;
}

.detail-timing-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  max-width: 720px;
  margin: 12px 0 0;
  color: #dbe6df;
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .market-timing-note {
    margin-top: -4px;
    padding: 10px 11px;
    gap: 8px;
    font-size: 12px;
  }

  .detail-timing-note {
    font-size: 12px;
  }
}
