/* 感情の流れでつなぐ関連ツールカード */
.flow-related {
  margin-bottom: 18px;
}

.flow-related__lead {
  margin: 0 0 20px;
  font-size: var(--text-base, 1rem);
  line-height: 1.85;
  color: #5c5c5c;
}

.flow-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 520px) {
  .flow-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .flow-cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flow-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  background: #fbfffc;
  border: 1px solid #d4ead9;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.flow-card:hover {
  border-color: rgba(6, 199, 85, 0.45);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.1);
  transform: translateY(-1px);
}

.flow-card:focus-visible {
  outline: 2px solid rgba(6, 199, 85, 0.55);
  outline-offset: 2px;
}

.flow-card__situation {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b8f74;
  letter-spacing: 0.02em;
}

.flow-card__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #2c4a36;
  line-height: 1.45;
}

.flow-card__desc {
  margin: 0;
  font-size: var(--text-base, 1rem);
  line-height: 1.65;
  color: #5c5c5c;
}

.flow-card__arrow {
  margin-top: 4px;
  font-size: 0.8rem;
  color: #06c755;
  font-weight: 600;
}

.flow-related__more {
  margin: 20px 0 0;
  font-size: var(--text-fine, 0.8125rem);
  color: #888;
}

.flow-related__more a {
  color: #2d6b4a;
  font-weight: 500;
}
