﻿.link-card {
    background: #0f172a;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
    max-width: 600px;
    margin: 15px auto;
    direction:rtl
}

    .link-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    }

/* آیتم‌ها */
.item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #1e293b;
}

    .item:last-child {
        border-bottom: none;
    }

/* آیکون */
.icon {
    font-size: 18px;
    width: 30px;
}

/* لیبل */
.label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 3px;
}

/* متن */
.item p {
    margin: 0;
    color: #e2e8f0;
    font-size: 14px;
    word-break: break-word;
}

/* لینک */
.item.link a {
    color: #38bdf8;
    text-decoration: none;
    transition: 0.3s;
}

    .item.link a:hover {
        color: #0ea5e9;
        text-decoration: underline;
    }


@media (max-width: 600px) {
    .link-card {
        padding: 15px;
    }

    .item {
        flex-direction: row;
    }
}