/* =========================================================
   PADRE - PÁGINA INDIVIDUAL
========================================================= */

.priest-detail-header{

    padding:25px 0 10px;

    background:#fff;
}

.back-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#b45f7e;

    text-decoration:none;

    font-weight:600;
}

.back-link:hover{

    color:#8f4964;
}


.priest-detail-page{

    padding:20px 0 70px;
}


.priest-detail-card{

    background:#fff;

    border:1px solid #efdee5;

    border-radius:22px;

    padding:32px;

    box-shadow:0 10px 30px rgba(88,67,77,.08);
}


.priest-detail-photo{

    overflow:hidden;

    border-radius:18px;

    background:#fff0f5;
}


.priest-detail-photo img{

    width:100%;

    display:block;

    object-fit:cover;

    object-position:center top;
}


.priest-photo-empty{

    display:flex;

    align-items:center;

    justify-content:center;

    aspect-ratio:4/5;

    font-size:4rem;

    color:#c56f8f;
}


.priest-detail-card .section-eyebrow{

    display:inline-block;

    margin-bottom:10px;

    color:#c56f8f;

    text-transform:uppercase;

    font-size:.8rem;

    font-weight:700;

    letter-spacing:.12em;
}


.priest-detail-card h1{

    color:#58434d;

    font-size:clamp(2rem,4vw,2.8rem);

    margin-bottom:18px;
}


.priest-period{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-bottom:28px;

    padding:8px 14px;

    border-radius:22px;

    background:#fff0f5;

    color:#a15572;

    font-weight:700;
}


/* =========================================================
   BIOGRAFIA
========================================================= */

.priest-biography{

    color:#65545d;

    line-height:1.9;

    font-size:1rem;
}


.priest-biography p{

    margin-bottom:18px;
}


.priest-biography h2,
.priest-biography h3{

    margin:32px 0 14px;

    color:#58434d;
}


.priest-biography img{

    max-width:100%;

    border-radius:12px;

    margin:20px 0;
}


.priest-biography ul,
.priest-biography ol{

    padding-left:22px;

    margin-bottom:20px;
}


.priest-biography blockquote{

    margin:24px 0;

    padding:18px 22px;

    border-left:4px solid #e5b3c5;

    background:#fff8fa;

    border-radius:10px;
}


/* =========================================================
   NAVEGAÇÃO
========================================================= */

.priest-navigation{

    display:flex;

    justify-content:space-between;

    gap:20px;

    margin-top:32px;
}


.nav-card{

    flex:1;

    padding:18px;

    background:#fff;

    border:1px solid #efdee5;

    border-radius:16px;

    text-decoration:none;

    transition:.2s;
}


.nav-card:hover{

    background:#fff8fa;

    border-color:#e5b3c5;
}


.nav-card small{

    display:block;

    color:#b45f7e;

    margin-bottom:6px;
}


.nav-card strong{

    color:#58434d;

    line-height:1.4;
}


.nav-next{

    text-align:right;
}


/* =========================================================
   RESPONSIVO
========================================================= */

@media(max-width:768px){

.priest-detail-card{

padding:22px;

}

.priest-navigation{

flex-direction:column;

}

.nav-next{

text-align:left;

}

}