/* کانتينر گريد */
.klt-grid {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

/* موبايل – پيش فرض */
.klt-grid.klt-cols-mobile-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.klt-grid.klt-cols-mobile-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.klt-grid.klt-cols-mobile-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.klt-grid.klt-cols-mobile-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* تبلت */
@media (min-width: 768px) {
    .klt-grid.klt-cols-tablet-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .klt-grid.klt-cols-tablet-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .klt-grid.klt-cols-tablet-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .klt-grid.klt-cols-tablet-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* دسکتاپ */
@media (min-width: 1024px) {
    .klt-grid.klt-cols-desktop-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .klt-grid.klt-cols-desktop-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .klt-grid.klt-cols-desktop-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .klt-grid.klt-cols-desktop-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .klt-grid.klt-cols-desktop-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .klt-grid.klt-cols-desktop-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* کارت متريال */
.klt-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.klt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* تصوير کارت */
.klt-card-image img {
    /*width: 100%;*/
    /*height: 180px;*/
    /*object-fit: cover;*/
    /*display: block;*/
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* بدنه کارت */
.klt-card-body {
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    direction: rtl;
}

/* رديف متن فارسي و انگليسي روبروي هم */
.klt-text-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

/* متن فارسي – راست */
.klt-text-fa {
    margin: 0;
    font-size: 0.95rem;
    direction: rtl;
    text-align: right;
    color: #555;
    flex: 1;
}

/* متن انگليسي – چپ */
.klt-text-en {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    direction: ltr;
    color: #1e88e5;
    flex: 1;
}

/* وقتي فقط يک زبان هست */
.klt-text-single {
    width: 100%;
}

/* پلير صوت */
.klt-audio-wrap {
    margin-top: 0.5rem;
}

.klt-audio-wrap audio {
    width: 100%;
    outline: none;
}

/* متن بدون کارت */
.klt-no-items {
    margin: 1rem 0;
    direction: rtl;
}

/* سنترينل انتهاي ليست براي اينفينيت اسکرول */
.klt-infinite-sentinel {
    width: 100%;
    height: 1px;
}

/* سازگاري با موبايل هاي ريزتر */
@media (max-width: 480px) {
    .klt-card-image img {
        /*height: 160px;*/
        width: 100%;
    aspect-ratio: 1 / 1; /* مربع */
    overflow: hidden;
    }

    .klt-card-body {
        padding: 0.8rem 0.9rem;
    }
}
