/* Section Title */
.clergy-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
}

.clergy-title {
  font-size: 2.2rem;
  color: #333;
  font-weight: bold;
}

.clergy-line {
  width: 60px;
  height: 4px;
  background: #EBCB90;
  margin: 10px auto 40px;
  border-radius: 2px;
}

/* Container */
.clergy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.clergy-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.clergy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 22px rgba(0,0,0,0.15);
}

/* Image */
.clergy-img {
  width: 100%;
  height: 320px; /* Larger image size */
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.clergy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* keeps image filled */
  transition: transform 0.5s ease;
}

.clergy-card:hover .clergy-img img {
  transform: scale(1.1);
}

/* Text */
.clergy-card h3 {
  font-size: 1.3rem;
  margin: 10px 0 5px;
  color: #222;
}

.clergy-card p {
  font-size: 1rem;
  color: #666;
}
