/* ==========================================================================
   TEMAJET - 4'LÜ KATEGORİ HABER VİTRİNİ (2x2 GRID)
   ========================================================================== */

.jet-category-showcase-section {
    position: relative;
    margin: 30px 0 35px 0;
    width: 100%;
}

.jet-category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.jet-cat-block-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 22px 24px 24px 24px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.jet-cat-block-card:hover {
    box-shadow: 0 8px 25px -4px rgba(0, 0, 0, 0.08);
}

/* Kategori Başlık Çubuğu */
.jet-cat-block-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--jet-cat-accent, #dc2626);
    padding-bottom: 8px;
    margin-bottom: 18px;
    position: relative;
}

.jet-cat-block-title {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.jet-cat-block-title a {
    color: var(--jet-cat-accent, #dc2626) !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.jet-cat-block-title a:hover {
    opacity: 0.85;
}

.jet-cat-more-link {
    color: var(--jet-cat-accent, #dc2626) !important;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 0 4px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.jet-cat-more-link:hover {
    opacity: 0.75;
    transform: scale(1.1);
}

/* 2x2 Haber Izgarası */
.jet-cat-items-2x2-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 16px;
    flex: 1;
}

.jet-cat-news-item {
    display: flex;
    flex-direction: column;
}

.jet-cat-item-thumb-link {
    display: block;
    text-decoration: none !important;
}

.jet-cat-thumb-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10.5;
    border-radius: 8px;
    overflow: hidden;
    background-color: #0f172a;
}

.jet-cat-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.jet-cat-news-item:hover .jet-cat-thumb-img {
    transform: scale(1.05);
}

.jet-cat-item-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.38;
    margin: 9px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 38px;
}

.jet-cat-item-title a {
    color: #0f172a !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.jet-cat-item-title a:hover {
    color: var(--jet-cat-accent, #dc2626) !important;
}

/* Koyu Mod Uyumu (Dark Mode Support) */
body.dark-mode .jet-cat-block-card {
    background: #11141a;
    border-color: #1e2430;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.3);
}

body.dark-mode .jet-cat-item-title a {
    color: #f1f5f9 !important;
}

body.dark-mode .jet-cat-item-title a:hover {
    color: var(--jet-cat-accent, #dc2626) !important;
}

/* Mobil & Tablet Responsive */
@media screen and (max-width: 991px) {
    .jet-category-showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 540px) {
    .jet-cat-block-card {
        padding: 16px 14px 18px 14px;
        border-radius: 10px;
    }

    .jet-cat-items-2x2-grid {
        gap: 14px 12px;
    }

    .jet-cat-item-title {
        font-size: 12.5px;
        line-height: 1.32;
        margin-top: 6px;
    }
}
