.pc-leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.pc-leader-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1.5rem 2.25rem;
    box-shadow: 0 8px 24px rgba(27, 131, 84, 0.08);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.pc-leader-card:hover {
    box-shadow: 0 12px 32px rgba(27, 131, 84, 0.14);
    transform: translateY(-2px);
}

.pc-leader-card--governor {
    border-top: 4px solid #1b8354;
}

.pc-leader-card--deputy {
    border-top: 4px solid #54c08a;
}

.pc-leader-photo-wrap {
    width: 100%;
    max-width: 18rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f9fafb;
    aspect-ratio: 4 / 5;
}

.pc-leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.pc-leader-details {
    width: 100%;
}

.pc-leader-honorific {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1b8354;
    letter-spacing: 0.02em;
}

.pc-leader-name {
    margin: 0 0 0.75rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.65;
    color: #161616;
}

.pc-leader-role {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #384250;
}

@media (max-width: 991.98px) {
    .pc-leadership-grid {
        grid-template-columns: 1fr;
        max-width: 24rem;
    }
}

@media (max-width: 575.98px) {
    .pc-leader-card {
        padding: 1.5rem 1rem 1.75rem;
    }
}
