.sns_card { display: block; text-decoration: none; color: inherit; background: #fff; border-radius: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.07); overflow: hidden; border: 1px solid #e7e7e7; }
.sns_card_header { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid #e7e7e7; }
.sns_card_icon { width: 20px; height: 20px; }
.sns_card_label { font-size: 14px; font-weight: 500; color: #333; }
.sns_card_image { width: 100%; padding-top: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; }
.sns_card_content { padding: 12px 16px; font-size: 13px; line-height: 1.6; overflow: hidden; }
.sns_card_hashtags { display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; word-break: break-all; text-overflow: ellipsis; }

@media (min-width: 1200px) {
.sns_card_hashtags { -webkit-line-clamp: 1; }
}
@media (min-width: 1600px) {
.sns_card_hashtags { -webkit-line-clamp: 2; }
}