/* Contextual next step shown after a completed calculation. */
.revenue-next-step {
  margin: 24px 0 8px;
  padding: 20px 0;
  border-top: 1px solid var(--border, #e0e0e0);
  border-bottom: 1px solid var(--border, #e0e0e0);
}

.revenue-next-step h2 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.5;
}

.revenue-next-step__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.revenue-next-step__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 6px;
  background: #fff;
  color: var(--primary-dark, #1557b0);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.revenue-next-step__link::after {
  content: "\2192";
  flex: 0 0 auto;
  margin-left: 8px;
  color: var(--text-muted, #5f6368);
}

.revenue-next-step__link:hover {
  border-color: var(--primary, #1a73e8);
  background: #f8fbff;
}

@media (max-width: 640px) {
  .revenue-next-step__links {
    grid-template-columns: 1fr;
  }
}
