.heading {
text-align: center;
max-width: 600px;     /* keeps block neat */
margin: 0 auto 40px;  /* centers whole block */
}
.heading-img {
width: 60px;
margin: 0 auto 15px;
display: block;       /* ensures image is centered */
}
.heading h2 {
font-size: 2rem;
font-weight: 700;
margin-top: 10px;
}
.priest-card {
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
background: #fff;
}
.priest-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}
.priest-img {
height: 300px;  /* smaller photo size */
object-fit: cover;
}
.designation {
position: relative;
display: inline-block;
margin-top: 12px;
font-size: 1rem;
font-weight: 700;
color: #8e44ad;
text-transform: uppercase;
letter-spacing: 1px;
}
.designation::before,
.designation::after {
content: "";
position: absolute;
top: 50%;
width: 40px;
height: 2px;
background: #ddd;
}
.designation::before { left: -50px; }
.designation::after { right: -50px; }