.authorDetailBanner {
    background: linear-gradient(180deg, #ebf7ff 0, #fdf5eb 100%);
    position: relative;
    padding: 150px 0 40px;
    max-width: 100%;
    margin: 0 auto;
   
}

.authorDetailWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.authorProfileCol {
    display: flex;
    gap: 26px;
    align-items: center;
}

.authorProfile img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.authorInfo .authorName {

    font-weight: 450;
    font-size: 37px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #231F20;
    display: block;
    padding-bottom: 5px;
}

.authorInfo p {
    font-weight: 450;
    font-size: 17px;
    line-height: 180%;
    letter-spacing: 0%;
    color: #676767;
}
.authBioCol{
    max-width: 550px;
    width: 100%;
}
.authBioCol p {
    border: 1px solid #E6F1FF;
    border-radius: 20px;
    padding: 18px 25px;
    background-color: #fff;
    font-weight: 450;
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.5%;
    color: #7F8B99;
    min-height: 132px;
}
.authorArticlesSec{
    padding: 65px 0;
}
.authorArticlesList{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* blog card */
.blogList{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
 
.blogCard{
    max-width: 376px;
    width: 100%;
    position: relative;
    border-radius: 25px;
    border: 1px solid #F3F7FE;
    box-shadow: 0px -2px 24.5px 0px #B7B7B740;
    overflow: hidden;
    transition: all 0.3s ease;
}
 .blogHeader .iconText {
    font-weight: 450;
    font-size: 44px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.titleBlogCard{
 
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    min-height: 64px;
}
.blogCard:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 32px 0px rgba(17, 123, 212, 0.2);
    border-color: #117BD4;
}
.blogHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    position: relative;
    padding: 34px 18px;
    background: linear-gradient(109deg, #233F8C, #1176CA, #2E5CB8, #1890E0, #233F8C);
    background-size: 400% 400%;
    animation: gradientShift 12s 
ease infinite;
    z-index: 1;
}
.blogHeader::after{
    content: '';
    background: url(../images/blogCardbg.svg);
    width: 155px;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-position: center;
    top: 0;
    right: 47px;
    z-index: -1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* Blog Card Link Wrapper */
.blogCardLink {
     display: flex;
       flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    height: 100%;
    color: inherit;
    transition: all 0.3s ease;
}

.blogCardLink:hover {
    text-decoration: none;
}

/* Blog Card Detail Info Styles */
.blogDetailinfo {
     padding: 20px 25px;
    background: #FFFFFF;
    position: relative;
}

.blogMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.blogCategory {
    background: #EEF4FA;
    border-radius: 100rem;
    padding: 8px 14px;
    font-weight: 500;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #1176CA;
}

.blogDate {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 450;
    font-size: 14px;
    line-height: 18px;
    color: #676767;
    position: relative;
}
.blogDate::before{
    content:'';
    background: url(../images/calenderIcon.svg);
    width: 17px;
    height: 17px;
    display: inline-block;
}

.blogDate svg {
    flex-shrink: 0;
}

.blogTimeBadge {
    position: absolute;
    top: 32px;
    right: 32px;
    background: #117BD4;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 450;
    font-size: 11px;
    line-height: 14px;
    color: #FFFFFF;
}

.blogExcerpt {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    color: #56606C;
 
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
 

 
 
 
 

.blogAuthor {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #676767;
}

 
/* Responsive styles for blog card detail */
@media (max-width: 768px) {
    .blogDetailinfo {
        padding: 24px;
    }

    .blogTimeBadge {
        top: 24px;
        right: 24px;
        font-size: 10px;
        padding: 5px 8px;
    }

    .blogTimeBadge svg {
        width: 12px;
        height: 12px;
    }

    .blogExcerpt {
        font-size: 14px;
        line-height: 22px;
    
    }

    .loadMoreWrapper {
        padding: 40px 0;
    }

    .loadMoreBtn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .authorProfile img{
           width: 100px;
    height: 100px;
    border-radius: 100%; 
    }
    .authorProfileCol {
    display: flex;
    gap: 20px;
    align-items: center;
}
.authorInfo .authorName{
        font-size: 27px;
    padding-bottom: 6px;

}
.authorInfo p {
  
    font-size: 15px;
    line-height: 150%;
}
.authBioCol p{
        padding: 18px 15px;
}
    .titleBlogCard {
    font-weight: 500;
    min-height: 60px;
    font-size: 19px;
  
}
    .blogDetailinfo {
        padding: 20px 20px 30px;
    }
.blogReadMore::after{
        top: -2px;
    position: relative;
}
    .blogMeta {
        margin-bottom: 18px;
    }

    .blogCategory {
        font-size: 11px;
        padding: 5px 10px;
    }
.searchBtn {
    max-width: 83px;
    width: 100%;
    height: 32px;
   
    transform: translateY(-50%);
    right: 10px;
    font-weight: 450;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: all 0.3s 
ease;
}
    .blogDate {
        font-size: 13px;
    }

    .blogDate svg {
        width: 16px;
        height: 16px;
    }

    .blogTimeBadge {
        top: 20px;
        right: 20px;
        font-size: 9px;
        padding: 4px 7px;
    }

    .blogTimeBadge svg {
        width: 10px;
        height: 10px;
    }

    .blogExcerpt {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .blogReadMore {
        font-size: 14px;
    }

    .blogReadMore svg {
        width: 14px;
        height: 10px;
    }

    .blogAuthor {
        font-size: 13px;
    }

    .loadMoreWrapper {
        padding: 30px 0;
    }

    .loadMoreBtn {
        padding: 10px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .loadMoreBtn svg {
        width: 14px;
        height: 14px;
    }
}