.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;
}

 
.vtrend-section-fluid {
    margin: 20px 0;
}

.vtrend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.vtrend-card {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.vtrend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.vtrend-thumb {
    height: 180px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.vtrend-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vtrend-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vtrend-popularity {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #ff6b6b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
}

.vtrend-popularity i {
    color: #ff6b6b;
    font-size: 12px;
}

.vtrend-body {
    padding: 15px;
}

.vtrend-body h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vtrend-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vtrend-stats {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
}

.vtrend-like-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
}

.vtrend-like-count i {
    font-size: 16px;
}

.vtrend-view-count {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.vtrend-view-count i {
    font-size: 14px;
    color: #999;
}

.vtrend-no-experiments {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
    color: #666;
}

.vtrend-no-experiments i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

.vtrend-no-experiments p {
    font-size: 16px;
    margin: 0;
}

/* Like badge for top experiments */
.vtrend-top-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffd700;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 2;
}