.vtrend-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 16px;
}
 
.vtrend-header {
    margin-bottom: 40px;
    text-align: left;
}
 
.vtrend-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    font-family: 'Space Grotesk', sans-serif;
}
 
.vtrend-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
 
/* ================= GRID ================= */
.vtrend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
 
.vtrend-card {
    background: #ffffff;
    border: 1px solid #DEE6ED;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
    min-height: 318px;
    transition: transform .25s ease, box-shadow .25s ease;
    text-decoration: none !important;
    color: inherit;
}
.vtrend-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
 
/* ================= THUMBNAIL ================= */
.vtrend-thumb {
    height: 191px;
    width: 100%;
    position: relative;
    background: #eff7ff;
    overflow: hidden;
}
 
/* FIXED SIZE FOR IMAGE CONTAINER */
.vtrend-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Yeh property image ko perfect fit karegi */
    display: block;
}
 
/* ================= BADGE ================= */
.vtrend-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    position: absolute;
    top: 10px;
    left: 10px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
}
 
/* ================= POPULARITY BADGE ================= */
.vtrend-popularity {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}
 
.vtrend-popularity i {
    font-size: 10px;
}
 
/* ================= CARD BODY ================= */
.vtrend-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
 
.vtrend-body h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    text-decoration: none !important;
}
 
.vtrend-excerpt {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #525F7A;
    margin-bottom: 16px;
}
 
/* ================= STATS ================= */
.vtrend-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #475569;
    margin-top: auto;
}
    
/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .vtrend-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
   
    .vtrend-header h2 {
        font-size: 28px;
    }
   
    .vtrend-header p {
        font-size: 16px;
    }
}
 
@media (max-width: 640px) {
    .vtrend-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }
   
    .vtrend-thumb {
        height: 170px;
    }
   
    .vtrend-body h3 {
        font-size: 15px;
    }
   
    .vtrend-header h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
   
    .vtrend-header p {
        font-size: 15px;
    }
}
 
@media (max-width: 768px) {
    .vtrend-grid {
        grid-template-columns: 1fr;
    }
}
 
/* ================= NO TRENDING MESSAGE ================= */
.vtrend-no-experiments {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-size: 16px;
}
 
.vtrend-no-experiments i {
    font-size: 48px;
    margin-bottom: 16px;
    color: #d1d5db;
}
 
/* ================= REMOVE TEXT DECORATION ================= */
.vtrend-card,
.vtrend-card * {
    text-decoration: none !important;
}

 
