﻿/* 連結預覽卡片樣式 */
.link-card {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #333 !important; /* 強制覆蓋連結顏色 */
    margin: 20px 0;
    background: #fff;
    transition: box-shadow 0.2s;
    max-width: 100%;
}

    .link-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        color: #000 !important;
    }

.link-card-img {
    width: 120px;
    height: 120px; /* 固定高度 */
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.link-card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0; /* 防止文字溢出 */
}

.link-card-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}

.link-card-desc {
    font-size: 0.9em;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制兩行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    line-height: 1.4;
}

.link-card-host {
    font-size: 0.8em;
    color: #999;
    text-transform: uppercase;
}

/* 手機版調整 */
@media (max-width: 576px) {
    .link-card-img {
        width: 100px;
        height: auto;
        min-height: 100px;
    }
}
