/* =========================================================
   導入事例 — 2列・横並びミニカード
   ========================================================= */
.aind-sw-usecase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.aind-sw-usecase__item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  text-decoration: none;
  padding: 8px 6px;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.15s;
}

.aind-sw-usecase__item:nth-child(odd) {
  border-right: 1px solid #e5e7eb;
}

.aind-sw-usecase__item:hover {
  background: #f8fafc;
}

.aind-sw-usecase__thumb {
  width: 36px;
  height: 36px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f2f5;
}

.aind-sw-usecase__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aind-sw-usecase__meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aind-sw-usecase__tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  color: #3b82f6;
  background: #eff6ff;
  padding: 1px 4px;
  border-radius: 2px;
  align-self: flex-start;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.aind-sw-usecase__title {
  display: -webkit-box;
  font-size: 11px;
  font-weight: 600;
  color: #333;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.aind-sw-usecase__item:hover .aind-sw-usecase__title {
  color: #2563eb;
}

.aind-sw-usecase__more {
  display: block;
  text-align: center;
  padding: 7px;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 3px;
  transition: all 0.15s;
}

.aind-sw-usecase__more:hover {
  color: #2563eb;
  border-color: #2563eb;
  background: #eff6ff;
}
