 /*==================================================
Aarohan Wealth
Home CSS
Insights Part 1
==================================================*/
/*==================================
Insights Section
==================================*/
.insights{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%
    );
    }
    /*==================================
    Background Effects
    ==================================*/
    .insights::before{
    content:"";
    position:absolute;
    top:-220px;
    right:-180px;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(18,60,115,.05),
    transparent 70%
    );
    }
    .insights::after{
    content:"";
    position:absolute;
    bottom:-200px;
    left:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:
    radial-gradient(
    circle,
    rgba(200,155,60,.08),
    transparent 70%
    );
    }
    /*==================================
    Section Heading
    ==================================*/
    .insights .section-heading{
    position:relative;
    z-index:2;
    }
    .insights .section-description{
    max-width:650px;
    }
    /*==================================
    Insight Card
    ==================================*/
    .insight-card{
    position:relative;
    height:100%;
    background:#ffffff;
    border-radius:28px;
    overflow:hidden;
    border:1px solid rgba(18,60,115,.08);
    transition:all .4s ease;
    box-shadow:
    0 20px 50px rgba(15,23,42,.05);
    }
    /*==================================
    Image Wrapper
    ==================================*/
    .insight-image{
    position:relative;
    overflow:hidden;
    aspect-ratio:16/10;
    }
    /*==================================
    Article Image
    ==================================*/
    .insight-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
    }
    /*==================================
    Top Accent
    ==================================*/
    .insight-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:var(--gradient-primary);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Insights Part 2
