
/*بخش مقالات */

.jk-articles {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    /* بک‌گراند یکنواخت و عمیق */
    background-color: var(--jk-bg-main);
    color: #fff;
}

/* هاله‌های نوری اتمسفریک - یکنواخت و نرم */
.jk-articles__glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px); /* محوی بیشتر برای یکنواختی */
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

.jk-articles__glow--gold {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
}

.jk-articles__glow--red {
    background: radial-gradient(circle, rgba(176, 0, 38, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.jk-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

/* بازطراحی نرم کارت‌ها */
.jk-article-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px; /* ردیوس نرم مطابق بقیه بخش‌ها */
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.jk-article-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(25, 25, 25, 0.6);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.jk-article-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.jk-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.jk-article-card:hover .jk-article-card__image img {
    transform: scale(1.03);
}


.jk-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.jk-article-card:hover img {
    transform: scale(1.08);
}

.jk-article-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent 60%);
}

.jk-article-card__category {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    border-radius: 100px;
    background: #D4AF37;
    color: #000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    z-index: 5;
}

.jk-article-card__body {
    padding: 32px;
}

.jk-article-card__meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 700;
}

.jk-article-card h3 {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 16px;
    transition: 0.3s;
    color: #fff;
}

.jk-article-card:hover h3 {
    color: #D4AF37;
}

.jk-article-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 25px;
}

.jk-article-card__read {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    color: #D4AF37;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.jk-article-card__read:hover {
    gap: 18px;
    filter: brightness(1.2);
}

/* دکمه مشاهده همه - هماهنگ با استایل لوکس */
.jk-articles__more {
    text-align: center;
    margin-top: 80px;
}

.jk-articles__more a {
    display: inline-flex;
    padding: 18px 45px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-weight: 900;
    font-size: 15px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.jk-articles__more a:hover {
    background: #D4AF37;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

@media (max-width: 1024px) {
    .jk-articles__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .jk-articles__grid { grid-template-columns: 1fr; }
    .jk-article-card { border-radius: 24px; }
}

