.url-preview-loading {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
    color: #888;
    font-style: italic;
    /*margin: 10px 0;*/
	margin: 10px auto;
    max-width: 500px;
}

.url-preview-card {
    display: flex;
    /*border: 1px solid #e0e0e0;*/
    border: 3px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    /*margin: 10px 0;*/
	margin: 10px auto;
    max-width: 500px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: border-color 0.2s ease-in-out;
}

.url-preview-card:hover {
    border-color: #999;
}

.preview-image-container {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 1px solid #e0e0e0;
}

.preview-content {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    flex-grow: 1;
    min-width: 0; /* Flexbox 아이템이 줄어들 수 있도록 설정 */
}

.preview-title {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    display: block;
    color: #1a0dab;
}

.preview-description {
    font-size: 14px;
    color: #545454;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 두 줄 이상일 경우 말줄임표 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.preview-url {
    font-size: 12px;
    color: #808080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}