/* ライトモードの本文色を濃くする */
:root {
    --content: #222 !important;
}

/* ダークモードの本文色を少し明るくする（読みやすく） */
:root.dark {
    --content: #ddd !important;
}

.webcard {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, box-shadow 0.2s;
}

.webcard:hover {
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.webcard-thumb img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
}

.webcard-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100px;
}

.webcard-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
}

.webcard-link {
    font-size: 13px;
    color: #555;
    word-break: break-all;
}
