/* =====================================================
   TAROT CARDS INDEX
   جدول کارت‌های هر گروه تاروت
   قابل استفاده برای:
   Major-Arcana / Cups / Wands / Swords / Pentacles
   ===================================================== */

.tarot-cards-page {
    direction: rtl;
    width: 100%;
}


/* =====================================================
   هدر گروه
   ===================================================== */

.tarot-cards-hero {
    text-align: center;
    padding: 25px 20px 28px;
    margin-bottom: 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f8f3eb, #fffdf9);
    border: 1px solid rgba(120, 90, 50, 0.12);
}

.tarot-cards-hero-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 12px;
}

.tarot-cards-hero h1 {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1.7;
    font-weight: 800;
}

.tarot-cards-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 2.15;
    color: #555;
}


/* =====================================================
   مسیر راهنما
   ===================================================== */

.tarot-cards-intro {
    margin-bottom: 25px;
    text-align: center;
}

.tarot-cards-intro h2 {
    margin: 0 0 9px;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 800;
}

.tarot-cards-intro p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 2.05;
    color: #666;
}


/* =====================================================
   گرید کارت‌ها
   ===================================================== */

.tarot-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}


/* =====================================================
   کارت هر تاروت
   ===================================================== */

.tarot-card-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(100, 80, 50, 0.13);
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.055);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.tarot-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.10);
    border-color: rgba(100, 80, 50, 0.25);
}


/* =====================================================
   تصویر کارت
   ===================================================== */

.tarot-card-image {
    display: block;
    width: 100%;
    background: #f5f1e9;
    overflow: hidden;
}

.tarot-card-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.tarot-card-item:hover .tarot-card-image img {
    transform: scale(1.025);
}


/* =====================================================
   اطلاعات کارت
   ===================================================== */

.tarot-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 14px 16px;
    text-align: center;
}


/* =====================================================
   نام فارسی
   ===================================================== */

.tarot-card-persian-name {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 800;
}


/* =====================================================
   نام انگلیسی
   ===================================================== */

.tarot-card-english-name {
    margin-top: 2px;
    direction: ltr;
    font-size: 12px;
    line-height: 1.6;
    color: #888;
    letter-spacing: 0.25px;
}


/* =====================================================
   شماره کارت
   برای آرکانای کبیر و در صورت نیاز سایر کارت‌ها
   ===================================================== */

.tarot-card-number {
    margin-bottom: 4px;
    font-size: 12px;
    color: #999;
    font-weight: 600;
}


/* =====================================================
   لینک مشاهده معنی کارت
   ===================================================== */

.tarot-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin-top: 13px;
    padding: 9px 10px;

    border-radius: 9px;

    background: #f7f3ed;
    color: #5b4935;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.tarot-card-link:hover {
    background: #eee7dc;
    color: #3f3020;
    transform: translateX(-2px);
}


/* =====================================================
   توضیح پایین صفحه
   ===================================================== */

.tarot-cards-footer-box {
    margin-top: 30px;
    padding: 22px 24px;

    border-radius: 16px;

    background: #faf8f4;
    border: 1px solid rgba(100, 80, 50, 0.10);

    text-align: center;
}

.tarot-cards-footer-box h2 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.7;
}

.tarot-cards-footer-box p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 2.05;
    color: #666;
}


/* =====================================================
   تبلت
   ===================================================== */

@media (max-width: 991px) {

    .tarot-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }

}


/* =====================================================
   موبایل
   ===================================================== */

@media (max-width: 767px) {

    .tarot-cards-hero {
        padding: 22px 16px 25px;
        border-radius: 15px;
    }

    .tarot-cards-hero h1 {
        font-size: 23px;
    }

    .tarot-cards-hero p {
        font-size: 14px;
        line-height: 2;
    }

    .tarot-cards-intro h2 {
        font-size: 20px;
    }

    .tarot-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .tarot-card-info {
        padding: 12px 10px 13px;
    }

    .tarot-card-persian-name {
        font-size: 15px;
    }

    .tarot-card-english-name {
        font-size: 11px;
    }

    .tarot-card-link {
        font-size: 12px;
        padding: 8px 7px;
    }

}


/* =====================================================
   موبایل خیلی کوچک
   ===================================================== */

@media (max-width: 400px) {

    .tarot-cards-grid {
        gap: 11px;
    }

    .tarot-card-persian-name {
        font-size: 14px;
    }

}