/* ==========================================================
   تیدا گۆڕانکاری بۆ کارتێن سەرەکی و وردەکاریی بابەتان
   ========================================================== */

/* 9. شێوازی کارتێن شاهانە (Custom Cards Styling) */
.custom-card {
    background: linear-gradient(145deg, #162032, #101726) !important;
    border: 1px solid rgba(184, 135, 34, 0.3) !important;
    border-radius: 24px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    min-height: 340px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4) !important;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #b88722, #f59e0b, #b88722);
    opacity: 0.95;
}

.custom-card:hover {
    transform: translateY(-6px);
    border-color: #f59e0b !important;
    box-shadow: 0 20px 40px rgba(184, 135, 34, 0.2) !important;
}

/* 10. سەری کارت و ئایکۆنی دایری */
.card-icon-header {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(184,135,34,0.12) 0%, rgba(15,23,42,0) 70%);
    position: relative;
}

.icon-badge {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0b1f3a, #1e293b);
    border: 2px solid #b88722 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #f59e0b !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* 11. ناونیشان و ڕیزێن زانیاریان */
.single-line-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f8fafc !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    letter-spacing: -0.3px;
}

.card-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    background: rgba(11, 31, 58, 0.75) !important;
    padding: 8px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
}

/* 12. کارتێن وردەکاریی بابەت (Article Card) */
.article-card {
    background: #131c38 !important;
    border-radius: 24px !important;
    border: 1px solid rgba(184, 135, 34, 0.3) !important;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    color: #f8fafc !important;
}