/* =========================================================
   業界から探す — 2列カード
   ========================================================= */
.aind-sw-industry__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.aind-sw-industry__card {
  min-width: 0;
}

.aind-sw-industry__card-head {
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 2px solid #3b82f6;
}

.aind-sw-industry__card-name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.15s;
}

.aind-sw-industry__card-name:hover {
  color: #2563eb;
}

.aind-sw-industry__card-arrow {
  font-size: 11px;
  color: #94a3b8;
  transition: color 0.15s;
}

.aind-sw-industry__card-name:hover .aind-sw-industry__card-arrow {
  color: #2563eb;
}

.aind-sw-industry__card-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.aind-sw-industry__article {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.aind-sw-industry__article:hover .aind-sw-industry__article-title {
  color: #3b82f6;
}

.aind-sw-industry__article-thumb {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0f2f5;
}

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

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

.aind-sw-industry__empty {
  font-size: 11px;
  color: #ccc;
}
