/* WRAPPER */
.qtech-insights-wrapper {
    width: 100%;
}

/* الصف الأول – العنوان */
.qtech-insights-header {
    margin-bottom: 24px;
}

.qtech-insights-title {
    margin: 0;
}

/* الصف الثاني – عامودين */
.qtech-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* عامود واحد */
.qtech-insights-column {
    display: flex;
    flex-direction: column;
}

/* عنوان كل عامود */
.qtech-insights-column-title {
    margin: 0 0 16px;
    text-transform: none;
}

/* كاروسل */
.qtech-insights-carousel-wrapper {
    position: relative;
}

.qtech-insights-swiper .swiper-wrapper {
    /* ما بدنا فراغات غريبة */
}

/* الكارد */
.qtech-insights-card-link {
    text-decoration: none;
    display: block;
}

.qtech-insights-card {
    position: relative;
    width: 100%;
    height: 260px; /* بيتعدل من الإلمنتور */
    overflow: hidden;
    border-radius: 14px;
    display: block;
    cursor: pointer;
}

/* خلفية الصورة */
.qtech-insights-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* الطبقة السوداء الشفافة فوق الصورة */
.qtech-insights-card-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.45);
    transition: background-color 0.4s ease;
}

/* عنوان المقال – أسفل اليمين افتراضياً */
.qtech-insights-title-wrapper {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: auto;
    top: auto;
    transform: translate(0,0);
    transition:
        top 0.4s ease,
        left 0.4s ease,
        right 0.4s ease,
        bottom 0.4s ease,
        transform 0.4s ease;
    max-width: 80%;
}

.qtech-insights-post-title {
    margin: 0;
    color: #ffffff;
}

/* HOVER EFFECT:
 * - الصورة توضح أكثر (scale بسيط)
 * - العنوان ينتقل لمنتصف الكارد أفقي + عامودي */
.qtech-insights-card:hover .qtech-insights-card-bg {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.qtech-insights-card:hover .qtech-insights-title-wrapper {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* NAVIGATION ARROWS */
.qtech-insights-nav {
    position: absolute;
    inset-inline-end: 12px;
    inset-block-end: 12px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.qtech-insights-prev,
.qtech-insights-next {
    border-radius: 999px;
    border: 1px solid #ff0000;
    background: rgba(0,0,0,0.7);
    color: #ffffff;
    padding: 4px 10px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
}

/* Ensure Swiper behaves normally */
.qtech-insights-swiper {
    width: 100%;
    overflow: hidden;
}

.qtech-insights-swiper .swiper-wrapper {
    display: flex;
}

.qtech-insights-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}


/* موبايل – الأعمدة تحت بعض */
@media (max-width: 767px) {
    .qtech-insights-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .qtech-insights-card {
        height: 220px;
    }
}
