/* =========================================================
   業界一覧（/industry/）
   ========================================================= */

/* ── ページタイトル ── */
.aind-page-heading {
  padding-bottom: 0;
  position: relative;
}

.aind-page-heading__en {
  display: block;
  font-size: 64px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.04);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: -22px;
}

.aind-page-heading__title {
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0;
  position: relative;
}

.aind-page-heading__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0f172a 0%, #94a3b8 100%);
  margin-top: 14px;
}

/* ── インデックス ── */
.aind-ind__index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.aind-ind__index-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  transition: all 0.15s;
  white-space: nowrap;
}

.aind-ind__index-item:hover {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
}

.aind-ind__index-count {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  transition: color 0.15s;
}

.aind-ind__index-item:hover .aind-ind__index-count {
  color: rgba(255, 255, 255, 0.6);
}

/* ── グリッド ── */
.aind-ind__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* ── セクション ── */
.aind-ind__section {
  padding: 24px 0;
  border-bottom: 1px solid #e5e7eb;
}

.aind-ind__section:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid #e5e7eb;
}

.aind-ind__section:nth-child(even) {
  padding-left: 24px;
}

/* ── セクション見出し ── */
.aind-ind__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 2px solid #0f172a;
  margin-bottom: 4px;
}

.aind-ind__section-name {
  font-size: 17px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.aind-ind__section-count {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  margin-left: 3px;
}

.aind-ind__section-more {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
}

.aind-ind__section-more:hover {
  color: #0f172a;
}

/* ── 説明文 ── */
.aind-ind__section-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
  margin: 6px 0 0;
}

/* ── 記事リスト ── */
.aind-ind__articles {
  display: flex;
  flex-direction: column;
}

.aind-ind__article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
}

.aind-ind__article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.aind-ind__article:hover .aind-ind__article-title {
  color: #1d3e91;
}

.aind-ind__article-thumb {
  width: 72px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

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

.aind-ind__article-body {
  flex: 1;
  min-width: 0;
}

.aind-ind__article-title {
  display: -webkit-box;
  font-size: 13px;
  font-weight: 600;
  color: #292929;
  line-height: 1.5;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.aind-ind__article-date {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  margin-top: 2px;
}

/* ── 記事準備中 ── */
.aind-ind__empty {
  font-size: 13px;
  color: #d1d5db;
  margin: 12px 0 0;
}

/* ── レスポンシブ ── */
@media (max-width: 640px) {
  .aind-ind__grid {
    grid-template-columns: 1fr;
  }

  .aind-ind__section:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .aind-ind__section:nth-child(even) {
    padding-left: 0;
  }
}
