.experts-wrapper{
    padding-top:100px;
    padding-bottom: 100px;
    position: relative;
}
.experts-tabs{
    padding-bottom:12px;
}
.experts-tabs-cont{
	display: flex;
    border-bottom: 1px solid rgba(153, 153, 153, 1);
}
.experts-tab{
    padding-top:18px;
    padding-bottom: 24px;
    padding-left:60px;
    padding-right:60px;
    font-family: Sora;
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    transition:0.5s;
    border-bottom: 3px solid transparent;
    color:rgba(113, 113, 113, 1);
    cursor: pointer;
}
.experts-tab.active{
    border-bottom: 3px solid rgba(198, 48, 49, 1);
    color: rgba(46, 46, 46, 1);
}
.experts-tab:hover{
    color:rgba(198, 48, 49, 1);
}
.experts-tabs {
    position: relative;
    z-index: 30;
    background: white;
}

.experts-tabs.sticky {
    position: fixed;
    top: 93px;
    left: 0;
    transform: translateX(-50%);
    left: 50%;
}

/* Если у вас есть контейнер с ограниченной шириной */
.experts-tabs.sticky {
    width: 100%; /* или ваша ширина контейнера */
}
.experts-items{
    padding-top:60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    /* transition:0.5s; */
}
.experts-item{
    border: 1px solid rgba(153, 153, 153, 1);
    padding:40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.5s;
}
.experts-item:hover{
	border: 1px solid var(--New-design-card-hover-dark, rgba(37, 39, 42, 1))
}
.experts-item-meet{
    background-image: url(/wp-content/uploads/2026/04/CTA.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    border:0;
}
.experts-item-meet:hover{
    border:0;
}
.experts-item-meet-title{
    font-family: Sora;
    font-weight: 400;
    font-size: 24px;
    line-height: 135%;
    color:rgba(46, 46, 46, 1);
}
.experts-item-meet-button{
    font-family: Karla;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color:white;
    padding:14px 28px;
    background:rgba(198, 48, 49, 1);
    transition: 0.5s;
}
.experts-item-meet-button:hover{
    background: #D13B3B;
    color:white;
}
.experts-item-head{
    display: flex;
    align-items: center;
    gap:20px;
    margin-bottom: 20px;
}
.experts-item-img{
    width: 110px !important;;
    height: 110px !important;;
    display: block;
}
.experts-item-head-cont{
    
}
.experts-item-head-name{
    color: rgba(46, 46, 46, 1);
    font-family: Sora;
    font-weight: 600;
    font-size: 24px;
    line-height: 135%;
    margin-bottom: 8px;
}
.experts-item-head-post{
    color: rgba(46, 46, 46, 1);
    font-family: Karla;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
}
.experts-item-text{
	font-family: Karla;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color:rgba(46, 46, 46, 1);
    margin-bottom: 20px;
}
.experts-item-button{
	font-family: Karla;
    display: flex;
    align-items: center;
    gap:9px;
    color:rgba(198, 48, 49, 1);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.experts-item-button svg{
	position:relative;
    left:0;
    transition:0.5s;
}
.experts-item-button:hover svg{
	left:6px;
}
.experts-item:hover .experts-item-head-name{
    color:rgba(198, 48, 49, 1);
    text-decoration: underline;
}


@media(max-width:1280px){
    .experts-wrapper{
        padding-top: 100px;
        padding-bottom: 100px;
    }
}
@media(max-width:1024px){
    .experts-wrapper{
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .experts-items{
        padding-top: 40px;
    }
}
@media(max-width:780px){
    .experts-items{
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
}
@media(max-width:767px){
    .experts-wrapper{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .experts-tabs{
    	padding-bottom:8px;
    }
    .experts-tabs.sticky{
    	top: 72px;
    }
    .experts-tab{
        padding:12px;
        padding-bottom:16px;
        font-size: 14px;
    }
    .experts-tab:hover{
        color:black;
    }
    .experts-items{
        padding-top:20px;
        gap:10px;
    }
    .experts-item{
        padding:20px;
    }
    .experts-item-head{
        gap:16px;
        margin-bottom: 16px;
    }
    .experts-item-img{
        width: 80px !important;
        height:80px !important;
        min-width: 80px;
    }
    .experts-item-head-name{
        font-size: 18px;
        margin-bottom: 6px;
    }
    .experts-item-head-post{
        font-size: 14px;
    }
    .experts-item-text{
        margin-bottom: 16px;
        font-size: 12px;
    }
    .experts-item-button{
        font-size: 14px;
        gap:8px;
        
    }
}