
/* Insights Section Styles */

.insight_item_content hr {
  margin: 24px 0;
  transition: border-color 0.3s ease;
}

.insight_item {
  overflow: hidden;
  transition: transform 0.25s ease;
}

.insight_item:hover {
  transform: translateY(-10px);
}

.insight_item_img img {
  transition: transform 0.35s ease;
}

.insight_item:hover .insight_item_img img {
  transform: scale(1.06);
}

.insight_item:hover hr {
  border-color: var(--blue);
}

.insight_item:hover .title_24 {
  color: var(--blue);
}

.blog_det_consu {
  /* display: flex; */
  padding: 60px 30px;
  /* flex-direction: column; */
  /* align-items: flex-start; */
  /* gap: 10px; */
  /* align-self: stretch; */
  background: radial-gradient(
    561.33% 75.38% at 56.26% 52.09%,
    #1f3566 0%,
    #243f7a 50%,
    #1c2f5a 100%
  );
  position: relative;
}

.blog_det_consu::before {
  content: "";
  background: url(../images/blogs-details-fabe.png);
  height: 300px;
  width: 300px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
mix-blend-mode: luminosity;
}

.blog_det_consu p,
.blog_det_consu .title_80 {
  color: var(--white);
}

.blog_det_consu .title_80 {
  mix-blend-mode: normal;
    font-size: 64px;
    font-weight: 800;
  
}

.blog_det_consu p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 0px;
}

.blog_det_consu .com_btn {
  margin-top: 30px;
}

.blogs_detials h4
{
color: #111;
font-size: 24px;
font-weight: 500;


}

.blogs_detials h2
{
color: #111;
font-size: 34px;
font-weight: 500;
margin-top: 40px;

}


/* ---- Blog Detail Layout (Sidebar + Content) ---- */

.blog-guide-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.blog-sidebar {
    display: flex;
    width: 340px;
    height: 70vh;
    padding: 24px;
    padding-top: 0;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    background: #eef2f8;
    position: sticky;
    top: 120px;
    overflow-y: scroll;
    scrollbar-width: thin;
    border-radius: 8px;
}

.blog-sidebar p {
    padding: 20px 0;
    width: 100%;
    position: sticky;
    top: 0px;
    left: 0px;
    background: #eef2f8;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
    font-size: 14px;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.blog-sidebar ul li {
    margin-bottom: 5px;
}

.blog-sidebar ul li a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    color: #666666;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
}

.blog-sidebar ul li .heading-wrapper {
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    padding-right: 12px;
}

.blog-sidebar ul li .heading-wrapper a {
    flex: 1;
    padding: 10px 16px;
}

.blog-sidebar ul li a:hover,
.blog-sidebar ul li .heading-wrapper:hover {
    color: var(--blue);
    background-color: rgba(16, 82, 147, 0.06);
}

.blog-sidebar ul li .heading-wrapper:hover a {
    background-color: transparent;
}

.blog-sidebar ul li a.active {
    background-color: #dde8f5;
    color: var(--blue);
    font-weight: 700;
    box-shadow: inset 4px 0 0 var(--blue);
}

.blog-sidebar ul li .heading-wrapper:has(> a.active) {
    background-color: #dde8f5;
    box-shadow: inset 4px 0 0 var(--blue);
}

.blog-sidebar ul li .heading-wrapper:has(> a.active) a.active {
    background-color: transparent;
    box-shadow: none;
}

/* Blog Main Content */
.blog-content {
    flex: 1;
}

.blog-content-section {
    margin-bottom: 40px;
    scroll-margin-top: 120px;
}

.blog-content h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--blue);
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
}

.blog-content h3 {
    color: var(--black-111);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
}

.blog-content strong {
    color: var(--black-111);
}

.blog-content ul li {
    margin-bottom: 5px;
}

/* Author Box */
.author-box {
    gap: 24px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(16, 82, 147, 0.07);
    border: 1px solid #dddddd;
    /* background-color: #fff; */
    /* margin-top: 20px; */
}

.author-avatar-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--black-111);
}

.author-social-link {
    color: var(--blue);
    transition: opacity 0.3s ease;
}

.author-social-link:hover {
    opacity: 0.7;
}

.author-bio {
    font-size: 15px;
    color: #666666;
    line-height: 1.7;
}
