.specular-team-card {
    background-color: #ffffff;
    border-radius: 10px;
    /* box-shadow: 0 4px 20px 10px rgba(0, 0, 0, 0.05); */
    /* padding: 40px 35px; */
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    font-family: 'Instrument Sans', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.specular-team-card .icon-wrapper {  
    position: relative;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.specular-team-card .icon-wrapper img {
   
    width: 100%;
}
.specular-team-card .icon-wrapper svg {
    width: 105px;
    height: 110px;
}
.specular-team-card .card-content {
    /* padding: 40px 35px; */
    width: 100%;
        display: flex;
    flex-direction: column;
    gap: 20px;
}
.specular-team-card .tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    text-transform: uppercase;
}




.specular-team-card .divider {
    width: 100%;
    height: 1px;
    background-color: #CCCCCC;
    margin: 20px auto;
    position: relative;
}
.specular-team-card .divider::before{
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #0C56F9;
    position: absolute;
    top: 0;
    left: 0;
}

.specular-team-card .card-name {
    font-size:22px;
    font-weight: 600;
    line-height: 36px;
    text-transform: capitalize;
    color: #202020;
    margin: 0;
    margin-top: 20px;
    font-family: 'Instrument Sans', sans-serif;
}
.specular-team-card .card-post {
    font-size: 16px;
    color: #515151;
    line-height: 1.5;
    margin: 0;
   
}

.specular-team-card .read-more {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #202020;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.specular-team-card .read-more svg {
    fill: #F96A2A;
    width: 20px;
    height: 20px;
}
.specular-team-card .socials{
    position: absolute;
    bottom: 40px;
    right: 120px;
    display: flex;
    gap: 10px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}
.specular-team-card:hover .socials{
    opacity: 1;
    transform: translateY(0);
}
.specular-team-card .socials a {
    color: #202020;
   width: 40px;
   height: 40px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.specular-team-card .socials a:hover{
    background-color: #0C56F9;
    color: #fff;
}

.specular-team-card .icon-wrapper::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0));
    transition: all 0.3s ease-in-out;
    z-index: 99;
}
.specular-team-card:hover .icon-wrapper::after{
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease-in-out;
}

