/* ナビカード全体 */
.kimoota-nav-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

/* 各カードのスタイル */
.nav-card-item {
    display: flex;
    align-items: center;
    background: #2a2e33; /* ダークテーマの背景色 */
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    transition: background 0.2s;
    border: 1px solid #3e444b;
}

.nav-card-item:hover {
    background: #383d44;
}

/* サムネイル部分 */
.nav-card-thumb {
    flex: 0 0 100px; /* 画像の幅を固定 */
    height: 60px;
    overflow: hidden;
}

.nav-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 縦横比を維持して切り抜き */
}

/* テキスト部分 */
.nav-card-content {
    flex: 1;
    padding: 8px 12px;
}

.nav-card-title {
    font-size: 13px;
    color: #eee;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 2行で省略 */
    -webkit-box-orient: vertical;
    overflow: hidden;
}