/* ═══════════════════════════════════════════════════════
   LEADERSHIP.CSS — Management Messages Section
   ═══════════════════════════════════════════════════════ */

.leadership-section {
    padding: var(--space-3xl) 0;
}

.messages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 56px;
    margin-top: 20px;
}

/* ── Message Card ─────────────────────────────────────── */
.message-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 32px;
    align-items: start;
    padding: 36px;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

.message-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,187,111,0.3);
}

/* ── Photo ────────────────────────────────────────────── */
.leader-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.leader-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.leader-photo--placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border-radius: var(--radius-md);
}

.leader-photo-accent {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 8px;
    opacity: 0.25;
    z-index: -1;
}

/* ── Content ──────────────────────────────────────────── */
.leader-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.leader-title {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 20px;
}

.leader-message {
    margin: 0;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leader-message p {
    font-size: 13.5px;
    color: var(--charcoal);
    line-height: 1.8;
    font-style: italic;
}
