/* ---------- HERO ---------- */

.pls-author-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 320px;
	padding: 56px 20px;
	overflow: hidden;
	/* Replace with your static background image (or make it per-author, see notes) */
	background-image: url('/wp-content/themes/YOUR-CHILD-THEME/assets/author-hero-bg.jpg');
	background-size: cover;
	background-position: center;
}


.pls-author-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12,26,60,0.92) 0%, rgba(12,26,60,0.55) 100%);
	z-index: 1;
}

.pls-author-hero__title {
	margin: 0 0 12px;
	font-size: clamp(1.8rem, 4vw, 2.6rem);
	color: #fff;
}

 
/* ---------- PROFILE ---------- */
.pls-author-profile {
	margin-bottom: 48px;
	margin-top: 20px;
}

.pls-author-profile__avatar img{
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid #DB5461;
}

.pls-author-profile__name {
    color: #0F0F10;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-transform: capitalize;
    margin-bottom: 6px;
    margin-top: 20px;
}

.pls-author-profile__role {
	margin: 0 0 20px;
	color: #707C8A;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.pls-author-profile__bio p{
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    text-align: justify;
    font-weight: 400;
    line-height: 150%;
    
}

@media (max-width:600px){

    .pls-author-profile__avatar img {
        width: 40px;
        height: 40px;
    }
    
    .pls-author-profile-main{
        display: flex;
        gap: 8px;
    }
    
    .pls-author-profile__name{
        font-size: 14px;
        margin: 0;
    }
    .pls-author-profile__role{
        font-size: 12px;
        margin: 0;   
    }
    
    .pls-author-profile__bio p{
        font-size: 14px;
        margin-top: 12px;
    }
    .pls-author-profile{
        margin-bottom: 32px;
    }

}