/* ============================================================
   2026 WEALTH LAYOUT GRID (75/25 SPLIT)
   ============================================================ */
.wealth-layout-container {
    max-width: 1400px; /* Thora aur chora (wide) */
    margin: 40px auto;
    padding: 0 20px;
}

.wealth-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr); /* 75% / 25% Ratio */
    gap: 40px;
    align-items: start;
}

.wealth-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0; /* Important fix for content overflow */
}

.wealth-sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 90px; /* Header ke neechay se start ho */
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .wealth-layout-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
    }
    .wealth-sticky-wrapper {
        position: static;
    }
}
