/* Simple Blog Card スタイル */

.sbc-card {
    display: flex;
    align-items: stretch;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    margin: 1.5em 0;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sbc-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.sbc-card-thumb {
    flex: 0 0 200px;
    max-width: 200px;
    overflow: hidden;
    background: #f3f3f3;
}

.sbc-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sbc-card-body {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.sbc-card-title {
    font-weight: bold;
    font-size: 1em;
    margin: 0 0 8px;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sbc-card-desc {
    font-size: 0.85em;
    color: #666;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sbc-card-domain {
    font-size: 0.78em;
    color: #999;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sbc-card-favicon {
    width: 16px;
    height: 16px;
    border-radius: 2px;
}

/* スマホ表示時は画像を上に */
@media (max-width: 480px) {
    .sbc-card {
        flex-direction: column;
    }

    .sbc-card-thumb {
        flex: none;
        max-width: 100%;
        height: 160px;
    }
}
