/* =========================================================
   導入事例 セクション
   ========================================================= */
.aind-uc {
    margin: 40px 0 0;
    padding: 0 20px;
}

.aind-uc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d1d5db;
}

.aind-uc__heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.aind-uc__more {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    white-space: nowrap;
}

.aind-uc__more:hover {
    color: #2563eb;
}

/* グリッド: 2列 */
.aind-uc__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

/* カード: 横長 */
.aind-uc__card {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: #1a1a2e;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.15s ease;
    overflow: hidden;
}

.aind-uc__card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    color: #1a1a2e;
}

/* アイキャッチ: 左 */
.aind-uc__thumb {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    overflow: hidden;
    background: #e2e8f0;
}

.aind-uc__thumb>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 情報: 右 */
.aind-uc__info {
    flex: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

/* 業界バッジ */
.aind-uc__industry {
    font-size: 10px;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 3px;
    align-self: flex-start;
}

/* タイトル */
.aind-uc__title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.aind-uc__card:hover .aind-uc__title {
    color: #2563eb;
}

/* 概要 */
.aind-uc__excerpt {
    font-size: 11px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