==================================================*/
/*==================================
Category Badge
==================================*/
.insight-category{
    position:absolute;
    left:22px;
    bottom:22px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    color:var(--primary);
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.05em;
    text-transform:uppercase;
    box-shadow:
    0 12px 30px rgba(15,23,42,.12);
    z-index:2;
    }
    .insight-category::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--secondary);
    }
    /*==================================
    Content Area
    ==================================*/
    .insight-content{
    padding:30px;
    }
    /*==================================
    Meta Information
    ==================================*/
    .insight-meta{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
    color:var(--text-light);
    font-size:.88rem;
    }
    .insight-meta span{
    display:flex;
    align-items:center;
    gap:8px;
    }
    .insight-meta i{
    color:var(--secondary);
    font-size:.9rem;
    }
    /*==================================
    Article Title
    ==================================*/
    .insight-content h4{
    margin-bottom:18px;
    font-size:1.45rem;
    font-weight:800;
    line-height:1.4;
    }
    .insight-content h4 a{
    color:var(--dark);
    text-decoration:none;
    transition:color .35s ease;
    }
    /*==================================
    Description
    ==================================*/
    .insight-content p{
    margin-bottom:28px;
    color:var(--text-light);
    line-height:1.85;
    }
    /*==================================
    Read More Link
    ==================================*/
    .read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--primary);
    font-weight:700;
    text-decoration:none;
    transition:all .35s ease;
    }
    .read-more i{
    transition:transform .35s ease;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Insights Part 3
==================================================*/
/*==================================
Layer Management
==================================*/
.insight-card,
.insight-image,
.insight-content,
.insight-category{
position:relative;
z-index:2;
}
/*==================================
Card Hover
==================================*/
.insight-card:hover{
transform:translateY(-10px);
border-color:rgba(18,60,115,.14);
box-shadow:
0 30px 70px rgba(15,23,42,.10);
}
.insight-card:hover::before{
transform:scaleX(1);
}
/*==================================
Image Animation
==================================*/
.insight-card:hover .insight-image img{
transform:scale(1.08);
}
/*==================================
Category Badge
==================================*/
.insight-category{
transition:
background .35s ease,
color .35s ease,
transform .35s ease;
}
.insight-card:hover .insight-category{
background:var(--gradient-primary);
color:#ffffff;
transform:translateY(-4px);
}
.insight-card:hover .insight-category::before{
background:#ffffff;
}
/*==================================
Article Heading
==================================*/
.insight-content h4 a{
transition:color .35s ease;
}
.insight-card:hover .insight-content h4 a{
color:var(--primary);
}
/*==================================
Read More
==================================*/
.read-more{
transition:
color .35s ease,
gap .35s ease;
}
.read-more i{
transition:transform .35s ease;
}
.insight-card:hover .read-more{
color:var(--secondary);
gap:14px;
}
.insight-card:hover .read-more i{
transform:translateX(5px);
}
/*==================================
Meta Animation
==================================*/
.insight-meta{
transition:opacity .35s ease;
}
.insight-card:hover .insight-meta{
opacity:.9;
}
/*==================================
Performance
==================================*/
.insight-card,
.insight-image img,
.insight-category{
will-change:transform;
}
/*==================================
Keyboard Accessibility
==================================*/
.insight-card:focus-within{
outline:2px solid rgba(18,60,115,.15);
outline-offset:4px;
box-shadow:
0 30px 70px rgba(15,23,42,.10);
}

/*==================================================
Aarohan Wealth
Home CSS
Insights Part 4
==================================================*/
/*==================================
Image Overlay
==================================*/
.insight-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    to top,
    rgba(15,23,42,.55) 0%,
    rgba(15,23,42,.18) 35%,
    rgba(15,23,42,0) 70%
    );
    z-index:1;
    pointer-events:none;
    }
    /*==================================
    Image Shine Effect
    ==================================*/
    .insight-image::after{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.22),
    transparent
    );
    transform:skewX(-22deg);
    transition:left .8s ease;
    pointer-events:none;
    z-index:2;
    }
    .insight-card:hover .insight-image::after{
    left:160%;
    }
    /*==================================
    Image Corner Radius
    ==================================*/
    .insight-image{
    border-bottom:1px solid rgba(18,60,115,.08);
    }
    /*==================================
    Content Layout
    ==================================*/
    .insight-content{
    display:flex;
    flex-direction:column;
    height:calc(100% - 1px);
    }
    /*==================================
    Read More Alignment
    ==================================*/
    .read-more{
    margin-top:auto;
    }
    /*==================================
    Section CTA
    ==================================*/
    .insights .theme-btn{
    min-width:220px;
    justify-content:center;
    }
    /*==================================
    Desktop Refinement
    ==================================*/
    @media (min-width:1200px){
    .insight-card{
    min-height:100%;
    }
    }
    /*==================================
    Visual Polish
    ==================================*/
    .insight-card{
    isolation:isolate;
    }
    .insight-card:hover{
    overflow:hidden;
    }

    /*==================================================
Aarohan Wealth
Home CSS
Insights Part 5
==================================================*/
/*==================================
Large Desktop
==================================*/
@media (min-width:1400px){
    .insight-content{
    padding:34px;
    }
    }
    /*==================================
    Laptop
    ==================================*/
    @media (max-width:1199.98px){
    .insight-content{
    padding:28px;
    }
    .insight-card{
    border-radius:24px;
    }
    }
    /*==================================
    Tablet
    ==================================*/
    @media (max-width:991.98px){
    .insights .section-heading{
    text-align:center;
    margin-bottom:25px;
    }
    .insights .section-description{
    margin:0 auto;
    }
    .insights .theme-btn{
    margin:0 auto;
    }
    .insight-card{
    border-radius:22px;
    }
    .insight-content h4{
    font-size:1.35rem;
    }
    }
    /*==================================
    Mobile
    ==================================*/
    @media (max-width:767.98px){
    .insights::before,
    .insights::after{
    display:none;
    }
    .insight-content{
    padding:24px;
    }
    .insight-category{
    left:16px;
    bottom:16px;
    padding:8px 14px;
    font-size:.75rem;
    }
    .insight-meta{
    gap:14px;
    font-size:.82rem;
    }
    .insight-content h4{
    font-size:1.25rem;
    line-height:1.45;
    }
    .insight-content p{
    margin-bottom:22px;
    line-height:1.75;
    }
    .insights .theme-btn{
    width:100%;
    max-width:320px;
    }
    }
    /*==================================
    Small Mobile
    ==================================*/
    @media (max-width:575.98px){
    .insight-card{
    border-radius:20px;
    }
    .insight-content{
    padding:20px;
    }
    .insight-category{
    left:14px;
    bottom:14px;
    padding:7px 12px;
    font-size:.72rem;
    letter-spacing:.04em;
    }
    .insight-category::before{
    width:6px;
    height:6px;
    }
    .insight-meta{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    }
    .insight-content h4{
    font-size:1.15rem;
    }
    .read-more{
    font-size:.95rem;
    }
    }
    /*==================================
    Reduced Motion
    ==================================*/
    @media (prefers-reduced-motion: reduce){
    .insight-card,
    .insight-card::before,
    .insight-image img,
    .insight-image::after,
    .insight-category,
    .read-more,
    .read-more i{
    animation:none !important;
    transition:none !important;
    }
    }
