/* Güncellenmiş Modern Tasarım CSS */
.link-preview-card {
    display: flex;
    max-width: 650px; /* Biraz daha geniş, daha profesyonel */
    background-color: #1e1f22; /* Daha koyu, daha temiz zemin */
    border-radius: 12px; /* Daha yumuşak köşeler */
    overflow: hidden;
    margin: 15px 0;
    border: 1px solid #141517;
    font-family: 'Inter', -apple-system, sans-serif; /* Daha modern font */
    color: #f2f3f5;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Hafif gölge */
    transition: transform 0.2s ease; /* Hover efekti için */
}

.link-preview-card:hover {
    transform: translateY(-2px); /* Üzerine gelince hafif yükselme */
}

.lp-content {
    flex: 1;
    padding: 20px 25px; /* Daha geniş padding */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.lp-title {
    color: #00a8fc; /* Vurgulu mavi */
    font-weight: 700;
    font-size: 18px; /* Daha büyük başlık */
    margin-bottom: 8px;
    text-decoration: none;
    line-height: 1.3;
}

.lp-title:hover {
    text-decoration: underline;
}

.lp-desc {
    font-size: 14px;
    color: #b5bac1;
    margin-bottom: 15px;
    line-height: 1.5;
    /* Açıklama metni için yer */
}

.lp-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.lp-favicon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: #f2f3f5; /* Favicon için arka plan */
}

.lp-domain {
    font-size: 12px;
    text-transform: uppercase;
    color: #949ba4;
    letter-spacing: 0.5px;
}

.lp-image {
    width: 250px; /* Resmi çok daha büyük yaptık */
    flex-shrink: 0;
    position: relative;
}

.lp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Eğer gradient'i resmin üzerine bindirmek istersen:
    filter: sepia(20%) hue-rotate(280deg) saturate(150%);
    */
}