@charset "UTF-8";
/* リンクカード用スタイル */
.link-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	margin: 10px 0;
	overflow: hidden;
	background: #fff;
	transition: all 0.3s ease;
  }
  
  .link-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	transform: translateY(-1px);
  }
  
  .link-card a {
	display: flex;
	text-decoration: none;
	color: inherit;
	padding: 12px;
  }
  
  .link-card-content {
	flex: 1;
	padding-right: 12px;
	min-height: 80px;
  }
  
  .link-card-title {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: 8px;
	color: #333;
  }
  
  .link-card-description {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 8px;
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.5;
  }
  
  .link-card-domain {
	font-size: 0.8rem;
	color: #999;
  }
  
  .link-card-image {
	width: 100px;
	min-width: 100px;
	height: 100px;
	background-color: #f5f5f5;
  }
  
  .link-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	margin: 0;
  }
  
  .link-card.loading {
	background: #f8f8f8;
	animation: loading-pulse 1.5s infinite;
  }
  
  .link-card-title {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: 8px;
	color: #333;
  }
  
  .link-card-description {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 8px;
  }
  
  .link-card-domain {
	font-size: 0.8rem;
	color: #999;
  }
  /* 画像がない場合のスタイル */
  .link-card:not(:has(.link-card-image)) .link-card-content {
	  padding-right: 0;
  }