.single-trainer {
    width: 100%;
    background: #f5f5f5;
}

.single-trainer-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 5rem 2rem;
}
.trainer-cover{
    grid-column: span 8 / span 8;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}
.trainer-cover:hover img{
    transform: scale(1.05);
}
.trainer-cover .description{
    padding: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background-image: linear-gradient(to top, rgb(0 0 0 / 0.8) , transparent);
}
.trainer-cover .description h1{
    color: white;
}
.single-trainer-content .top-container{
    margin-bottom: 5rem;
}
.single-trainer-content .top-container > div:nth-child(1){
    width: 60%;
}
.single-trainer-content .top-container > div:nth-child(2){
    width: 40%;
}
.single-trainer-content .top-container > div:nth-child(1) img{
    width: 100%;
    height: 100%;
    max-height: 40rem;
    object-fit: cover;
    transition: 700ms;
}
.single-trainer-content .top-container .trainer-info{
    background: white;
    padding: 2rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    border: 1px solid #eaeaea;
    border-radius: 1.5rem;
    position: sticky;
    top: 10rem;
}
.trainer-info .btn-action{
    box-shadow: 0 10px 15px -3px #74572333, 0 4px 6px -4px #74572333;
    color: white;
    font-size: 1.25rem;
    background: #745723;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    font-family: Manrope, sans-serif;
    display: block;
    text-align: center;
    padding: .5rem 1rem;
}
.trainer-info .trainer-header{
    margin-bottom: 1.5rem;
}
.trainer-info .trainer-header p{
    color: #4e463a;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1rem;
    font-family: Be Vietnam Pro;
    margin-bottom: 0;
}
.trainer-info .trainer-header h2{
    font-family: Manrope, sans-serif;
    color: #1b1c1c;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 2rem;
}
.trainer-info .trainer-header h2 span{
    color: #4e463a;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}
.trainer-info .trainer-header .pill{
    background: #2d5a271a;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: Be Vietnam Pro;
    color: #2d5a27;
    border-radius: 9999px;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
}
.trainer-info .trainer-header .pill .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2d5a27;
    box-shadow: 0 0 0 3px #2d5a2715;
}
.trainer-bio h3{
    color: #1b1c1c;
    font-size: 2rem;
    line-height: 2.5rem;
    letter-spacing: -0.01em;
    font-weight: 600;
    font-family: Manrope, sans-serif;
    margin-bottom: 1.5rem;
}
.trainer-bio p{
    color: #4e463a;
    font-family: Be Vietnam Pro;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625;
}
.language-container{
    padding: 1rem;
    background-color: #fbf9f6;
    border-radius: .5rem;
    display: flex;
    align-items: center;
}
.language-container .dashicons{
    color: #745723;
}
.language-container .description h3{
    color: #1b1c1c;
    font-size: .875rem;
    line-height: 1.125rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.language-container .description span{
    font-size: .825rem;
    color: #4e463a;
}
.trainer-cover .description .pill{
    background-color: #74572333;
    border: 1px solid #7457234d;
    border-radius: 9999px;
    font-family: Be Vietnam Pro;
    font-size: .875rem;
    line-height: 1rem;
    font-weight: 500;
    color: #ffdeaa;
    padding: .25rem 1rem;
    backdrop-filter: blur(12px);
    display: inline-flex;
}
.expertise-container{
    background-color: white;
    border: 1px solid #eaeaea;
    border-radius: 999px;
    padding: .75rem 1.125rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    margin-top: 1rem;
}
.expertise-container .dashicons{
    color: #745723;
}
.expertise-container p{
    font-family: Be Vietnam Pro;
    font-size: .875rem;
    line-height: 1.125rem;
    letter-spacing: .05rem;
    font-weight: 600;
    margin-bottom: 0;
}
.social-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eaeaea;
}
.social-container a{
    color: #4e463a;
    font-size: .785rem;
    font-weight: 500;
    line-height: 1rem;
    background-color: #fbf9f6;
    border: 1px solid #d1c5b533;
    border-radius: .5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: .5rem .875rem;
}
@media (max-width: 600px) {
	.single-trainer-content .top-container{
		flex-direction: column;
	}
	.single-trainer-content .top-container > div:nth-child(1),
	.single-trainer-content .top-container > div:nth-child(2){
		width: 100%;
	}
}